code
stringlengths
3
10M
language
stringclasses
31 values
#Power[MW] Current[A] Safety Ratio[] T_ref[°C] SymetryFlag 12.5 31000 0.8 20 Sym #Helices N_Elem 14 56 #N R1[m] R2[m] HalfL[m] Rho[Ohm.m] Alpha[1/K] E_Max[Pa] K[W/(m.K)] h[W/(m^2.K)] <T_W>[°C] T_Max[°C] #N T_o=20°C T_o=20°C T_o=10O°C 4 1....
D
instance Mod_7802_TPL_Templer_OM (Npc_Default) { //-------- primary data -------- name = Name_Templer; Npctype = NpcType_mt_templer; guild = GIL_out; level = 17; flags = 0; voice = 0; id = 7802; //-------- abilities -------- attribute[ATR_STRENGTH] = 130; attribute[A...
D
import entity_animal; import enums; import game; import quest; import item_seaweed; import item_seasalad; import item_sweetsalad; import item_axe; class EntityTurtle : EntityAnimal { this(int x, int y) { super("Ol' Man Bent", x, y, '@', Color.green, new Quest ( [ //...
D
/** * Top level code for the code generator. * * Copyright: Copyright (C) 1985-1998 by Symantec * Copyright (C) 2000-2023 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt...
D
/** * Defines the bulk of the classes which represent the AST at the expression level. * * Specification: ($LINK2 https://dlang.org/spec/expression.html, Expressions) * * Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walte...
D
employing variations in pitch to distinguish meanings of otherwise similar words having tonality
D
/** * Contains all implicitly declared types and variables. * * Copyright: Copyright Digital Mars 2000 - 2011. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright, Sean Kelly * * Copyright Digital Mars 2000 - 2011. * Distributed under the Boost ...
D
/** * Copyright: Enalye * License: Zlib * Authors: Enalye */ module grimoire.runtime.channel; alias GrIntChannel = GrChannel!int; alias GrFloatChannel = GrChannel!float; alias GrStringChannel = GrChannel!string; alias GrObjectChannel = GrChannel!(void*); /** A pipe that allow synchronised communication between c...
D
/Users/pramonowang/Desktop/anyhour/DerivedData/anyhour/Build/Intermediates/anyhour.build/Debug-iphoneos/anyhour.build/Objects-normal/armv7/ViewController.o : /Users/pramonowang/Desktop/anyhour/anyhour/MyAnnotation.swift /Users/pramonowang/Desktop/anyhour/ShowMapViewController.swift /Users/pramonowang/Desktop/anyhour/an...
D
// Written in the D programming language. module windows.windowsremotemanagement; public import windows.core; public import windows.automation : BSTR, IDispatch, VARIANT; public import windows.com : HRESULT, IUnknown; public import windows.systemservices : BOOL, HANDLE, PWSTR; extern(Windows) @nogc nothrow: // Enu...
D
module utils.exception; import std.conv; @safe: class NoTextNumberException:Exception{ this(int num){ string msg="Text Number "~to!string(num)~" not found."; super(msg); } } class stringToIntException:Exception{ this(string str){ string msg="\""~str~"\" cannot be converted from \...
D
/// Translated from C to D module glfw3.wl_init; extern(C): @nogc: nothrow: __gshared: private template HasVersion(string versionId) { mixin("version("~versionId~") {enum HasVersion = true;} else {enum HasVersion = false;}"); } import core.stdc.config: c_long, c_ulong; //=============================================...
D
module eventcore.internal.utils; import taggedalgebraic; void print(ARGS...)(string str, ARGS args) @trusted @nogc nothrow { import std.format : formattedWrite; StdoutRange r; scope cb = () { scope (failure) assert(false); (&r).formattedWrite(str, args); }; (cast(void delegate() @nogc @safe nothrow)cb)(); ...
D
/Users/zaidtayyab/Desktop/Template/Build/Template/Build/Intermediates/Pods.build/Debug-iphonesimulator/IQKeyboardManagerSwift.build/Objects-normal/x86_64/IQUIScrollView+Additions.o : /Users/zaidtayyab/Desktop/Template/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift ...
D
FUNC VOID GruenErzbrocken5_S1 () { var C_NPC her; her = Hlp_GetNpc(PC_Hero); if (Hlp_GetInstanceID(self)==Hlp_GetInstanceID(her)) { if (Npc_HasItems(hero, ItMw_2H_Axe_L_01) == 0) { Print ("Ohne Spitzhacke geht das nicht!"); AI_UseMob (hero, "ORE", -1); return; }; B_SetAivar(self, AIV_INVINCI...
D
instance PAL_7518_RITTER(Npc_Default) { name[0] = NAME_Ritter; guild = GIL_PAL; id = 7518; voice = 9; flags = 0; npcType = npctype_main; aivar[96] = TRUE; B_SetAttributesToChapter(self,6); fight_tactic = FAI_HUMAN_MASTER; EquipItem(self,ItMw_1H_Blessed_02); EquipItem(self,ItRw_PAL_Crossbow); CreateInvItems...
D
/* * Copyright 2002-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
D
sha1init.c /Users/user/.rvm/gems/ruby-1.9.3-p392/gems/rhodes-3.5.1.13/lib/extensions/digest/ext/digest.h /Users/user/.rvm/gems/ruby-1.9.3-p392/gems/rhodes-3.5.1.13/platform/shared/ruby/include/ruby.h /Users/user/.rvm/gems/ruby-1.9.3-p392/gems/rhodes-3.5.1.13/platform/shared/ruby/include/ruby/ruby.h /Users/user/...
D
module mysvc; import std.stdio; import core.thread; import win32.winbase; import win32.winnt; import winsvc.svcbase; class MyService : ServiceBase { private: HANDLE _stopServiceEvent = null; bool _stopping; public: this(string serviceName, string displayName, bool canStop = true, ...
D
// Copyright 2019, University of Freiburg. // Chair of Algorithms and Data Structures. // Markus Näther <naetherm@informatik.uni-freiburg.de> module devaluator.evaluator; import devaluator.alignment.alignment_linker; import devaluator.utils.language: Language; import devaluator.utils.results; import devaluator.utils....
D
/Users/mac/Desktop/诵诗/诵诗/DerivedData/诵诗/Build/Intermediates/诵诗.build/Debug-iphonesimulator/诵诗.build/Objects-normal/x86_64/GuideViewController.o : /Users/mac/Desktop/诵诗/诵诗/诵诗/explainViewController.swift /Users/mac/Desktop/诵诗/诵诗/诵诗/LevelsViewController.swift /Users/mac/Desktop/诵诗/诵诗/诵诗/singleViewController.swift /Users/m...
D
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/SQL/PostgreSQLAlterTable.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/postgresql/Sources/PostgreSQL/Message/PostgreSQLMessage+0.swift /Users/panartem/Developer/...
D
/** This is the `collectPileUps` command of DENTIST. Command_Summary: --- Build and collect pile ups of reads that are candidates for gap closing. --- Copyright: © 2018 Arne Ludwig <arne.ludwig@posteo.de> License: Subject to the terms of the MIT license, as written in the inc...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1984-1998 by Symantec * Copyright (C) 2000-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: ...
D
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/NIOHTTP1.build/Objects-normal/x86_64/HTTPDecoder.o : /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/NIOHTTP1/HTTPPipelineSetup.swift /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git-...
D
// //------------------------------------------------------------------------------ // Copyright 2007-2011 Mentor Graphics Corporation // Copyright 2007-2010 Cadence Design Systems, Inc. // Copyright 2010 Synopsys, Inc. // Copyright 2012-2015 Coverify Systems Technology // All Rights Reserved Worldwide // // ...
D
module i18n; import std.path; import std.file; import std.algorithm; import std.array; import std.experimental.logger; import std.stdio; import std.string; alias StrStr = string[string]; alias StrStrStr = string[string][string]; enum I18N_DEFAULT_LOCAL = "zh-cn"; class I18n { private{ StrStrStr _res; __gshare...
D
/* TEST_OUTPUT: --- fail_compilation/fail9414a.d(47): Error: variable fail9414a.C.foo.x cannot modify parameter `x` in contract fail_compilation/fail9414a.d(34): Error: variable fail9414a.C.foo.x cannot modify parameter `x` in contract fail_compilation/fail9414a.d(35): Error: variable fail9414a.C.foo.__require.bar.y ca...
D
/Users/kimhyewon/Documents/Server/tennis/build/tennis.build/Debug/MySQL.build/Objects-normal/x86_64/Connection.o : /Users/kimhyewon/Documents/Server/tennis/Packages/MySQL-1.0.2/Sources/MySQL/Bind+Node.swift /Users/kimhyewon/Documents/Server/tennis/Packages/MySQL-1.0.2/Sources/MySQL/Bind.swift /Users/kimhyewon/Documents...
D
/** * Inline assembler for the D programming language compiler. * * Specification: $(LINK2 https://dlang.org/spec/iasm.html, Inline Assembler) * * Copyright (C) 2018-2022 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: ...
D
/** * Windows API header module * * Part of the Internet Development SDK * * Translated from MinGW Windows headers * * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC core/sys/windows/_ocidl.d) */ module core.sys.windows.ocidl; version (Windows): ...
D
module makette.actions; import makette.source; import std.file, std.path; import std.xmlp.linkdom; Action makeAction(JNode jf, Element e) { auto act = new Action_rmdir(); act.init(jf, e); return act; } enum kPath = "path"; enum kRmdir = "rmdir"; static this() { registerAction(kRmdir, &makeAction); }...
D
formerly a term of respect for important white Europeans in colonial India
D
//TODO for debugging import std.stdio; class TextEditor { char[][] content; int cursorx; int cursory; string filename; this() { content.length = 1; content[0].length = 1; content[0] = " ".dup; } void loadFile(string filename) { auto file = File(filename); this.filename = filename;...
D
/* Copyright (c) 2019-2022 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, ...
D
instance PIR_61450_BRENDIK(Npc_Default) { name[0] = "Brendik"; guild = GIL_PAL; id = 61450; voice = 13; flags = 0; npcType = NPCTYPE_AMBIENT; level = 12; B_SetAttributesToChapter(self,5); fight_tactic = FAI_HUMAN_MASTER; EquipItem(self,ItMw_Piratensaebel); B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE...
D
/******************************************************************************* Struct encapsulating the set of RequestOnConn instances in use by an active request. Copyright: Copyright (c) 2016-2017 sociomantic labs GmbH. All rights reserved License: Boost Software License Version 1.0. See ...
D
/** * Container for the graphics adapter needed for the appropriate platform */ module dash.graphics.graphics; import dash.graphics.adapters, dash.graphics.shaders; /** * Abstract class to store the appropriate Adapter */ final abstract class Graphics { public static: /// The active Adapter Adapter adapter...
D
CSPCON (F07QUE) Example Program Data 4 :Value of N 'L' :Value of UPLO (-0.39,-0.71) ( 5.14,-0.64) ( 8.86, 1.81) (-7.86,-2.96) (-3.52, 0.58) (-2.83,-0.03) ( 3.80, 0.92) ( 5.32,-1.59) (-1.54,-2.86) (-0.56, 0....
D
 // Written in the D programming language. /* * Copyright (C) 2002-2006 by Digital Mars, www.digitalmars.com * Written by Walter Bright * Some parts contributed by David L. Davis * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held ...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, core.bitop; enum P = 998244353; void main() { auto ns = readln.split.to!(long[]); auto N = ns[0]; auto S = ns[1]; auto as = readln.split.to!(long[]); auto DP = new long[][](N, S+1); foreach (...
D
/home/salmansiddiqui/Documents/iot/formatted_print/target/rls/debug/deps/formatted_print-911906c9897b6225.rmeta: src/main.rs /home/salmansiddiqui/Documents/iot/formatted_print/target/rls/debug/deps/formatted_print-911906c9897b6225.d: src/main.rs src/main.rs:
D
import std.stdio: writeln;;; void main() { int[] arr; arr ~= 1; arr ~= [2, 3]; writeln("the sum of", arr, " is ", sum(arr)); } // the 'in' keyword suggests you can not modify the array or its contents // or it will be a compile error. int sum(in int[] data) { int total = 0; foreach(item; ...
D
/Users/bilalshahid/Developer/Qaida/build/Qaida.build/Debug-iphoneos/Qaida.build/Objects-normal/arm64/LessonsViewController.o : /Users/bilalshahid/Developer/Qaida/Qaida/AppDelegate.swift /Users/bilalshahid/Developer/Qaida/Qaida/Lessons/lessonsCell.swift /Users/bilalshahid/Developer/Qaida/Qaida/Takhti/GridViewCell.swift ...
D
import std.random; import verify_distribution_uniformity_naive: distCheck; /// Generates a random number in [1, 5]. int dice5() /*pure nothrow*/ @safe { return uniform(1, 6); } /// Naive, generates a random number in [1, 7] using dice5. int fiveToSevenNaive() /*pure nothrow*/ @safe { immutable int r = dice5()...
D
/** * Implement CTFE for intrinsic (builtin) functions. * * Currently includes functions from `std.math`, `core.math` and `core.bitop`. * * Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LIN...
D
// ************* // SPL_Waterfist /k4 // ************* const int SPL_Cost_Waterfist = 13; const int SPL_Damage_Waterfist = 125; INSTANCE Spell_Waterfist (C_Spell_Proto) { time_per_mana = 0; damage_per_level = SPL_Damage_Waterfist; damageType = DAM_MAGIC; }; func int Spell_Logic_Waterfist (var int manaInves...
D
module mCOM2D; import std.stdio, std.meta, std.traits, std.range, std.conv, std.string, std.typetuple, std.typecons, std.algorithm; private import std.experimental.allocator, std.experimental.allocator.building_blocks.region; private import core.sys.windows.windows, core.sys.windows.com, core.sys.windows.basetyps,...
D
//Written in the D programming language /* * Some extra constraints. * * Copyright 2016 Jaypha * * Distributed under the Boost Software License, Version 1.0. * (See http://www.boost.org/LICENSE_1_0.txt) * * Authors: Jason den Dulk */ module jaypha.traits; import std.traits; import std.functional; import std....
D
//https://www.reddit.com/r/dailyprogrammer/comments/nucsik/20210607_challenge_393_easy_making_change/ import std.stdio : writeln; import std.algorithm : sum; void main() { } int change(int input) { return input.calculateChange.values.sum; } unittest { static assert(468.change == 11); static assert(1034.c...
D
// Written in the D programming language. /** This module contains generic _iteration algorithms. $(SCRIPT inhibitQuickIndex = 1;) $(BOOKTABLE $(H2 Function), $(TR $(TH Function Name) $(TH Description)) $(T2 all, Checks if all elements satisfy to a predicate.) $(T2 any, Checks if at least one element satisfy to a pred...
D
// Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) module dscanner.analysis.imports_sortedness; import dscanner.analysis.base; import dparse.lexer; import dparse.ast; import std.stdio; /** * Checks ...
D
/Users/stephreaves/Desktop/honeybees/honeybees/Build/Intermediates/honeybees.build/Debug-iphonesimulator/honeybees.build/Objects-normal/x86_64/AddGeotificationViewController.o : /Users/stephreaves/Desktop/honeybees/honeybees/honeybees/GeotificationsViewController.swift /Users/stephreaves/Desktop/honeybees/honeybees/hon...
D
/* * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy * of the License at * * http://www.apache.org/licenses...
D
/++ Linear Congruential generator. Copyright: Copyright Andrei Alexandrescu 2008 - 2009, Ilya Yaroshenko 2016-. License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: $(HTTP erdani.org, Andrei Alexandrescu) Ilya Yaroshenko (rework) +/ module mir.random.engine.linear_congruential; import std.tra...
D
//////////////////////////////////////////////////////// // // // Architect Mod // // By benjamin foo // // // // Code created by mud-freak aka sz...
D
/** * This module contains the implementation of the C++ header generation available through * the command line switch -Hc. * * Copyright: Copyright (C) 1999-2022 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://w...
D
module linkdir; import vibe.vibe; import dpq.connection; import std; import std.string; import diet.html; import std.format; import std.conv; import link_tree; import tag_tree; import login_manager; class LinkDirWeb{ private LinkTree tree; private Connection db; private LoginManager login_manager; this(string pg...
D
a burrowing ground squirrel of western America and Asia
D
void layoutTransaction(void delegate() action) { action(); } class Control { protected void onTextChanged() {} }
D
import std.stdio, std.conv, std.exception; // Our Nodes, or Links inside the linked List class Node(T) { T val; // data stored in this node Node!T prev; // reference to the previous node Node!T next; // reference to the next node // Node constructor this(T data) { val = data; } void display...
D
module Windows.ApplicationModel.Contacts.Provider; import dwinrt; @uuid("e2cc1366-cf66-43c4-a96a-a5a112db4746") @WinrtFactory("Windows.ApplicationModel.Contacts.Provider.ContactPickerUI") interface IContactPickerUI : IInspectable { extern(Windows): deprecated("AddContact may be altered or unavailable for releases af...
D
/Users/burlhazza/Desktop/TestApps/Pokedexv1/Build/Intermediates/Pokedex v1.build/Debug-iphonesimulator/Pokedex v1.build/Objects-normal/x86_64/ViewController.o : /Users/burlhazza/Desktop/TestApps/Pokedexv1/Pokedex\ v1/ViewController.swift /Users/burlhazza/Desktop/TestApps/Pokedexv1/Pokedex\ v1/AppDelegate.swift /Applica...
D
module dummy; @safe @nogc public struct Dummy { static const int MAX_MEMBER_INT = 3; int memberInt; string memberStr; /* * Newest version layout: * in (memberInt > MAX_MEMBER_INT) * out (; this.memberInt == memberInt) * out (; this.memberStr == memberStr) * { * this.member...
D
import std.stdio; import std.format; import std.conv; import std.algorithm; import std.array; import std.string; import terminal; import lexer; int nextId = 0; enum Primitive { U64, U8, I64, Bool, Auto, } class NotFoundException : Exception { this(string msg) { super(msg); } ...
D
/Users/DboyLiao/Documents/MOOCs/Udacity/iOS/Intro_iOS_App_Dev/PitchPerfect/DerivedData/PitchPerfect/Build/Intermediates/PitchPerfect.build/Debug-iphonesimulator/PitchPerfect.build/Objects-normal/x86_64/RecordSoundsViewController.o : /Users/DboyLiao/Documents/MOOCs/Udacity/iOS/Intro_iOS_App_Dev/PitchPerfect/PitchPerfect...
D
INSTANCE Info_Mod_LeibwacheHymir_Treue (C_INFO) { npc = Mod_1014_KGD_Leibwache_MT; nr = 1; condition = Info_Mod_LeibwacheHymir_Treue_Condition; information = Info_Mod_LeibwacheHymir_Treue_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_LeibwacheHymir_Treue_Condition() { if (!Npc_KnowsInfo(hero, Info_...
D
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Node.build/Core/Context.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.bu...
D
/Users/cansoykarafakili/Desktop/Hello/build/Intermediates/Hello.build/Debug/FluentProvider.build/Objects-normal/x86_64/Config+Preparation.o : /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/fluent-provider.git-1502561075136423204/Sources/FluentProvider/Node+Row+JSON.swift /Users/cansoykarafakili/Desktop/Hello/.b...
D
/* Copyright (c) 2017-2018 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, ...
D
instance DJG_735_ToterDrachenjaeger (Npc_Default) { // ------ NSC ------ name = NAME_ToterDrachenjaeger; guild = GIL_DJG; id = 735; voice = 6; flags = 0; //NPC_FLAG_IMMORTAL oder 0 npctype = NPCTYPE_AMBIENT; // ------ Attribute ------ B_SetAttributesToChapter (self, 5); ...
D
on certain occasions or in certain cases but not always
D
instance DIA_Addon_Patrick_NW_EXIT(C_Info) { npc = STRF_1123_Addon_Patrick_NW; nr = 999; condition = DIA_Addon_Patrick_NW_EXIT_Condition; information = DIA_Addon_Patrick_NW_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Patrick_NW_EXIT_Condition() { return TRUE; }; func void DI...
D
/************************************************ * NSC ohne Wahrnehmung benutzt Bett, * * wenn kein Bett da, macht der ZS_StandAround * *************************************************/ func void ZS_SleepNoSense() { PrintDebugNpc (PD_TA_FRAME,"ZS_SleepNoSense"); AI_SetWalkmode (self, NPC_WALK); ...
D
/Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/AFError.o : /Users/deepansh/Desktop/ForexWatchlist/Pods/Alamofire/Source/MultipartFormData.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/Alamofire/Sour...
D
module dash.editor.editor; import dash.core.dgame; import dash.editor.websockets; import dash.utility.output; import vibe.data.json; import std.uuid, std.typecons; /** * The editor manager class. Handles all interactions with editors. * * May be overridden to override default event implementations. */ class Edito...
D
/home/runner/TETRIO-Bot-node/AI/Rust-AI/target/debug/build/crossbeam-utils-471af4b3a3bd58bb/build_script_build-471af4b3a3bd58bb: /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.7.2/build.rs /home/runner/TETRIO-Bot-node/AI/Rust-AI/target/debug/build/crossbeam-utils-471af4b3a3bd58bb/build_...
D
a genus of tropical American plants have sword-shaped leaves and a fleshy compound fruits composed of the fruits of several flowers (such as pineapples) large sweet fleshy tropical fruit with a terminal tuft of stiff leaves
D
// ************* // SPL_Blutopfer // ************* const int SPL_Cost_Blutopfer = 70; const int SPL_Damage_Blutopfer = 100; INSTANCE Spell_Blutopfer (C_Spell_Proto) { time_per_mana = 0; //Spell wirkt Instant damage_per_level = SPL_Damage_Blutopfer; }; func int Spell_Logic_Blutopfer (var int manaInvested) {...
D
module served.commands.definition; import served.extension; import served.types; import served.utils.ddoc; import workspaced.api; import workspaced.com.dcd; import workspaced.coms; import std.experimental.logger; import std.path : buildPath, isAbsolute; import std.string; import fs = std.file; import io = std.stdio...
D
; Copyright (C) 2008 The Android Open Source Project ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law ...
D
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.0 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ------------------------------...
D
import pyd.def; import pyd.exception; extern(C) void PydMain(); version(Python_3_0_Or_Later) { import deimos.python.Python; pragma(msg, "in here!"); extern(C) export PyObject* PyInit_hello() { return pyd.exception.exception_catcher(delegate PyObject*() { pyd.def.pyd_module_name = "...
D
/Users/anusoft/Downloads/caddiecards_Xcode12-master-2/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FTPopOverMenu_Swift.build/Objects-normal/x86_64/FTPopOverMenu.o : /Users/anusoft/Downloads/caddiecards_Xcode12-master-2/Pods/FTPopOverMenu_Swift/FTPopOverMenu_Swift/UIScreen+Frame.swift /Users/anusoft/Down...
D
/** License: Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execut...
D
// PERMUTE_ARGS: // EXTRA_SOURCES: /extra-files/ddoc9676a.ddoc // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o- // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh 9676a module ddoc9676a; /// deprecated void foo() {}
D
/* * This file is part of gtkD. * * gtkD is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * gtkD is distribut...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Bo...
D
instance Sld_701_Orik_Exit(C_Info) { npc = SLD_701_Orik; nr = 999; condition = Sld_701_Orik_Exit_Condition; information = Sld_701_Orik_Exit_Info; important = 0; permanent = 1; description = "KONEC"; }; func int Sld_701_Orik_Exit_Condition() { return 1; }; func void Sld_701_Orik_Exit_Info() { AI_StopProcess...
D
/* * Copyright (c) 2004-2008 Derelict Developers * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this li...
D
/Users/shawngong/Centa/.build/debug/Turnstile.build/Realm/Realm.swift.o : /Users/shawngong/Centa/Packages/Turnstile-1.0.5/Sources/Turnstile/TurnstileError.swift /Users/shawngong/Centa/Packages/Turnstile-1.0.5/Sources/Turnstile/Core/Subject.swift /Users/shawngong/Centa/Packages/Turnstile-1.0.5/Sources/Turnstile/Core/Tur...
D
INSTANCE Info_Mod_Melvin_Hi (C_INFO) { npc = Mod_7505_BDT_Melvin_REL; nr = 1; condition = Info_Mod_Melvin_Hi_Condition; information = Info_Mod_Melvin_Hi_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Melvin_Hi_Condition() { return 1; }; FUNC VOID Info_Mod_Melvin_Hi_Info() { AI_Output(self, hero, "...
D
/** * Copyright: Copyright (c) 2012 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: May 3, 2012 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module mambo.sys.System; import core.stdc.stdlib : EXIT_SUCCESS, EXIT_FAILURE; enum Ex...
D
/** * Contains the garbage collector implementation. * * Copyright: Copyright Digital Mars 2001 - 2013. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright, David Friedman, Sean Kelly */ /* Copyright Digital Mars 2005 - 2013. * Distributed under the Boost So...
D
/Users/Shashi/Documents/cunyhackathon/StudyBuddy/build/StudyBuddy.build/Debug-iphonesimulator/StudyBuddy.build/Objects-normal/x86_64/DetailViewController.o : /Users/Shashi/Documents/cunyhackathon/StudyBuddy/StudyBuddy/LoginViewController.swift /Users/Shashi/Documents/cunyhackathon/StudyBuddy/StudyBuddy/WelcomePageViewC...
D
/** * * THIS FILE IS AUTO-GENERATED BY ./parse_specs.d FOR MCU atmega3250p WITH ARCHITECTURE avr5 * */ module avr.specs.specs_atmega3250p; enum __AVR_ARCH__ = 5; enum __AVR_ASM_ONLY__ = false; enum __AVR_ENHANCED__ = true; enum __AVR_HAVE_MUL__ = true; enum __AVR_HAVE_JMP_CALL__ = true; enum __AVR_MEGA__ = true;...
D
/Users/azimin/Downloads/Hello2/.build/debug/WebSockets.build/Communication/WebSocket+ControlFrames.swift.o : /Users/azimin/Downloads/Hello2/.build/checkouts/engine.git-3311994267206676365/Sources/WebSockets/Communication/WebSocket+Send.swift /Users/azimin/Downloads/Hello2/.build/checkouts/engine.git-3311994267206676365...
D
// ************************************************** // EXIT // ************************************************** INSTANCE DIA_Cup_Exit (C_INFO) { npc = RBL_2619_Cup; nr = 999; condition = DIA_Cup_Exit_Condition; information = DIA_Cup_Exit_Info; permanent = 1; description = DIALOG_ENDE; }; ...
D
// Written in the D programming language // Jordan K. Wilson https://wilsonjord.github.io/ /** This module implements colouring and formatting for a cell. Author: $(HTTP wilsonjord.github.io, Jordan K. Wilson) */ module reportd.cellformat; import std.typecons; import std.file; import std.conv; /**...
D
/* * Copyright 2015-2018 HuntLabs.cn. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable l...
D