code
stringlengths
3
10M
language
stringclasses
31 values
/Users/Matt/iOS/RoadInfo/DerivedData/RoadInfo/Build/Intermediates/RoadInfo.build/Debug-iphonesimulator/RoadInfo.build/Objects-normal/i386/ChristchurchEvent.o : /Users/Matt/iOS/RoadInfo/RoadInfo/ChristchurchEvent.swift /Users/Matt/iOS/RoadInfo/RoadInfo/URLConnection.swift /Users/Matt/iOS/RoadInfo/RoadInfo/EventViewContr...
D
module doodle.main.undo_manager; class UndoManager : IUndoManager { this() { } void addObserver(IUndoObserver observer) { _observers.add(observer); } void removeObserver(IUndoObserver observer) { _observers.remove(observer); } void reset() { assert(!inTransaction(...
D
/******************************************************************************* Fake DMQ node Push request implementation. Copyright: Copyright (c) 2016-2017 dunnhumby Germany GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. **********...
D
/*------------------------------------------------------------------------- * * Copyright (c) 2003-2014, PostgreSQL Global Development Group * * *------------------------------------------------------------------------- */ module org.postgresql.util.MD5Digest; /** * MD5-based utility function to obfuscate passwords ...
D
/Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationBallScaleRipple.o : /Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Pods/NVActivityIndicatorV...
D
/Users/mac/Desktop/Young心理/DerivedData/Young心理/Build/Intermediates/Pods.build/Debug-iphonesimulator/LeanCloud.build/Objects-normal/x86_64/Object.o : /Users/mac/Desktop/Young心理/Pods/LeanCloud/Sources/Storage/Library/MD5.swift /Users/mac/Desktop/Young心理/Pods/LeanCloud/Sources/Storage/DataType/ACL.swift /Users/mac/Desktop...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010-2011 by Rainer Schuetze, All Rights Reserved // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICE...
D
/// Please import core.sys.windows.com instead. This module will be deprecated in DMD 2.068. module mystd.c.windows.com; version (Windows): public import core.sys.windows.com;
D
/* This file is part of Sambamba. Copyright (C) 2017 Pjotr Prins <pjotr.prins@thebird.nl> Sambamba is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at y...
D
module utf_bc.formats; import utf_bc.le_be; enum TextFormat{ ASCII, UTF_8, UTF_16LE, UTF_32LE, UTF_16BE, UTF_32BE, UCS_2LE, UCS_2BE, UCS_2 = (systemEndian == Endian.Little) ? UCS_2LE : UCS_2BE, UTF_16 = (systemEndian == Endian.Little) ? UTF_16LE : UTF_16BE, UTF_32 = (systemEndian == Endian.Little) ? UTF...
D
/Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Differ.build/Objects-normal/x86_64/Diff.o : /Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Pods/Differ/Sources/Differ/Diff.swift /Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Pods/Differ/Sources/Differ/ExtendedDiff.swift /Use...
D
/home/hustccc/OS_Tutorial_Summer_of_Code/rCore_Labs/Lab4/os/target/debug/deps/aho_corasick-157883ace851d4c3.rmeta: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/aho-corasick-0.7.13/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/aho-corasick-0.7.13/src/ahocoras...
D
const int SPL_Cost_InstantFireStorm = 25; const int SPL_Damage_InstantFireStorm = 100; instance Spell_Firestorm(C_Spell_Proto) { time_per_mana = 0; damage_per_level = SPL_Damage_InstantFireStorm; // изменить тип если нужно damagetype = DAM_MAGIC; // damagetype = DAM_FIRE; }; func int Spell_Logic_Firestorm(v...
D
void main() { import std.stdio, std.string, std.conv, std.algorithm; int n; rd(n); auto a = readln.split.to!(int[]); int s = 0; foreach (i; 0 .. n) { a[i] *= n; s += a[i]; } auto ave = s / n; int best_idx = 0; import std.math : abs; foreach (int i; 1 .. n) { if (abs(ave - a[best_idx...
D
/* 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, execute, and transmit the Software, a...
D
// Written in the D programming language /** * Implementation of vector as a list of values. * Features: * $(OL * $(LI All vector actions is checked at compile time) * $(LI Vector contains only it's data, and nothing additional) * $(LI Almost all vector actions is `pure` and `nothrow`) * $(L...
D
/Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/.build/debug/URI.build/Model/URI.swift.o : /Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/Packages/Engine-1.3.2/Sources/URI/PercentDecoding.swift /Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellers...
D
import intcode; import std.algorithm; import std.range; import std.stdio; auto readProgram(File input) { import std.conv; return input .byLine .map!(line => line.splitter(',').map!(to!Word) ) .joiner; } void partOne() { stdin .readProgram .run(only(1)) .each!writeln; } void partTwo() { stdin ...
D
/* * #52 MOBs in New Camp can be used without corresponding items * * There does not seem an easy way to test this fix programmatically, so this test relies on manual confirmation. * * Expected behavior: The grindstone is not usable anymore (without a sword blade). */ func void G1CP_Test_052() { if (G1CP_Test...
D
/** A static HTTP file server. Copyright: © 2012-2015 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.http.fileserver; import vibe.core.file; import vibe.core.log; import vibe.core.stream : RandomAccessStream...
D
INSTANCE Mod_914_NOV_Babo_NW (Npc_Default) { // ------ NSC ------ name = "Babo"; guild = GIL_VLK; id = 914; voice = 3; flags = 0; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 2); // ------ Kampf-Taktik ------ fight_tactic = FAI_HUM...
D
import mdp; import irl; import std.stdio; import std.format; import std.string; import std.math; import std.random; import std.algorithm; import std.algorithm.searching; import sortingMDP; import std.math; import std.numeric; import core.stdc.stdlib : exit; import std.datetime; import std.range; import boydmdp; /*...
D
// Written in the D programming language. /** Utilities for manipulating files and scanning directories. Functions in this module handle files as a unit, e.g., read or write one _file at a time. For opening files and manipulating them via handles refer to module $(MREF std, stdio). Copyright: Copyright Digital Mars 2...
D
module smidig.rpc; import tested : name; /** * Structure used to register functions which are meant to able to be called * over the network, as well as "call" functions on other hosts, by serializing * the function name passed, as well as the arguments. */ struct RPC { import smidig.collections : HashMap; impor...
D
instance DIA_Edda_EXIT(DIA_Proto_End) { npc = VLK_471_Edda; }; /////////////////////////////////////// САРА ///////////////////////////////////////////// //=================================================== instance DIA_Edda_Sarah_Hello(C_Info) { npc = VLK_471_Edda; nr = 1; condition = DIA_Edda_Sarah_MR_Hello...
D
/Users/sitingyo/ReactNative/Project/ios/build/Build/Intermediates.noindex/Project.build/Debug-iphonesimulator/Project.build/Objects-normal/x86_64/RNBubbleChartView.o : /Users/sitingyo/ReactNative/Project/ios/ReactNativeCharts/RNChartViewBase.swift /Users/sitingyo/ReactNative/Project/ios/ReactNativeCharts/RNBarLineChart...
D
// PERMUTE_ARGS: -g // EXTRA_CPP_SOURCES: cppb.cpp import core.stdc.stdio; import core.stdc.stdarg; import core.stdc.config; extern (C++) int foob(int i, int j, int k); class C { extern (C++) int bar(int i, int j, int k) { printf("this = %p\n", this); printf("i = %d\n", i); pr...
D
/Users/KittenYang/Documents/Github/NextApp/Build/Intermediates/UnNamedWeibo.build/Debug-iphonesimulator/UnNamedWeibo.build/Objects-normal/x86_64/RAMRotationAnimation.o : /Users/KittenYang/Documents/Github/NextApp/UnNamedWeibo/RAMAnimatedTabBarController/RAMAnimatedTabBarController.swift /Users/KittenYang/Documents/Gith...
D
/Users/jr/Desktop/IOS__project/TagPicture/build/Pods.build/Debug-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/KeychainItemAccessibility.o : /Users/jr/Desktop/IOS__project/TagPicture/Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/KeychainWrapper.swift /Users/jr/Desktop/IOS__project/TagPicture/Pods/Sw...
D
/** * Code generation 2 * * Includes: * - math operators (+ - * / %) and functions (abs, cos, sqrt) * - 'string' functions (strlen, memcpy, memset) * - pointers (address of / dereference) * - struct assign, constructor, destructor * * Compiler implementation of the * $(LINK2 https://www.dlang.org, D programmi...
D
/home/dario/BC/NEAR/BlockJob/contract/target/debug/deps/cpuid_bool-b556d7143942909f.rmeta: /home/dario/.cargo/registry/src/github.com-1ecc6299db9ec823/cpuid-bool-0.1.2/src/lib.rs /home/dario/BC/NEAR/BlockJob/contract/target/debug/deps/libcpuid_bool-b556d7143942909f.rlib: /home/dario/.cargo/registry/src/github.com-1ecc...
D
module levelgen.LevelGenerator; import Cell; import Level; import TemplateDatabase:TemplateDatabase,DataTemplate; import utility.TemplateReader; import utility.Geometry; import Connections:Queue; enum LevelGenBaseMode {NONE = -1, NOISE = 0, DRUNKARD = 1, BSP = 2, MAZE = 3, CELLULAR = 4} class LevelGenTemplate: DataT...
D
/contract/target/release/build/schemars-babe69baead9b43e/build_script_build-babe69baead9b43e: /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/schemars-0.7.6/build.rs /contract/target/release/build/schemars-babe69baead9b43e/build_script_build-babe69baead9b43e.d: /usr/local/cargo/registry/src/github.com-1ecc62...
D
in a keen and discriminating manner
D
/** This module is a submodule of $(MREF std, range). It provides basic range functionality by defining several templates for testing whether a given object is a _range, and what kind of _range it is: $(BOOKTABLE , $(TR $(TD $(D $(LREF isInputRange))) $(TD Tests if something is an $(I input _range), defin...
D
module dgt.render; import gfx.core.log : LogTag; enum dgtRenderLogMask = 0x0020_0000; package immutable dgtRenderLog = LogTag("DGT-RENDER", dgtRenderLogMask);
D
/* -------------------- CZ CHANGELOG -------------------- */ /* v1.02: (3x) CZ_SkillCheckCondition - přidáno zobrazování skill checků v1.00: (2x) dia_orc_8550_urnazul_urhan_Ok - Ok (cyrilice -> latinka) (2x) dia_orc_8550_urnazul_urhankilldone_Ok - Ok (cyrilice -> latinka) (2x) DIA_GorkCampGuard_Hello_Ore - Ore (c...
D
/** * Implementation of associative arrays. * * Copyright: Copyright Digital Mars 2000 - 2015. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Martin Nowak */ module rt.aaA; /// AA version for debuggers, bump whenever changing the layout extern (C) immutable int _aaVersion = 1...
D
module UnrealScript.Engine.ActorChannel; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.Channel; extern(C++) interface ActorChannel : Channel { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass StaticClass() { mixin(MGSCC...
D
module app; import std.stdio, std.file, std.algorithm.iteration, std.datetime.stopwatch, std.format, std.conv; import utils.ds; import qscript.parser, qscript.tokens, qscript.compiler; version(unittest){}else int main(string[] args){ // tokenize file Flags!TokenType ignore; ignore |= ...
D
//Written in the D programming language /++ $(LUCKY Regular expressions) are a commonly used method of pattern matching on strings, with $(I regex) being a catchy word for a pattern in this domain specific language. Typical problems usually solved by regular expressions include validation of user input and the ...
D
/** * Anytris input. * * License: $(LINK2 http://opensource.org/licenses/zlib-license, Zlib License). * * Authors: Leandro Motta Barros */ module anytris.input; import fewdee.all; /** * The time, in seconds, between two consecutive left/right piece movements * while the corresponding key is kept pressed. */...
D
module java.util.ArrayList; import java.lang.all; import java.util.AbstractList; import java.util.List; import java.util.ListIterator; import java.util.Collection; import java.util.Iterator; class ArrayList : AbstractList, List { private Object[] data; this(){ } this(int size){ ...
D
module android.java.android.provider.MediaStore_Images_Thumbnails_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import3 = android.java.android.graphics.Bitmap_d_interface; import import5 = android.j...
D
/Users/ThiagoBevi/Dev-iOS/Marvel/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nimble.build/Objects-normal/x86_64/BeIdenticalTo.o : /Users/ThiagoBevi/Dev-iOS/Marvel/Pods/Nimble/Sources/Nimble/DSL.swift /Users/ThiagoBevi/Dev-iOS/Marvel/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift /Users/ThiagoBevi/Dev-iO...
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
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/TemplateKit.build/AST/TemplateDataContext.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/template-kit/Sources/TemplateKit/Data/TemplateData.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.buil...
D
/Users/vincent/Desktop/波卡课程/substratelearning/hw04/command/target/debug/deps/structopt-7bf5b12c741c12db.rmeta: /Users/vincent/.cargo/registry/src/github.com-1ecc6299db9ec823/structopt-0.3.16/src/lib.rs /Users/vincent/Desktop/波卡课程/substratelearning/hw04/command/target/debug/deps/libstructopt-7bf5b12c741c12db.rlib: /Use...
D
// Written in the D programming language. /** Functions that manipulate other functions. Macros: WIKI = Phobos/StdFunctional Copyright: Copyright Andrei Alexandrescu 2008 - 2009. License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: $(WEB erdani.org, Andrei Alexandrescu) Source: $(PHOBOSSRC ...
D
/** Zlib input/output streams Copyright: © 2012 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.stream.zlib; import vibe.stream.stream; import std.algorithm; import std.exception; import std.zlib; /** Wri...
D
/** * HibernateD - Object-Relation Mapping for D programming language, with interface similar to Hibernate. * * Source file hibernated/dialects/sqlitedialect.d. * * This module contains implementation of PGSQLDialect class which provides implementation specific SQL syntax information. * * Copyright: Copyright...
D
// Microsoft Shell Controls And Automation // Version 1.0 /*[uuid("50a7e9b0-70ef-11d1-b75a-00a0c90564fe")]*/ module os.win.tlb.shell32; /*[importlib("STDOLE2.TLB")]*/ private import os.win.com.core; // Enums // Search Command Execute Errors enum SearchCommandExecuteErrors { SCEE_PATHNOTFOUND = 0x000...
D
/** * Defines declarations of various attributes. * * The term 'attribute' refers to things that can apply to a larger scope than a single declaration. * Among them are: * - Alignment (`align(8)`) * - User defined attributes (`@UDA`) * - Function Attributes (`@safe`) * - Storage classes (`static`, `__gshared`) ...
D
module Engine.Material; import Engine.Shader; import Engine.Texture; import Engine.Batch; import Engine.Renderer; import Engine.Core; class Material { @property Shader shader() { return _shader; }; @property ITexture texture() { return _texture; }; @property Renderer renderer() { return _renderer; }; ...
D
/afs/cern.ch/user/y/ychou/private/monoWZH/CxAODFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/CxAODMaker/obj/PhotonHandler.o /afs/cern.ch/user/y/ychou/private/monoWZH/CxAODFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/CxAODMaker/obj/PhotonHandler.d : /afs/cern.ch/user/y/ychou/private/monoWZH/CxAODFramework/CxAODMake...
D
/Users/macosx/Desktop/TestNetWorkLayer/build/Pods.build/Debug-iphonesimulator/Quick.build/Objects-normal/x86_64/Filter.o : /Users/macosx/Desktop/TestNetWorkLayer/Pods/Quick/Sources/Quick/DSL/World+DSL.swift /Users/macosx/Desktop/TestNetWorkLayer/Pods/Quick/Sources/Quick/DSL/DSL.swift /Users/macosx/Desktop/TestNetWorkLa...
D
/** * Copyright: Enalye * License: Zlib * Authors: Enalye */ module grimoire.compiler.mangle; import std.conv : to; import std.string : indexOf; import grimoire.compiler.type; /** Mangle a signature of types. Example: --- [int, string, func(bool, float)] --- Will be mangled as `$i$s$f($b...
D
/Users/twohyjr/Documents/Projects/TripTracker/TripTracker/DerivedData/TripTracker/Build/Intermediates/TripTracker.build/Debug-iphonesimulator/TripTracker.build/Objects-normal/i386/GasEntryDisplayViewCell.o : /Users/twohyjr/Documents/Projects/TripTracker/TripTracker/TripTracker/GasEntryDisplayViewCell.swift /Users/twohy...
D
//последний вставленный в мир vob - в начале vobtree func int Wld_GetInsertedVob() { var zCTree newTreeNode; newTreeNode = _^(MEM_World.globalVobTree_firstChild); return newTreeNode.data; }; //последний вставленный в мир item //!= последнему vob'у, если у item есть pfx-эффекты func int Wld_GetInsertedItem() { var ...
D
module UnrealScript.TribesGame.GFxTrPage_QuickMatch; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.GFxTrAction; import UnrealScript.TribesGame.GFxTrPage; import UnrealScript.GFxUI.GFxObject; extern(C++) interface GFxTrPage_QuickMatch : GFxTrPage { public extern(D): priv...
D
module core.sys.windows.winrt.eventtoken; struct EventRegistrationToken { long value; }
D
var int last_atak; //*************************************************************************** // Lumber Globals //*************************************************************************** const int MAX_LUMBER_DAILY = 7; var int LUMBER_DAYAMOUNT0 ; var int LUMBER_DAYAMOUNT1 ; var int LUMBER_DAYAMOUNT2 ; var int LUM...
D
/* 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, execute, and transmit the Software, a...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010-2011 by Rainer Schuetze, All Rights Reserved // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICE...
D
module sensors.internal.IInternalSensor; import std.variant; interface IInternalSensor { public enum EnumType { COUNTER, // system can increment the sensor like a counter MEASURE // just passivly measures something } @property EnumType type(); @property string humanreadableSensorName(); void restart(); v...
D
module vson; public import vson.json; public import vson.bson; public import vson.serialization;
D
; Copyright (C) 2016 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
module yazl; public import yazl.sock; public import yazl.router;
D
/root/github/compiler/week3_binary_operators/lexer_lib/target/debug/build/memchr-c91f1865189b4115/build_script_build-c91f1865189b4115: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.2.0/build.rs /root/github/compiler/week3_binary_operators/lexer_lib/target/debug/build/memchr-c91f1865189b4115/build_scri...
D
module kameloso.plugins; //module kameloso.plugins.all; public import kameloso.plugins.common, //kameloso.plugins.automode, kameloso.plugins.login, kameloso.plugins.waiter;
D
/++ Templates for binding Godot C++ classes to use from D The binding generator will implement these templates for the classes in Godot's API JSON. +/ module godot.d.bind; import std.meta, std.traits; import std.conv : text; import godot.core, godot.c; import godot.d.meta; /// Type to mark varargs GodotMethod. stru...
D
a lever used by a pilot to control the ailerons and elevators of an airplane a manual control consisting of a vertical handle that can move freely in two directions
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
instance NOV_1309_NOVIZE(NPC_DEFAULT) { name[0] = NAME_NOVIZE; npctype = NPCTYPE_AMBIENT; guild = GIL_NOV; level = 9; voice = 3; id = 1309; attribute[ATR_STRENGTH] = 15; attribute[ATR_DEXTERITY] = 15; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 148; attribute[ATR_HI...
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.build/Database/DatabaseConfig.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/database-kit/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/database-kit/Sourc...
D
/Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ObserveOn.o : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSw...
D
/* --------------------------------------------------------------------------- Open Asset Import Library (ASSIMP) --------------------------------------------------------------------------- Copyright (c) 2006-2009, ASSIMP Development Team All rights reserved. Redistribution and use of this software in source and bin...
D
/** Copyright: Copyright (c) 2015-2018 Andrey Penechko. License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: Andrey Penechko. */ module voxelman.movement.plugin; import voxelman.log; import voxelman.math; import pluginlib; import voxelman.core.events; import voxelman.config.configmanager : Config...
D
/Users/shimmennobuyoshi/Desktop/OnTheMap/Build/Intermediates/OnTheMap.build/Debug-iphonesimulator/OnTheMap.build/Objects-normal/x86_64/AppDelegate.o : /Users/shimmennobuyoshi/Desktop/OnTheMap/OnTheMap/UdacityAnnotation.swift /Users/shimmennobuyoshi/Desktop/OnTheMap/OnTheMap/UIColorExtension.swift /Users/shimmennobuyosh...
D
// //---------------------------------------------------------------------- // Copyright 2007-2011 Mentor Graphics Corporation // Copyright 2007-2010 Cadence Design Systems, Inc. // Copyright 2010 Synopsys, Inc. // Copyright 2014 Coverify Systems Technology // All Rights Reserved Worldwide // // Licensed un...
D
import std.stdio; import std.math; import std.array; import std.conv; import std.random; import std.algorithm; /// Graph reporesented like list of edges struct Graph { uint verticesCount; uint[2][] edges; } uint findMinimalCut(ref Graph g) { uint randomContraction(Graph g) { while (g.verticesCount > 2) { uint...
D
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/SQL.build/Objects-normal/x86_64/SQLBoolLiteral.o : /Users/petercernak/vapor/TILApp/.build/checkouts/sql.git--5031097865152321144/Sources/SQL/SQLBind.swift /Users/petercernak/vapor/TILApp/.build/checkouts/sql.git--5031097865152321144/Sources/...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved // // License for redistribution is given by the Artistic License 2.0 // see file LICENSE for further details module visuald.logutil; import ...
D
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIO.build/EventLoopFuture.swift.o : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/NIO/No...
D
/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution...
D
INSTANCE Recept_ItFo_Potion_Mana_01(Recept_Proto) { name = "Recepta"; mainflag = ITEM_KAT_DOCS; makingmob = R_LAB_PSI; product_amount = 1; product = ItFo_Potion_Mana_01; needitm[0] = ItFo_Plants_mushroom_01; needitm_amount[0] =1;//Piekielnik[3] needitm[1] = ItFo_Plants_Velayis_01; needitm_...
D
/***************************************************************************** * * Higgs JavaScript Virtual Machine * * This file is part of the Higgs project. The project is distributed at: * https://github.com/maximecb/Higgs * * Copyright (c) 2011-2013, Maxime Chevalier-Boisvert. All rights re...
D
an island in the Mediterranean a region of France on the island of Corsica
D
/Users/kimhyewon/Documents/Server/tennis/build/tennis.build/Debug/Core.build/Objects-normal/x86_64/Semaphore.o : /Users/kimhyewon/Documents/Server/tennis/Packages/Core-1.0.0/Sources/Core/Array.swift /Users/kimhyewon/Documents/Server/tennis/Packages/Core-1.0.0/Sources/Core/Bool+String.swift /Users/kimhyewon/Documents/Se...
D
// Copyright Brian Schott (Hackerpilot) 2012. // 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 ctags; import std.d.parser; import std.d.lexer; import std.d.ast; import std.algorithm; ...
D
/** * Forms the symbols available to all D programs. Includes Object, which is * the root of the class object hierarchy. This module is implicitly * imported. * * Copyright: Copyright Digital Mars 2000 - 2011. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright, Sea...
D
in a surreptitious manner
D
/* ** Copyright (C) 1999-2011Erik de Castro Lopo <erikd@mega-nerd.com> ** ** This program 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 ...
D
/******************************************************************************** * masm.d: main file for mips assembler/disassembler * * 2016 - Ben Perlin * *************************************************************************...
D
/Users/fengshaohui/Desktop/swift/iOS/BasedLearningDemo/Build/Intermediates/BasedLearningDemo.build/Debug-iphoneos/BasedLearningDemo.build/Objects-normal/arm64/ViewController.o : /Users/fengshaohui/Desktop/swift/iOS/BasedLearningDemo/BasedLearningDemo/FengTextViewViewController.swift /Users/fengshaohui/Desktop/swift/iOS...
D
//Generated by Cap'n Proto compiler, DO NOT EDIT. //source: eval.capnp module capnproto.benchmark.evalschema; import capnproto; enum Operation : ushort { add, subtract, multiply, divide, modulus, _NOT_IN_SCHEMA, } struct Expression { public: static immutable structSize = cast(immutable)StructSize(2, 2); s...
D
a lightweight handheld collapsible canopy a formation of military planes maintained over ground operations or targets having the function of uniting a group of similar things covering or applying simultaneously to a number of similar items or elements or groups
D
/Users/taharahiroki/secret_account_test/target/debug/deps/rand_chacha-5c31137b7850b4ad.rmeta: /Users/taharahiroki/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/lib.rs /Users/taharahiroki/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/chacha.rs /Users/taharahiroki/secret_a...
D
a person who is pursuing and trying to overtake or capture a drink to follow immediately after another drink
D
/** ## DC motor model Simple model of brush direct current motor. Model input: $(LIST * $(MATH U_r) - supply voltage, $(I V) * $(MATH T_l) - load torque, $(I N⋅m) ) Model output: $(LIST * $(MATH \omega_r) - rotor speed, $(I rad/S) ) Model parameters: $(LIST * $(MATH R_r) - ...
D