code
stringlengths
3
10M
language
stringclasses
31 values
/* * Hunt - A refined core library for D programming language. * * Copyright (C) 2018-2019 HuntLabs * * Website: https://www.huntlabs.net/ * * Licensed under the Apache-2.0 License. * */ module hunt.Byte; import hunt.Nullable; import hunt.Number; import std.conv; /** * * The {@code By...
D
an authoritative rule a statute enacted by a city government the act of ordaining
D
/Users/thendral/POC/vapor/Friends/.build/debug/Core.build/Byte/BytesConvertible.swift.o : /Users/thendral/POC/vapor/Friends/Packages/Core-1.1.1/Sources/Core/Array.swift /Users/thendral/POC/vapor/Friends/Packages/Core-1.1.1/Sources/Core/Bool+String.swift /Users/thendral/POC/vapor/Friends/Packages/Core-1.1.1/Sources/Core...
D
/******************************************************************************* * Copyright (c) 2000, 2009 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
module dcgen.dcgmethod; import defines; import dcgvartype; import tango.io.Stdout; import tango.text.convert.Format; import Util = tango.text.Util; import dcgprocess; import functiontype; // This has to be global due to a bug in the compiler private enum MethodType { GLOBAL, METHOD, CONSTRUCTOR, DESTRUCTOR } cla...
D
///* 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 or agreed to in writing, software ...
D
// URL: https://atcoder.jp/contests/abc044/tasks/abc044_b import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r...
D
module api.interfaces.miscapi; import api.requestinterface.common; import api.requestMetadata; struct PingResponse { long timestamp; } interface MiscAPI { // Update Profile (General User) @method(HTTPMethod.GET) @before!getRequestInfo("requestInfo") @property PingResponse ping(RequestInfo requestInfo) @safe;...
D
instance DMT_1298_DARKMAGE(Npc_Default) { name[0] = "Hoshkar, nekromant"; guild = GIL_DMT; id = 1298; level = 300; voice = 9; flags = 0; npcType = npctype_main; attribute[ATR_STRENGTH] = 2000; attribute[ATR_DEXTERITY] = 2000; attribute[ATR_MANA] = 1000; attribute[ATR_MANA_MAX] = 1000; attribute[ATR_HITPOIN...
D
/* -------------------- CZ CHANGELOG -------------------- */ /* v1.00: instance DIA_TALBIN_RECRUITDT - zamezení možnosti poslat Talbina do tábora (kvůli úpravám úkolů Noví lovci (TOPIC_NewHunters) a Lidé pro tábor (TOPIC_PPL_FOR_TOWER)) */ instance DIA_Talbin_NW_EXIT(C_Info) { npc = VLK_4132_Talbin_NW; nr = 9...
D
import rubyffi; import std.stdio : writeln; import std.string : toStringz; import std.conv : to; mixin rubyffi!__MODULE__; export extern(C) { int a = 99; @Ruby int add(int a, int b) { return a + b; } @Ruby void hello(cstr name) { ("Hello " ~ name.to!string).writeln; } @Ruby...
D
instance SLD_810_DAR(NPC_DEFAULT) { name[0] = "Дар"; guild = GIL_SLD; id = 810; voice = 3; flags = 0; npctype = NPCTYPE_MAIN; aivar[AIV_TOUGHGUYNEWSOVERRIDE] = TRUE; b_setattributestochapter(self,1); fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,itmw_1h_sld_sword); EquipItem(self,itrw_sld_bow); b_createa...
D
module bindbc.kw.button; import bindbc.kw.widget; import bindbc.kw.rect; version(BindKiwi_Static){ extern (C) @nogc nothrow{ KW_Widget * KW_CreateButton(KW_GUI * gui, KW_Widget * parent, KW_Widget * label, const KW_Rect * geometry); KW_Widget * KW_CreateButtonAndLabel(KW_GUI * gui, KW_Widget * par...
D
module core.transform; import core.types; import math.funcs; struct Transform { vec3 scaling = vec3(1.0f, 1.0f, 1.0f); vec3 position = vec3(0.0f, 0.0f, 0.0f); quat rotation = quat.identity; // mat4 getMatrix() const { return mat4.translation(position) * cast(mat4)rotation * mat4.scali...
D
instance Mod_13050_SP_Seelenpeiniger_OM (Npc_Default) { //-------- primary data -------- name = "Seelenpeiniger"; npctype = npctype_main; guild = GIL_DMT; level = 25; voice = 5; id = 13050; flags = NPC_FLAG_GHOST; //-------- abilities -------- attribute[ATR_STRENGTH] = 100; attribut...
D
// D import file generated from 'gamelib\loader.d' module gamelib.loader; import gamelib.all; import mylib.yaml; abstract class Loader { bool _dxarchive_enable; string _ext; string _pass; this(bool dxarchive_enable, string ext, string pass) { this._dxarchive_enable = dxarchive_enable; this._ext = ext; t...
D
(biology) an organism that has characteristics resulting from chromosomal alteration an animal that has undergone mutation tending to undergo or resulting from mutation
D
/* * Copyright (C) 2019, HuntLabs * * 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 or agreed to in...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; void get(Args...)(ref Args args) { import std.traits, std.meta, std.typecons; static if (Args.length == 1) { alias Arg = Args[0]; static if (isArray!Arg) { ...
D
module libxlsxd.chartsheet; import libxlsxd.xlsxwrap; struct Chartsheet { import libxlsxd.chart; import std.exception : enforce; import std.string : toStringz; lxw_chartsheet* handle; this(lxw_chartsheet* handle) @nogc nothrow pure @safe { this.handle = handle; } void setChart(Chart c) @trusted { enforc...
D
#!/usr/bin/env rdmd /** * D testing tool. * * This module implements the test runner for all tests except `unit`. * * The general procedure is: * * 1. Parse the environment variables (`processEnvironment`) * 2. Extract test parameters from the source file (`gatherTestParameters`) * [3. Compile non-D sources ...
D
module android.java.android.telephony.mbms.FileInfo_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import2 = android.java.java.lang.Class_d_interface; import import0 = android.java.android.os.Parcel_...
D
module build; /* Build tool to build all samples or individual samples. */ import core.thread : Thread, dur; import std.algorithm; import std.array; import std.exception; import std.stdio; import std.string; import std.path; import std.file; import std.process; import std.parallelism; enum curdir = "."; alias s...
D
module example.calc.CalcParserBase; import enkilib.d.Parser; import Float = tango.text.convert.Float; public class CalcParserBase: Parser!(char){ /** Enki hook for parsing a number. Uses Tango's Float parser to do the real work. */ double value_Number; bool parse_Number(){ uint ate = 0; ...
D
// Copyright © 2011-2013, Jakob Bornecrantz. All rights reserved. // See copyright notice in src/charge/charge.d (GPLv2 only). /** * Source file for SceneManagerApp base classes. */ module charge.game.scene.app; import lib.sdl.sdl : SDL_Delay; import charge.core : CoreOptions; import charge.util.vector : Vector; ...
D
// Written in the D programming language /* Copyright (C) 2004-2011 Christopher E. Miller 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 documentatio...
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
/Users/harry/Desktop/sportsUp/Build/Intermediates/sportsUp.build/Debug-iphonesimulator/sportsUp.build/Objects-normal/x86_64/NewEventRequestModel.o : /Users/harry/Desktop/sportsUp/sportsUp/AppDelegate.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailResponseModel.swift /Users/harry/Desktop/sportsUp/sportsU...
D
prototype Mst_Default_Zombie(C_Npc) { name[0] = "Зомби"; guild = GIL_ZOMBIE; aivar[AIV_MM_REAL_ID] = ID_ZOMBIE; level = 20; attribute[ATR_STRENGTH] = 100; attribute[ATR_DEXTERITY] = 100; attribute[ATR_HITPOINTS_MAX] = 400; attribute[ATR_HITPOINTS] = 400; attribute[ATR_MANA_MAX] = 100; attribute[ATR_MANA] = 1...
D
10 00 * * * /sbin/shutdown -r now 20 00 * * * /sbin/iwconfig wlan0 power off
D
INSTANCE Info_Mod_Scatty_Hi (C_INFO) { npc = Mod_962_STT_Scatty_MT; nr = 1; condition = Info_Mod_Scatty_Hi_Condition; information = Info_Mod_Scatty_Hi_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Scatty_Hi_Condition() { return 1; }; FUNC VOID Info_Mod_Scatty_Hi_Info() { AI_Output(self, hero, "In...
D
module mci.vm.memory.finalization; import core.thread, mci.core.atomic, mci.core.common, mci.core.container, mci.core.sync, mci.core.code.functions, mci.vm.exception, mci.vm.execution, mci.vm.intrinsics.declarations, mci.vm.memory.base; public void finali...
D
module hunt.wechat.api.ShorturlAPI; import hunt.text.Charset; //import org.apache.http.client.methods.HttpUriRequest; //import org.apache.http.client.methods.RequestBuilder; //import org.apache.http.entity.StringEntity; import hunt.wechat.bean.shorturl.Shorturl; import hunt.wechat.client.LocalHttpClient; /** * 长链接...
D
//---------------------------------------------------------------------- // Copyright 2014-2019 Coverify Systems Technology // Copyright 2010-2011 Paradigm Works // Copyright 2010-2011 Mentor Graphics Corporation // Copyright 2015 Analog Devices, Inc. // Copyright 2017 Intel Corporation // Copyright 2010-2014 Synopsys,...
D
/* * Copyright 2020 Google LLC * Copyright 2022 Coverify Systems Technology * * 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 * * U...
D
/// module std.experimental.allocator.building_blocks.scoped_allocator; import std.experimental.allocator.common; /** $(D ScopedAllocator) delegates all allocation requests to $(D ParentAllocator). When destroyed, the $(D ScopedAllocator) object automatically calls $(D deallocate) for all memory allocated through it...
D
module tracewizard.ui.logpanel; import dlangui; class LogPanel : DockWindow { this(string id) { super(id); _showCloseButton = false; dockAlignment = DockAlignment.Bottom; } override protected Widget createBodyWidget() { return new LogWidget(); } }
D
/******************************************************************************* * Copyright (c) 2000, 2005 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
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.build/OptionalType.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/core/Sources/Core/Nested...
D
/** * Contains druntime startup and shutdown routines. * * Copyright: Copyright Digital Mars 2000 - 2018. * 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, Sean Kelly * Source: $(DRU...
D
/** * Configuration enums/variables for different targets * * Compiler implementation of the * $(LINK2 https://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1985-1998 by Symantec * Copyright (C) 2000-2022 by The D Language Foundation, All Rights Reserved * Authors: $(LI...
D
import std.stdio, std.math; import std.bigint; BigInt Root(int val){ BigInt ans; BigInt num = BigInt(val); BigInt calc=num; BIgInt x; foreach(int i; 0..5){ int i; for(i=0; (x+BigInt(i))*i < calc; i++){ }; //reload ans ans = (ans*10) + (2*...
D
/Users/jessicavilaysak/Desktop/Shuffli\ 2/Build/Intermediates/IBDesignables/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FontAwesome.swift.build/Objects-normal/x86_64/Enum.o : /Users/jessicavilaysak/Desktop/Shuffli\ 2/Pods/FontAwesome.swift/FontAwesome/FontAwesome.swift /Users/jessicavilaysak/Desktop/Shuffli\...
D
/* * Copyright (C) 2017 Julien Viet * * 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 or a...
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
/** * JSON lexer. * Authors: Brian Schott * Standards: $(LINK2 http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf, ECMA-404) */ module jsonlexer; import std.file; import std.algorithm; import stdx.lexer; import std.stdio; // JSON is pretty simple. These are the only fixed-representation to...
D
module std.database.front; import std.experimental.logger; import std.database.exception; import std.datetime; import std.typecons; import std.database.common; import std.database.pool; import std.database.resolver; import std.database.source; import std.database.allocator; import std.traits; import std.container.arr...
D
/Users/pavlosnicolaou/Documents/workshop/Kitura/KituraWebInterface/KituraWebInterface_Starter/.build/x86_64-apple-macosx10.10/debug/Kitura.build/RouterMiddlewareWalker.swift.o : /Users/pavlosnicolaou/Documents/workshop/Kitura/KituraWebInterface/KituraWebInterface_Starter/.build/checkouts/Kitura.git-2993072347418016799/...
D
// ************************************************************************* // EXIT // ************************************************************************* INSTANCE DIA_Dragon_Rock_Exit(C_INFO) { nr = 999; condition = DIA_Dragon_Rock_Exit_Condition; information = DIA_Dragon_Rock_Exit_Info; perman...
D
/Users/abuzeid/workspace/DevPods/.build/x86_64-apple-macosx/debug/DevExtensions.build/UICollectionView+Cell.swift.o : /Users/abuzeid/workspace/DevPods/DevExtensions/UIViewController+Nib.swift /Users/abuzeid/workspace/DevPods/DevExtensions/UIColor+DarkMode.swift /Users/abuzeid/workspace/DevPods/DevExtensions/Disposable....
D
void main() { problem(); } void problem() { auto A = scan; void solve() { writeln(A.all!(a => A[0] == a) ? "Won" : "Lost"); } solve(); } // ---------------------------------------------- import std.stdio, std.conv, std.array, std.string, std.algorithm, std.container, std.range, core.stdc.stdlib, std....
D
/* TEST_OUTPUT: --- fail_compilation/lexer1.d(30): Deprecation: Built-in hex string literals are deprecated, use `std.conv.hexString` instead. fail_compilation/lexer1.d(30): Error: declaration expected, not `x"01 02 03"w` fail_compilation/lexer1.d(31): Error: declaration expected, not `2147483649U` fail_compilation/lex...
D
/Users/usuario/Desktop/Adrian/GeofencesSwift/DerivedData/GeofencesSwift/Build/Intermediates.noindex/GeofencesSwift.build/Debug-iphonesimulator/GeofencesSwift.build/Objects-normal/x86_64/Coordinate.o : /Users/usuario/Desktop/Adrian/GeofencesSwift/GeofencesSwift/AppDelegate.swift /Users/usuario/Desktop/Adrian/GeofencesSw...
D
module android.java.android.widget.TabHost_TabSpec_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import5 = android.java.android.content.Intent_d_interface; import import1 = android.java.java.lang.Ch...
D
module hunt.net.Exceptions; import hunt.Exceptions; import std.exception; import std.conv; class SSLException : IOException { mixin basicExceptionCtors; } class SSLHandshakeException : SSLException { mixin basicExceptionCtors; } class SSLPeerUnverifiedException : SSLException { mixin basicExceptionCtor...
D
module UnrealScript.UTGame.UTGib_Vehicle; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.UTGame.UTGib; import UnrealScript.Engine.SoundCue; import UnrealScript.Engine.ParticleSystem; import UnrealScript.Engine.MaterialInstanceTimeVarying; extern(C++) interface UTGib_Vehicle : UTGib {...
D
int foo(int arg) in { assert(arg > 0); } out (result) {assert(result == 0);} do { return 0; } int bar(int arg) in ( arg > 0 ) out(; true) out/*Major*/ ( /*Tom*/ result /*To ground control*/; result==0) { return 0; }
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/license...
D
module pgator.sql_transaction; import pgator.rpc_table; import pgator.app; import vibe.db.postgresql; struct TransactionQueryParams { QueryParams[] queryParams; AuthorizationCredentials auth; } struct SQLTransaction { private LockedConnection!__Conn conn; private bool isCommitDone = false; @disa...
D
/* * Example ported from ex_dir.c in the core Allegro5 project. */ import std.stdio; import std.string; import std.datetime; import allegro5.allegro; import common; pragma(lib, "dallegro5"); pragma(lib, "allegro"); static void print_file(ALLEGRO_FS_ENTRY *entry) { auto mode = al_get_fs_entry_mode(entry); aut...
D
/Users/renatomatos/Documents/Dev/iOS/CommandLineSample/DerivedData/CommandLineSample/Build/Intermediates/CommandLineSample.build/Debug/CommandLineSample.build/Objects-normal/x86_64/Parser.o : /Users/renatomatos/Documents/Dev/iOS/CommandLineSample/CommandLineSample/Utils/Saida.swift /Users/renatomatos/Documents/Dev/iOS/...
D
module dgt.platform.xcb; version(linux): import core.stdc.stdlib : free; import core.sys.posix.poll : pollfd; import dgt.context; import dgt.gfx.geometry; import dgt.input.keys; import dgt.input.mouse; import dgt.platform; import dgt.platform.event; import dgt.platform.xcb.context; import dgt.platform.xcb.keyboard; ...
D
/Users/Avinash/Documents/Code/Guru/Guru/DerivedData/Guru/Build/Intermediates/Guru.build/Debug-iphonesimulator/Guru.build/Objects-normal/x86_64/GuruManager.o : /Users/Avinash/Documents/Code/Guru/Guru/Guru/Model/GuruManager.swift /Users/Avinash/Documents/Code/Guru/Guru/Guru/Controllers/DemoPopupViewController2.swift /Use...
D
/mnt/c/Users/zeliwang/hello_world/digital_signature/target/debug/deps/rand-bd689669164ab5e2.rmeta: /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/lib.rs /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/mod.rs /home/zeliwang/.car...
D
/* 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 or agreed to in writing, software * distribut...
D
/***********************************************************************\ * winsvc.d * * * * Windows API header module * * ...
D
instance BDT_1087_Addon_Bandit(Npc_Default) { name[0] = NAME_Bandit; guild = GIL_BDT; id = 1087; voice = 1; flags = 0; npcType = NPCTYPE_TAL_AMBIENT; B_SetAttributesToChapter(self,3); fight_tactic = FAI_HUMAN_NORMAL; EquipItem(self,ItMw_1h_Mil_Sword); B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE,"Hum_...
D
/** * Takes a token stream from the lexer, and parses it into an abstract syntax tree. * * Specification: $(LINK2 https://dlang.org/spec/grammar.html, D Grammar) * * Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bri...
D
/Users/hauyadav/Learn/nysample/NYTSample/Build/Build/Intermediates.noindex/NYTSample.build/Debug-iphonesimulator/NYTSample.build/Objects-normal/x86_64/Bindable.o : /Users/hauyadav/Learn/nysample/NYTSample/NYTSample/Util/JSON.swift /Users/hauyadav/Learn/nysample/NYTSample/NYTSample/Model/MediaMetadata.swift /Users/hauya...
D
instance DIA_Addon_Lucia_EXIT(C_Info) { npc = BDT_1091_Addon_Lucia; nr = 999; condition = DIA_Addon_Lucia_EXIT_Condition; information = DIA_Addon_Lucia_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Lucia_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Lucia_EXIT_Info() ...
D
/Users/alexbennett/projects/rock_paper_scissors/target/rls/debug/deps/rock_paper_scissors-4b690b46ba576527.rmeta: src/main.rs /Users/alexbennett/projects/rock_paper_scissors/target/rls/debug/deps/rock_paper_scissors-4b690b46ba576527.d: src/main.rs src/main.rs:
D
/** * D Documentation Generator * Copyright: © 2014 Economic Modeling Specialists, Intl., © 2015 Ferdinand Majerech * Authors: Brian Schott, Ferdinand Majerech * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt Boost License 1.0) */ /// std.allocator-compatible memory allocator. module allocator; public imp...
D
/Users/Rroks/MBSolution/Phra/DerivedData/PhraseBook/Build/Intermediates/PhraseBook.build/Debug-iphonesimulator/PhraseBook.build/Objects-normal/x86_64/tagViewer.o : /Users/Rroks/MBSolution/Phra/PhraseBook/EditWordPairViewController.swift /Users/Rroks/MBSolution/Phra/PhraseBook/TagView.swift /Users/Rroks/MBSolution/Phra/...
D
/++ Fast BetterC Date type with Boost ABI and mangling compatability. $(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE, $(TR $(TH Category) $(TH Functions)) $(TR $(TD Main date types) $(TD $(LREF Date) $(LREF YearMonth) $(LREF YearQuarter) )) $(TR $(TD Other date types) $(TD $(LREF Month...
D
/Users/pvdklei/Desktop/Code/create-build/playground/target/debug/build/rayon-0b629841154339c0/build_script_build-0b629841154339c0: /Users/pvdklei/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.4.1/build.rs /Users/pvdklei/Desktop/Code/create-build/playground/target/debug/build/rayon-0b629841154339c0/build_scri...
D
REPLACE_ACTION_TEXT ubmerch ~StartStore("\(%tutu_var%[Ss][Tt][Oo]4901\)",LastTalkedToBy(\(Myself\)?))~ ~StartStore("%tutu_var%sto4907",LastTalkedToBy())~
D
instance DIA_JORGEN_LI_KAP3_EXIT(C_Info) { npc = vlk_4250_jorgen_li; nr = 999; condition = dia_jorgen_li_kap3_exit_condition; information = dia_jorgen_li_kap3_exit_info; permanent = TRUE; description = Dialog_Ende; }; func int dia_jorgen_li_kap3_exit_condition() { return TRUE; }; func void dia_jorgen_li_kap3...
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_0_BeT-81173891...
D
/home/hustccc/OS_Tutorial_Summer_of_Code/rCore_Labs/Lab5/os/target/rls/riscv64imac-unknown-none-elf/debug/deps/bare_metal-7775936b9fd5c2d5.rmeta: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bare-metal-0.2.5/src/lib.rs /home/hustccc/OS_Tutorial_Summer_of_Code/rCore_Labs/Lab5/os/target/rls/ris...
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
a water enema given to flush out the colon of or relating to the colon
D
INSTANCE Recept_ItFo_Potion_HP_1_temp(Recept_Proto) { name = "Recepta"; mainflag = ITEM_KAT_DOCS; makingmob = R_LAB_PSI; product_amount = 1; product = ItFo_Potion_HP_1_temp; needitm[0] = ItFo_Plants_mushroom_02; needitm_amount[0] =1;//Gorzki chleb[9] needitm[1] = ItFo_Plants_Herb_02; needi...
D
instance DIA_Jack_EXIT(C_Info) { npc = VLK_444_Jack; nr = 999; condition = DIA_Jack_EXIT_Condition; information = DIA_Jack_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Jack_EXIT_Condition() { if(Kapitel < 3) { return TRUE; }; }; func void DIA_Jack_EXIT_Info() { AI_StopProcessI...
D
/** * Authors: Szabo Bogdan <szabobogdan@yahoo.com> * Date: 11 18, 2014 * License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. * Copyright: Public Domain */ module app; import std.stdio; void main() { writeln("OK"); }
D
/** Provides the vibe.d API and a default main() function for the application. Applications that import 'vibe.d' will have most of the vibe API available and will be provided with an implicit application entry point (main). The resulting application parses command line parameters and reads the global vibe.d c...
D
/** * TypeInfo support code. * * Copyright: Copyright Digital Mars 2004 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright */ /* Copyright Digital Mars 2004 - 2009. * Distributed under the Boost Software License, Version 1.0. * (See...
D
/** * * /home/tomas/workspace/mqtt-d/source/mqttd/traits.d * * Author: * Tomáš Chaloupka <chalucha@gmail.com> * * Copyright (c) 2015 Tomáš Chaloupka * * Boost Software License 1.0 (BSL-1.0) * * Permission is hereby granted, free of charge, to any person or organization obtaining a copy * of the softwa...
D
/* Blendish - Blender 2.5 UI based theming functions for NanoVega Copyright (c) 2014 Leonard Ritter <leonard.ritter@duangle.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restrictio...
D
# FIXED F2837xS_SysCtrl.obj: C:/ayush2_nigam4/repo/trunk/lab3/v140/F2837xS_common/source/F2837xS_SysCtrl.c F2837xS_SysCtrl.obj: C:/ayush2_nigam4/repo/trunk/lab3/v140/F2837xS_headers/include/F2837xS_device.h F2837xS_SysCtrl.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/assert.h F2837xS_SysCtr...
D
/* TEST_OUTPUT: --- fail_compilation/fail158.d(17): Error: more initializers than fields (2) of S --- */ struct S { int i; int j = 3; } void main() { S s = S( 1, 5, 6 ); }
D
module serverlogic; import core.thread : Fiber; import std.stdio : writeln, writefln; import std.container : DList; import connection; import server; import packets; import gameboard; struct Player { ClientId clientId; uint numShips; uint score; } enum ActionType { // - no packet data, + with packet data /*-...
D
// URL: https://atcoder.jp/contests/abc146/tasks/abc146_b import std; version(unittest) {} else void main() { int N; io.getV(N); string S; io.getV(S); dchar[] T = new dchar[](S.length); foreach (i, Si; S) T[i] = (Si-'A'+N)%26+'A'; io.put(T); } auto io = IO!()(); import lib.io;
D
a sandwich
D
/******************************************************************************* * Файл генерирован автоматически с помощью либпроцессора Динрус * * Дата:18.1.2015 Время: 20 ч. 47 мин. ***********************************************************************...
D
/Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageTransition.o : /Users/hanykaram/Desktop/MVC/Pods/Kingfisher/Sources/String+MD5.swift /Users/hanykaram/Desktop/MVC/Pods/Kingfisher/Sources/Resource.swift /Users/hanykaram/...
D
a reference book containing an alphabetical list of words with information about them
D
import std.stdio; import std.exception; import std.conv; class DataTrie(T) { struct Item(T) { dchar character; bool leaf; T value; Item[] children; this(dchar character, bool leaf) { this.character = character; this.leaf = leaf; //this.c...
D
// https://issues.dlang.org/show_bug.cgi?id=21543 class B { Nullable!B data; alias data this; } void test1() { B b; Nullable!B n; } struct Nullable(T) { T payload; void opAssign()(T) { move(payload); } inout(T) get_() inout { return payload; } alias ...
D
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Turnstile.build/Core/Subject.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Turnstile-1.0.3/Sources/Turnstile/TurnstileError.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Turnstile-1.0.3/Sources/Turnstile...
D
module android.java.android.icu.text.Normalizer2_Mode; public import android.java.android.icu.text.Normalizer2_Mode_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!Normalizer2_Mode; import import2 = android.java.java.lang.Class; import import0 = android.java.android.icu.text.Normalizer2_Mode;
D