code
stringlengths
3
10M
language
stringclasses
31 values
import std.stdio; import std.range; import std.algorithm; import multi_index; import std.traits; template Testsies(Allocator) { int[typeof(cast() ElementType!(Range).init)] set(Range)(Range r) { typeof(return) arr; foreach(e; r) arr[e]=1; return arr; } ElementType!Range[] array(Range)(Range r) { type...
D
instance DIA_ToughGuy_NEWS(C_Info) { nr = 1; condition = DIA_ToughGuy_NEWS_Condition; information = DIA_ToughGuy_NEWS_Info; permanent = TRUE; important = TRUE; }; func int DIA_ToughGuy_NEWS_Condition() { if(Npc_IsInState(self,ZS_Talk) && (self.aivar[AIV_LastFightAgainstPlayer] != FIGHT_NONE) && (self.aivar[AIV...
D
/++ A module containing the Visual Trial reporter used to send data to the Visual Studio Code plugin Copyright: © 2017 Szabo Bogdan License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Szabo Bogdan +/ module trial.reporters.visualtrial; import std.conv; imp...
D
/Users/mli/Desktop/Develope/Swift/RxSwiftDemo20190402/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/HistoricalScheduler.o : /Users/mli/Desktop/Develope/Swift/RxSwiftDemo20190402/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/mli/Desktop/Develope/Swift/RxSwiftDemo201...
D
/* TEST_OUTPUT: --- fail_compilation/imports/test64a.d(1): Error: module imports from file fail_compilation/imports/test64a.d conflicts with package name imports --- */ // PERMUTE_ARGS: //import std.stdio; import imports.test64a; int main(string[] args) { //writefln(file1); return 0; }
D
instance VLK_427_Buergerin(Npc_Default) { name[0] = NAME_Buergerin; guild = GIL_VLK; id = 427; voice = 16; flags = 0; npcType = NPCTYPE_AMBIENT; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_COWARD; B_CreateAmbientInv(self); EquipItem(self,ItMw_1h_Vlk_Dagger); B_SetNpcVisual(self,FEMALE,"Hum_He...
D
import std.stdio; import std.string; import std.socket; import parser; import database; const int BUFFER_SIZE = 4096; @safe void print_prompt() { "simple_db> ".write(); } @safe void send_prompt(Socket client) { client.send("simple_db> "); } class ExitException : Exception { pure this(string msg = null, ...
D
/Users/haruna/Documents/iOSdev/yelpy/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkeletonView.build/Objects-normal/x86_64/UITableView+CollectionSkeleton.o : /Users/haruna/Documents/iOSdev/yelpy/Pods/SkeletonView/Sources/Appearance/SkeletonAppearance.swift /Users/haruna/Documents/iOSdev/yelpy/Pods/SkeletonView/...
D
/********************************************************** ** ** LOGRAMM ** Interpreter ** ** (c) 2009-2014, Dr.Kameleon ** ********************************************************** ** safety.d **********************************************************/ module safety; //==================================...
D
/** Some additional alogorithm functions. Copyright: © 2019 Arne Ludwig <arne.ludwig@posteo.de> License: Subject to the terms of the MIT license, as written in the included LICENSE file. Authors: Arne Ludwig <arne.ludwig@posteo.de> */ module dalicious.algorithm.searching; import std.algor...
D
/** Convert CSV formatted data to TSV format. This program converts comma-separated value data to tab-separated format. Copyright (c) 2016-2017, eBay Software Foundation Initially written by Jon Degenhardt License: Boost Licence 1.0 (http://boost.org/LICENSE_1_0.txt) */ import std.stdio; import std.format : format;...
D
/Users/cejuca/Desktop/First/build/Build/Intermediates.noindex/First.build/Debug-iphonesimulator/First.build/Objects-normal/x86_64/ViewController.o : /Users/cejuca/Desktop/First/First/AppDelegate.swift /Users/cejuca/Desktop/First/First/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefau...
D
version https://git-lfs.github.com/spec/v1 oid sha256:329f711bd13a3e9b7d51683f1ff54643ae394ada90be9555777270b6640a31d8 size 683
D
/Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Response/ResponseCodable.swift.o : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/FileIO.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/va...
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
/** * ... * * Copyright: Copyright Benjamin Thaut 2010 - 2013. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Benjamin Thaut, Sean Kelly * Source: $(DRUNTIMESRC core/sys/windows/_stacktrace.d...
D
instance BDT_1047_Bandit_L (Npc_Default) { // ------ NSC ------ name = NAME_BANDIT; guild = GIL_BDT; id = 1047; voice = 10; flags = 0; npctype = NPCTYPE_AMBIENT; //--------Aivars----------- aivar[AIV_EnemyOverride] = TRUE; // ------ Attribute ------ B_SetAttributesToChapter (self...
D
/** * The runtime module exposes information specific to the D runtime code. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Authors: Sean Kelly * Source: $(LINK2 https://github.com/dlang/druntime/blob/master/src/core/runtime.d,...
D
/Users/lucasfarah/Documents/lucasfarah.github.io/.build/x86_64-apple-macosx/debug/Publish.build/Internal/FileIOError.swift.o : /Users/lucasfarah/Documents/lucasfarah.github.io/.build/checkouts/publish/Sources/Publish/API/PodcastEpisodeMetadata.swift /Users/lucasfarah/Documents/lucasfarah.github.io/.build/checkouts/publ...
D
module test.http.router.handler.chain; import hunt.http.$; import hunt.http.client.http2.SimpleResponse; import hunt.web.server.HttpServerBuilder; import hunt.http.utils.concurrent.Promise; import hunt.util.Assert; import hunt.util.Test; import test.http.router.handler.AbstractHttpHandlerTest; import java.util.concur...
D
func void b_bartok_shitanorc() { AI_Output(self,other,"DIA_Bartok_Angekommen_04_02"); //(себе под нос) Орк прямо у ворот города - Черт побери... };
D
module deimos.cbor.streaming; import deimos.cbor.callbacks; import deimos.cbor.data; /* * Copyright (c) 2014-2019 Pavel Kalvoda <me@pavelkalvoda.com> * * libcbor is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. */ extern (C): /** Stateles...
D
cmd_Release/obj.target/snowball.node := g++ -shared -pthread -rdynamic -m64 -Wl,-soname=snowball.node -o Release/obj.target/snowball.node -Wl,--start-group Release/obj.target/snowball/src/snowball.o Release/obj.target/snowball/src/NativeExtension.o Release/obj.target/snowball/src/libstemmer/libstemmer/libstemmer.o Rel...
D
/Users/nolan/Desktop/ZT/HYMusic/MTAVPlayerView/build/MTAVPlayerView.build/Debug-iphoneos/MTAVPlayerView.build/Objects-normal/armv7s/MTAVPlayerDownload.o : /Users/nolan/Desktop/ZT/HYMusic/MTAVPlayerView/MTAVPlayerView/MTAVPlayerDownload.swift /Users/nolan/Desktop/ZT/HYMusic/MTAVPlayerView/MTAVPlayerView/MTAVPlayerStorag...
D
prototype MST_DEFAULT_DRAGON_ICE(C_NPC) { name[0] = "Ledový drak"; guild = GIL_DRAGON; aivar[AIV_MM_REAL_ID] = ID_DRAGON_ICE; level = 600; bodystateinterruptableoverride = TRUE; attribute[ATR_STRENGTH] = 200; attribute[ATR_DEXTERITY] = 200; attribute[ATR_HITPOINTS_MAX] = 1000; attribute[ATR_HITPOINTS] = 1000;...
D
module std.internal.unicode_norm; import std.internal.unicode_tables; static if (size_t.sizeof == 8) { //1696 bytes enum nfcQCTrieEntries = TrieEntry!(bool, 8, 5, 8)([0x0, 0x20, 0x60], [0x100, 0x100, 0x1d00], [0x302020202020100, 0x205020202020204, 0x602020202020202, 0x2020202020...
D
module armos.graphics.image; import armos.graphics; import armos.math; /++ 画像のファイルフォーマットを表します +/ enum ImageFormat{ BMP = 0, ICO = 1, JPEG = 2, JNG = 3, KOALA = 4, LBM = 5, IFF = LBM, MNG = 6, PBM = 7, PBMRAW = 8, PCD = 9, PCX ...
D
/******************************************************************************* Simple client for testing neo requests. copyright: Copyright (c) 2017 sociomantic labs GmbH. All rights reserved License: Boost Software License Version 1.0. See LICENSE.txt for details. ********************...
D
module android.java.android.app.usage.StorageStatsManager_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.java.util.UUID_d_interface; import import4 = android.java.java.lang.Cla...
D
/Users/sergio.orozco/Documents/RWPickFlavor/DerivedData/RWPickFlavor/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/NetworkReachabilityManager.o : /Users/sergio.orozco/Documents/RWPickFlavor/Pods/Alamofire/Source/MultipartFormData.swift /Users/sergio.orozco/Documents/...
D
module mruby.hash; import mruby.mrb_class; import mruby.object; import mruby.variable; import mruby.value; import mruby; extern (C): struct kh_ht; struct RHash { enum mrb_vtype { MRB_TT_FALSE = 0, MRB_TT_FREE = 1, MRB_TT_TRUE = 2, MRB_TT_FIXNUM = 3, MRB_TT_SYMBOL = 4, MRB_TT_UNDEF = 5, MRB_TT_FLOAT ...
D
/******************************************************************************* * Copyright (c) 2005, 2007 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, an...
D
import std.stdio; class DGC { char[] data; this(){ data = new char[2000]; } } void load_memory (){ DGC[100000] l; foreach(i; 0..(l.length) ){ auto d = new DGC(); l[i] = d; destroy(d); } } void load_obj(){ auto d = new DGC(); } void main() { // load_me...
D
import std.string; alias pos = sizediff_t; alias Cell delegate(pos) GetCell; alias void delegate(Cell, pos) SetCell; enum Cell { Unknown, // Must be initial value. Fill, Empty } class Position { immutable pos x; immutable pos y; this(pos x, pos y) { this.x = x; this.y = y; } publ...
D
/Users/sales/Documents/XCTestDemo/build/UIKitCatalog.build/Debug-iphoneos/UIKitCatalog.build/Objects-normal/arm64/PickerViewController.o : /Users/sales/Documents/XCTestDemo/UIKitCatalog/UIColor+ApplicationSpecific.swift /Users/sales/Documents/XCTestDemo/UIKitCatalog/AppDelegate.swift /Users/sales/Documents/XCTestDemo/U...
D
import std.stdio; import std.typecons; import pegged.grammar; mixin("enum GLSL_WIP = `" ~ import("GLSL_WIP.peg") ~ "`;"); mixin(grammar(GLSL_WIP)); alias Tuple!(string[], "tree", bool, "expected") TestCaseInfo; // identifier unittest { writeln("Running Identifier cases..."); TestCaseInfo[string] cases = ...
D
/******************************************************************************* @file UnicodeFile.d Copyright (c) 2004 Kris Bell This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for damages ...
D
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.build/Terminal/ANSI.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/console/Sources/Console/Terminal/ANSI.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/console/Sources...
D
module hunt.imf.ConnectionEventBaseHandler; import hunt.net; import hunt.imf.ConnectBase; class ConnectionEventBaseHandler : ConnectionEventHandler { alias ConnCallBack = void delegate( ConnectBase connection); alias MsgCallBack = void delegate(Connection connection ,Object message); override void co...
D
<?xml version="1.0" encoding="ASCII" standalone="no"?> <di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0"> <pageList> <availablePage> <emfPageIdentifier href="VAR_All_agm-221514...
D
// auto-generated HCL2 simulator; DO NOT EDIT THIS FILE /+++++++++++++++++ generated from the following HCL: ++++++++++++++++++ ###################### begin builtin signals ########################## ### constants: const STAT_BUB = 0b000, STAT_AOK = 0b001, STAT_HLT = 0b010; # expected behavior const STAT_ADR = 0b011...
D
/** * Authors: Steve Teale - steve.teale@britseyeview.com * * Date: 2007/05/19 * History: V0.1 * License: Use freely for any purpose. * * This is an example of a service built on class ServiceImplementation. */ module bevutils.beepservice; import std.stdio; import std.c.windows.windows; import bev...
D
module ddoc_template; import std.stdio; import iz.memory; import dparse.ast, dparse.lexer, dparse.parser, dparse.rollback_allocator; /** * Finds the declaration at caretLine and write its ddoc template * in the standard output. */ void getDdocTemplate(const(Module) mod, int caretLine, bool plusComment)...
D
// Written in the D programming language. /** This module implements the formatting functionality for strings and I/O. It's comparable to C99's `vsprintf()` and uses a similar _format encoding scheme. For an introductory look at $(B std._format)'s capabilities and how to use this module see the dedicat...
D
module dwinbar.widgets.battery; import dwinbar.backend.dbus; import dwinbar.widget; import dwinbar.bar; import std.algorithm; import std.array; import std.conv; import std.datetime.stopwatch; import std.exception; import std.file; import std.math; import std.path; import std.range; import std.stdio; import std.typeco...
D
/Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/target/debug/deps/scopeguard-e2b5b8c524eef9e8.rmeta: /Users/pacmac/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs /Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/ta...
D
/** * Windows API header module * * Translated from MinGW API for MS-Windows 3.10 * * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_winbase.d) */ module core.sys.windows.winbase; version (Windows): version (ANSI) {} else version = Unicode...
D
the federal department responsible for maintaining a national energy policy of the United States mature female of mammals of which the male is called `buck'
D
/Users/trietnguyen/Documents/Blockchain Development/NEAR SEPTEMBER/NEAR-Hackathon/smart-cert/contract/target/debug/build/num-rational-b4f27f3b820a70d7/build_script_build-b4f27f3b820a70d7: /Users/trietnguyen/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.3.2/build.rs /Users/trietnguyen/Documents/Blockch...
D
// Copyright © 2016, Bernard Helyer. All rights reserved. // See copyright notice in src/volt/license.d (BOOST ver. 1.0). module volt.semantic.folder; import volt.semantic.evaluate : foldBinOp, foldUnary; import volt.interfaces : Pass; import volt.visitor.visitor : accept, NullVisitor; import ir = volt.ir.ir; clas...
D
import std.stdio; void main() { writeln("THTSim, by Kadin Tucker"); writeln("Visual display yet to come"); }
D
/Users/angelasmith/Desktop/SourceTree/Develop2/FareDeal/Build/Intermediates/IBDesignables/Intermediates/FareDeal.build/Debug-iphonesimulator/FareDeal.build/Objects-normal/x86_64/InitialScreenVC.o : /Users/angelasmith/Desktop/SourceTree/Develop2/FareDeal/FareDeal/RestaurantDealsVC.swift /Users/angelasmith/Desktop/Source...
D
/Users/xiaohongwei/projects/for_offer/target/debug/deps/thread_local-bae6ac9bf5379b25.rmeta: /Users/xiaohongwei/.cargo/registry/src/mirrors.ustc.edu.cn-b63e9dae659fc205/thread_local-1.0.1/src/lib.rs /Users/xiaohongwei/.cargo/registry/src/mirrors.ustc.edu.cn-b63e9dae659fc205/thread_local-1.0.1/src/thread_id.rs /Users/xi...
D
/* TEST_OUTPUT: --- fail_compilation/fail315.d-mixin-17(17): Error: found `;` when expecting `,` fail_compilation/fail315.d-mixin-17(17): Error: expression expected, not `}` fail_compilation/fail315.d-mixin-17(17): Error: found `End of File` when expecting `,` fail_compilation/fail315.d-mixin-17(17): Error: found `End ...
D
instance DIA_DRAGON_GOLD_EXIT(C_Info) { npc = none_103_dragon_gold; nr = 999; condition = dia_dragon_gold_exit_condition; information = dia_dragon_gold_exit_info; permanent = TRUE; description = Dialog_Ende; }; func int dia_dragon_gold_exit_condition() { return TRUE; }; func void dia_dragon_gold_exit_info() ...
D
/********************************************************* Copyright: (C) 2008 by Steven Schveighoffer. All rights reserved License: $(LICENSE) **********************************************************/ module col.model.Iterator; enum : бцел { /** * Возвращается из длина(), когда lengt...
D
void main() { runSolver(); } void problem() { auto N = scan!int; auto A = scan!int; auto WXV = scan!int(3 * N).chunks(3).array; struct Fish { int value; real x, v; void sim(real t) { x += t * v; } } auto solve() { auto fishes = WXV.map!(f => Fish(f[0], f[1], f[2])).array; ...
D
(* * magic - this is a D1 program that checks the 'magic' * quality of a series of numbers *) program check_for_magic; var N: integer; Odd: boolean; terms: byte; i: integer; procedure NextTerm; procedure CheckOdd; begin if (N mod 2 = 0) then odd :...
D
instance VLK_502_Buddler (Npc_Default) { //-------- primary data -------- name = Name_Buddler; npctype = npctype_Ambient; guild = GIL_VLK; level = 2; voice = 4; id = 502; //-------- abilities -------- ...
D
/** * Generate $(LINK2 https://dlang.org/dmd-windows.html#interface-files, D interface files). * * Also used to convert AST nodes to D code in general, e.g. for error messages or `printf` debugging. * * Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved * Authors: $(L...
D
import std.stdio; import std.process : execute; int main(string[] args) { writefln("Executing init test - fail"); auto script = args[0] ~ ".sh"; auto dubInit = execute(script); return dubInit.status; }
D
/* TEST_OUTPUT: --- fail_compilation/fail12604.d(14): Error: mismatched array lengths, 1 and 3 fail_compilation/fail12604.d(15): Error: mismatched array lengths, 1 and 3 fail_compilation/fail12604.d(17): Error: mismatched array lengths, 1 and 3 fail_compilation/fail12604.d(18): Error: mismatched array lengths, 1 and 3 ...
D
/Users/christopherdugan/rust_projects/pong/target/debug/build/winapi-570ee04b6ea1f687/build_script_build-570ee04b6ea1f687: /Users/christopherdugan/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.7/build.rs /Users/christopherdugan/rust_projects/pong/target/debug/build/winapi-570ee04b6ea1f687/build_script_bui...
D
/* Copyright © 2020, Luna Nielsen Distributed under the 2-Clause BSD License, see LICENSE file. Authors: Luna Nielsen */ module game.tiles.mahjong; import game.tiles; import engine; import game; import std.conv : text; /** Width of tile (A2 in cm) */ enum MahjongTileWidth = 0.26; /** Height o...
D
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al. SPDX-License-Identifier: curl Short: # Long: progress-bar Help: Display transfer progress as a bar Category: verbose Example: -# -O $URL Added: 5.10 See-also: styled-output Multi: boolean --- Make curl display transfer progress as a simp...
D
module tpl.weakref; /****************************************************************************** Генерная СлабаяСсылка ******************************************************************************/ alias СлабаяСсылка!(Объект) СлабУк; class СлабаяСсылка (T : Объект) { public alias ...
D
module dpk.dflags; import std.algorithm, std.array, std.getopt, std.string, std.conv; import std.stdio; struct DFlags { this(string[] args, string[] defaults=null) { string[] scan = defaults; Lagain: foreach(arg; scan) { switch (arg) { case "-d...
D
/** Contains routines for high level path handling. 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.core.path; import std.algorithm : canFind, min; import std.array; import std.conv; im...
D
/** * Written in the D programming language. * Module initialization routines. * * Copyright: Copyright Digital Mars 2000 - 2013. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Walter Bright, Se...
D
// PERMUTE_ARGS: /* TEST_OUTPUT: --- fail_compilation/diag10768.d(36): Error: cannot implicitly override base class method diag10768.Frop.frop with diag10768.Foo.frop; add 'override' attribute --- */ struct CirBuff(T) { import std.traits: isArray; CirBuff!T opAssign(R)(R) if (isArray!R) {} T[] toArray...
D
module godot.staticbody2d; import std.meta : AliasSeq, staticIndexOf; import std.traits : Unqual; import godot.d.meta; import godot.core; import godot.c; import godot.d.bind; import godot.object; import godot.classdb; import godot.physicsbody2d; @GodotBaseClass struct StaticBody2D { static immutable string _GODOT_inte...
D
/home/wayne/workspace/rust-projects/guess_game/target/debug/deps/rand-471273aa7956b9af.rmeta: /home/wayne/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.23/src/lib.rs /home/wayne/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.23/src/distributions/mod.rs /home/wayne/.cargo/registry/src/github.com-1ec...
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
# FIXED mqttsn-transport/transport.obj: ../mqttsn-transport/transport.c mqttsn-transport/transport.obj: ../mqttsn-transport/transport.h mqttsn-transport/transport.obj: C:/ti/simplelink_cc13x0_sdk_1_50_00_08/source/ti/drivers/UART.h mqttsn-transport/transport.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/includ...
D
/Users/lb/Documents/Project/LearnVapor/.build/x86_64-apple-macosx10.10/debug/NIOHTTP1.build/HTTPTypes.swift.o : /Users/lb/Documents/Project/LearnVapor/.build/checkouts/swift-nio.git-8756902686293799568/Sources/NIOHTTP1/HTTPPipelineSetup.swift /Users/lb/Documents/Project/LearnVapor/.build/checkouts/swift-nio.git-8756902...
D
instance DIA_Bronko_EXIT(C_Info) { npc = BAU_935_Bronko; nr = 999; condition = DIA_Bronko_EXIT_Condition; information = DIA_Bronko_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Bronko_EXIT_Condition() { return TRUE; }; func void DIA_Bronko_EXIT_Info() { AI_StopProcessInfos(self); }...
D
/******************************************************************************* * Copyright (c) 2007, 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, an...
D
//Гоблин Шаман prototype Mst_Default_Gobbo_MAG(C_Npc) { name[0] = "Гоблин - Шаман"; guild = GIL_GOBBO; aivar[AIV_MM_REAL_ID] = ID_GOBBO_MAGE; level = 9; B_DS_SetMst_Attribute(cMst_Default_Gobbo_MAG); protection[PROT_BLUNT] = 60; protection[PROT_EDGE] = 60; protection[PROT_POINT] = 60; protection[PROT_FIRE] = ...
D
import std.algorithm; import std.file; import std.path; import std.range; import std.stdio; import std.string; // Скрипт ходит по папкам и считает количество строк в исходниках // самым тупым образом int sutableStringsCount(T)( T range ) { return range .map!(a => a.strip!() ) // выкидываем пробелы .filter!( a ...
D
/******************************************* * NSC benutzt Kochkessel * *******************************************/ FUNC VOID ZS_MineBellows () { //PrintDebugNpc (PD_TA_FRAME,"ZS_MineBellows"); B_SetPerception (self); if (!C_BodyStateContains(self, BS_MOBINTERACT_INTERRUPT)) { AI_SetWalkmod...
D
module UnrealScript.UnrealEd.InterpTrackLinearColorPropHelper; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.UnrealEd.InterpTrackVectorPropHelper; extern(C++) interface InterpTrackLinearColorPropHelper : InterpTrackVectorPropHelper { public extern(D): private static __gshared Script...
D
/Users/ThiagoBevi/Dev-iOS/Marvel/Build/Intermediates/Pods.build/Debug-iphonesimulator/Quick.build/Objects-normal/x86_64/NSBundle+CurrentTestBundle.o : /Users/ThiagoBevi/Dev-iOS/Marvel/Pods/Quick/Sources/Quick/DSL/World+DSL.swift /Users/ThiagoBevi/Dev-iOS/Marvel/Pods/Quick/Sources/Quick/DSL/DSL.swift /Users/ThiagoBevi/D...
D
/Users/lanussebaptiste/Desktop/NSURLSessionDownload/Build/Intermediates/NSURLSessionDownload.build/Debug-iphoneos/NSURLSessionDownload.build/Objects-normal/arm64/ViewController.o : /Users/lanussebaptiste/Desktop/NSURLSessionDownload/NSURLSessionDownload/ViewController.swift /Users/lanussebaptiste/Desktop/NSURLSessionDo...
D
module pebble.grect; import pebble.gpoint; @nogc: nothrow: /** * Represents a rectangle and defining it using the origin of * the upper-lefthand corner and its size. */ struct GRect { GPoint origin; GSize size; /// Create a rectangle with an origin and a size. @nogc @safe pure nothrow this(GP...
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, an...
D
/home/bahroz/Desktop/11-usart/target/debug/build/typenum-33bd231a262037b9/build_script_main-33bd231a262037b9: /home/bahroz/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/main.rs /home/bahroz/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/op.rs /home/bahroz/Desktop/11-usart/t...
D
/** This module contains the core functionality of the vibe.d framework. See `runApplication` for the main entry point for typical vibe.d server or GUI applications. Copyright: © 2012-2016 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Author...
D
// Written in the D programming language. /** Standard I/O functions that extend $(B core.stdc.stdio). $(B core.stdc.stdio) is $(D_PARAM public)ally imported when importing $(B std.stdio). Source: $(PHOBOSSRC std/_stdio.d) Macros: WIKI=Phobos/StdStdio Copyright: Copyright Digital Mars 2007-. License: $(WEB boost...
D
module android.java.android.media.browse.MediaBrowser_MediaItem; public import android.java.android.media.browse.MediaBrowser_MediaItem_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!MediaBrowser_MediaItem; import import2 = android.java.java.lang.Class;
D
// https://bugzilla.gdcproject.org/show_bug.cgi?id=67 // { dg-additional-options "-mavx" { target avx_runtime } } // { dg-do compile { target { avx_runtime || vect_sizes_16B_8B } } } __vector(float[4])[2] d; // ICE
D
instance PAL_212_Schiffswache(Npc_Default) { name[0] = NAME_Schiffswache; guild = GIL_PAL; id = 212; voice = 8; flags = NPC_FLAG_IMMORTAL; npcType = npctype_main; B_SetAttributesToChapter(self,6); fight_tactic = FAI_NAILED; EquipItem(self,ItMw_2h_Pal_Sword); B_CreateAmbientInv(self); B_SetNpcVisual(self,MAL...
D
/** * Dlang vulkan function pointer prototypes, declarations and loader from vkGetInstanceProcAddr * * Copyright: Copyright 2015-2016 The Khronos Group Inc.; Copyright 2016 Alex Parrill, Peter Particle. * License: $(https://opensource.org/licenses/MIT, MIT License). * Authors: Copyright 2016 Alex Parrill, Peter ...
D
/Users/jennielee/Documents/PSU 2020-2021/SPRING2021/CS510/yew-tutorial/target/wasm32-unknown-unknown/release/deps/itoa-a16b6896f8a3e0bf.rmeta: /Users/jennielee/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.7/src/lib.rs /Users/jennielee/Documents/PSU 2020-2021/SPRING2021/CS510/yew-tutorial/target/wasm32-unkn...
D
/home/tuan/rust_projects/iron-gcd/target/debug/build/httparse-a9a7ec16f694f23c/build_script_build-a9a7ec16f694f23c: /home/tuan/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.5/build.rs /home/tuan/rust_projects/iron-gcd/target/debug/build/httparse-a9a7ec16f694f23c/build_script_build-a9a7ec16f694f23c.d: /h...
D
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al. SPDX-License-Identifier: curl Long: socks4a Arg: <host[:port]> Help: SOCKS4a proxy on given host + port Added: 7.18.0 Category: proxy Example: --socks4a hostname:4096 $URL See-also: socks4 socks5 socks5-hostname Multi: single --- Use the...
D
/* Copyright (c) 2014-2021 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, dist...
D
.source T_if_gtz_9.java .class public dot.junit.opcodes.if_gtz.d.T_if_gtz_9 .super java/lang/Object .method public <init>()V .limit regs 1 invoke-direct {v0}, java/lang/Object/<init>()V return-void .end method .method public run(I)Z .limit regs 6 if-gtz v5, Label8 const/4 v0, 0 r...
D
/Users/konstafer/ITMO-FILES/Watermark/DerivedData/Watermark-cqwfdathjgcaeadrqbaafokwyrkl/Build/Intermediates.noindex/Watermark.build/Debug/Watermark.build/Objects-normal/x86_64/ViewController.o : /Users/konstafer/ITMO-FILES/Watermark/Watermark/AppDelegate.swift /Users/konstafer/ITMO-FILES/Watermark/Watermark/ViewContro...
D
module UnrealScript.Engine.UIDataStore_OnlineGameSettings; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.OnlineGameSettings; import UnrealScript.Engine.LocalPlayer; import UnrealScript.Engine.UIDataStore_Settings; import UnrealScript.Engine.UIDataProvider_Settings; import Unreal...
D
var int Scatty_ItemsGiven_Chapter_1; var int Scatty_ItemsGiven_Chapter_2; var int Scatty_ItemsGiven_Chapter_3; var int Scatty_ItemsGiven_Chapter_4; var int Scatty_ItemsGiven_Chapter_5; FUNC VOID B_GiveTradeInv_Addon_Scatty (var C_NPC slf) { if ((Kapitel >= 1) && (Scatty_ItemsGiven_Chapter_1 == FALSE)) { //Special...
D