code
stringlengths
3
10M
language
stringclasses
31 values
/home/dapx/Sources/rust/nannou-sketches/rayquad5/target/rls/debug/build/syn-9f3b445f34db0cda/build_script_build-9f3b445f34db0cda: /home/dapx/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.42/build.rs /home/dapx/Sources/rust/nannou-sketches/rayquad5/target/rls/debug/build/syn-9f3b445f34db0cda/build_script_buil...
D
module unit_threaded.ut.should; import unit_threaded.should; import unit_threaded.asserts; private void assertFail(E)(lazy E expression, in string file = __FILE__, in size_t line = __LINE__) { import std.exception: assertThrown; assertThrown!UnitTestException(expression, null, file, line); } @safe pure unit...
D
module app; import dtext; import space.engine; import space.log.log; import space.states.introstate; import std.math; import std.getopt; import std.stdio; int main(string[] args){ FloatingPointControl fpctrl; fpctrl.enableExceptions(FloatingPointControl.severeExceptions); string locale = "en_US"; getopt(args, "la...
D
/** * D header file for C99. * * Copyright: Copyright Digital Mars 2000 - 2009. * License: Distributed under the * <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License 1.0</a>. * (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) * Authors: Walter Bright, H...
D
/** * 微信摇一摇周边-申请开通功能 * * */ module hunt.wechat.bean.shakearound.account.register; public import hunt.wechat.bean.shakearound.account.register.AccountRegister; public import hunt.wechat.bean.shakearound.account.register.AccountRegisterResult;
D
const int SPL_Cost_PalDestroyEvil = 60; const int SPL_Damage_PalDestroyEvil = 600; instance Spell_PalDestroyEvil(C_Spell_Proto) { time_per_mana = 0; damage_per_level = SPL_Damage_PalDestroyEvil; spellType = SPELL_NEUTRAL; }; func int Spell_Logic_PalDestroyEvil(var int manaInvested) { if(c_UnblessedCursedSpell() =...
D
// PERMUTE_ARGS: -fPIC /* Test associative arrays */ extern(C) int printf(const char*, ...); extern(C) int memcmp(const void *s1, const void *s2, size_t n); import core.memory; // for GC.collect import std.random; // for uniform random numbers /************************************************/ int[char[]] namet...
D
/** This is the main interface for the dopt CUDA backend. The APIs in this module allow users to evaluate operation graphs on GPUs through the use of CUDA. There is also functionality to register CUDA implementations of custom operations. In future, this module will also have an interface allowing the...
D
/* * The MIT License (MIT) * * Copyright (c) 2014 Devisualization (Richard Andrew Cattermole) * * 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 restriction, including without ...
D
import std.stdio, std.conv, std.file, std.utf; import ext.opengl.gl, ext.sdl.sdl; struct Map{ int x,y; string data[float][float][float]; }
D
/** Module implements I/O mechanisms for image, video and various file formats. Copyright: Copyright Relja Ljubobratovic 2016. Authors: Relja Ljubobratovic License: $(LINK3 http://www.boost.org/LICENSE_1_0.txt, Boost Software License - Version 1.0). */ module dcv.imageio; public import dcv.imageio.image; /* TODO:...
D
// Copyright Ferdinand Majerech 2011-2014. // Copyright Cameron Ross 2016. // 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 wyaml.tests.inputoutput; unittest { import std.ar...
D
module armos.math.matrix; import armos.math; /++ 行列を表すstructです. +/ struct Matrix(T, int RowSize, int ColSize)if(__traits(isArithmetic, T) && RowSize > 0 && ColSize > 0){ alias Matrix!(T, RowSize, ColSize) MatrixType; alias armos.math.Vector!(T, ColSize) VectorType; alias elementType = T; unit...
D
// Generated by gnome-h2d.rb <http://github.com/ddude/gnome.d>. module gio.dataoutputstream; /* GIO - GLib Input, Output and Streaming Library * * Copyright (C) 2006-2007 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public ...
D
//イベント処理 module rpgengine.event; import rpgengine.render; import derelict.sdl2.sdl; import std.experimental.logger; class Event{ private: Renderer renderer; bool running; public: void init(Renderer renderer_){ running = true; renderer = renderer_; } bool isRunning() { return running; } ...
D
module mach.types.tuple.tuple; private: import mach.meta : Any, All, Contains, IndexOf; import mach.types.types : Types, isTypes; import mach.traits : AsUnaryOp, isUnaryOpPlural, AsBinaryOp, isBinaryOpPlural; import mach.traits : canCastPlural, canHash, hash, isTemplateOf, isCallable; public: template isTuple(T.....
D
prototype Npc_Default(C_Npc) { attribute[ATR_STRENGTH] = 10; aivar[REAL_STRENGTH] = 10; attribute[ATR_DEXTERITY] = 10; aivar[REAL_DEXTERITY] = 10; attribute[ATR_MANA_MAX] = 10; aivar[REAL_MANA_MAX] = 10; attribute[ATR_MANA] = 10; attribute[ATR_HITPOINTS_MAX] = 40; attribute[ATR_HITPOINTS] = 40; HitChance[NPC...
D
$(OBJDIR)/cilint.cmi:
D
/** * Authors: The D DBI project * * Version: 0.2.5 * * Copyright: BSD license */ module dbi.Row; version(Rulada) { debug (UnitTest) private static import std.io; } else { debug (UnitTest) private static import io.Stdout; } private import dbi.DBIException; /** * Доступ к одиночной ...
D
class person{ string name; int age; } person p2; void f() { Print(glob); glob = glob * glob; } int main() { glob = 4; f(); Print(glob); Print(p2 == p); p = new person; Print(p2 == null); p.name = "saba"; print_name(p); } int glob; person p; void print_name(person a) { Pr...
D
/Users/YusukeAbe/code/rust/random-sample/target/debug/build/memchr-e00b96f7315c9437/build_script_build-e00b96f7315c9437: /Users/YusukeAbe/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.2.1/build.rs /Users/YusukeAbe/code/rust/random-sample/target/debug/build/memchr-e00b96f7315c9437/build_script_build-e00b96f7...
D
/++ $(H1 Interpolation Algorithms) $(BOOKTABLE $(H2 Interpolation modules), $(TR $(TH Module) $(TH Interpolation kind)) $(T2M spline, Cubic Spline Interpolant) $(T2M pchip, Piecewise Cubic Hermite Interpolating Polynomial) $(T2M linear, Linear Interpolant) $(T2M constant, Constant Interpolant) ) Copyright: Copyright ...
D
// Written in the D programming language /++ $(SCRIPT inhibitQuickIndex = 1;) $(BOOKTABLE, $(TR $(TH Category) $(TH Functions)) $(TR $(TD Main date types) $(TD $(LREF Date) $(LREF DateTime) )) $(TR $(TD Other date types) $(TD $(LREF Month) $(LREF DayOfWeek) $(LREF TimeOfDay) )) $(TR $(TD Date check...
D
a thin porridge (usually oatmeal or cornmeal)
D
instance DIA_Valentino_EXIT(C_Info) { npc = VLK_421_Valentino; nr = 999; condition = DIA_Valentino_EXIT_Condition; information = DIA_Valentino_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Valentino_EXIT_Condition() { return TRUE; }; func void DIA_Valentino_EXIT_Info() { AI_StopPro...
D
/** Copyright: Copyright (c) 2018, Joakim Brännström. All rights reserved. License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) Author: Joakim Brännström (joakim.brannstrom@gmx.com) */ module app; enum Name { perf_join, perf_parallel_join, perf_antijoin, perf_map, } int m...
D
module gui.window; import animation.timeline; import core.time; import core.visitor; import derelict.sdl2.sdl; import graphics; import gui.event; import gui.keycode; import gui.style; import gui.widget; import math; import std.range; import core.signals; import std.stdio; import std.typecons; enum MouseCursor { arr...
D
/++ A small extension module to [arsd.minigui] that adds functions for creating widgets and windows from short XML descriptions. If you choose to use this, it will require [arsd.dom] to be compiled into your project too. --- import arsd.minigui_xml; Window window = createWindowFromXml(` <MainWindow> <But...
D
// Written in the D programming language. /** This module contains tree widgets implementation TreeWidgetBase - abstract tree widget TreeWidget - Tree widget with items which can have icons and labels Synopsis: ---- import dlangui.widgets.tree; // tree view example TreeWidget tree = new TreeWidget("TREE1"); tr...
D
instance SLD_704_Blade(Npc_Default) { name[0] = "Kosa"; npcType = npctype_ambient; guild = GIL_SLD; level = 18; voice = 11; id = 704; attribute[ATR_STRENGTH] = 90; attribute[ATR_DEXTERITY] = 70; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 256; attribute[ATR_HITPOINT...
D
// Copyright Mario Kröplin 2013. // 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 dunit.diff; import std.algorithm; import std.range; import std.typecons; /** * Returns a descriptio...
D
/*#D*/ // Copyright © 2012, Jakob Bornecrantz. All rights reserved. // See copyright notice in src/volt/license.d (BOOST ver. 1.0). module volt.semantic.mangle; import watt.conv : toString; import watt.text.format : format; import watt.text.sink : Sink, StringSink; import ir = volta.ir; import volt.ir.util; import ...
D
module test.codec.websocket.encode.GeneratorTest; import hunt.http.codec.websocket.decode.Parser; import hunt.http.codec.websocket.encode; import hunt.http.codec.websocket.frame; import hunt.http.codec.websocket.model.CloseInfo; import hunt.http.codec.websocket.model.common; import hunt.http.codec.websocket.model.Stat...
D
/Users/mordi/Desktop/xCode/MissMystique/Build/Intermediates/MissMystique.build/Debug-iphoneos/MissMystique.build/Objects-normal/armv7/statViewController.o : /Users/mordi/Desktop/xCode/MissMystique/MissMystique/statisticsViewController.swift /Users/mordi/Desktop/xCode/MissMystique/MissMystique/scanViewController.swift /...
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 * distributed...
D
import std.stdio; void main(){ int a = 0x1f; }
D
/** * lua.lib.actor.d * tower * April 29, 2013 * Brandon Surmanski */ module lua.lib.libactor; import std.string; import std.stdio; import c.lua; import gl.glb.glb; import lua.api; import lua.luah; import entity.entity; import entity.actor; import lua.lib.libentity; immutable Api libactor = { "Actor", ...
D
module striped.address; import striped.object; struct StripeAddress { mixin StripeObject!(UNTYPED_OBJECT); mixin field!(string, "city"); mixin field!(string, "country"); mixin field!(string, "line1"); mixin field!(string, "line2"); mixin field!(string, "postalCode", "postal_code"); mixin ...
D
// REQUIRED_ARGS: -m32 /* TEST_OUTPUT: --- fail_compilation/diag9635.d(17): Error: need `this` for `i` of type `int` fail_compilation/diag9635.d(18): Error: need `this` for `foo` of type `pure nothrow @nogc @safe void()` --- */ struct Foo { int i; void foo()() { } static void bar() { i = 4; ...
D
//***************************** // Orc Elite Prototype //***************************** PROTOTYPE Mst_Default_OrcElite(C_Npc) { //----- Monster ----- name = "Ork Elite"; guild = GIL_ORC; aivar[AIV_MM_REAL_ID] = ID_ORCELITE; voice = 18; level = 45; //----- Attribute ----- attri...
D
// Written in the D programming language. /** Bit-level manipulation facilities. Macros: WIKI = StdBitarray Copyright: Copyright Digital Mars 2007 - 2011. License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.org, Andrei Alexand...
D
/* * Licensed under the GNU Lesser General Public License Version 3 * * This library 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 3 of the license, or * (at your option) any late...
D
/******************************************************************************* DLS Node Server copyright: Copyright (c) 2017 sociomantic labs GmbH. All rights reserved License: Boost Software License Version 1.0. See LICENSE.txt for details. ********************************************...
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
// also in a project on Mac OS (joelcnz/projects/JReflex) module main; string collection; string output(in string str, bool write = false) { import std.stdio: writeln, jwrite = write; import std.file: append; if (! write) { writeln(str); collection ~= str ~ "\n"; return str ~ "\n"; } else { jwrite(str);...
D
module vulkan.vulkan; /** * Todo: * Try using this syntax for infos: * VkDescriptorPoolSize s = { * descriptorCount : 1 * }; * * If using dyanamic command buffers because of push constants: * If the push constants don't change every frame it might * be ...
D
instance MIL_350_Addon_Martin(Npc_Default) { name[0] = "Мартин"; guild = GIL_MIL; id = 350; voice = 7; flags = 0; npcType = NPCTYPE_MAIN; aivar[AIV_NPCIsRanger] = TRUE; aivar[AIV_NPCIsTrader] = TRUE; B_SetAttributesToChapter(self,3); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_Meisterdegen); B_Cr...
D
void main() { runSolver(); } void problem() { auto N = scan!int; auto M = scan!int; auto E = scan!int(3 * M).chunks(3).array; auto solve() { alias Edge = Tuple!(int, "id", int, "f", int, "t", long, "cost"); auto g = new Edge[][](N, 0); foreach(int i, e; E) { e[0]--; e[1]--; g[e[0]] ~= ...
D
# FIXED timer.obj: D:/BM1000/sw/drivers/timer/src/32b/f28x/f2806x/timer.c timer.obj: D:/BM1000/sw/drivers/timer/src/32b/f28x/f2806x/timer.h timer.obj: D:/BM1000/sw/modules/types/src/types.h timer.obj: C:/ti/ccsv6/tools/compiler/c2000_6.2.5/include/stdbool.h timer.obj: C:/ti/ccsv6/tools/compiler/c2000_6.2.5/include/yva...
D
/Users/pedro/Desktop/CloudData-chen/0724/CloudsAPP/DerivedData/CloudsAPP/Build/Intermediates/Alamofire.build/Debug-iphonesimulator/Alamofire\ iOS.build/Objects-normal/x86_64/Validation.o : /Users/pedro/Desktop/CloudData-chen/0724/CloudsAPP/Alamofire/Source/MultipartFormData.swift /Users/pedro/Desktop/CloudData-chen/072...
D
module digitalnet.implementation; import digitalnet.axiom; import std.traits, std.algorithm, std.array, std.range, std.typecons, std.random, std.exception, std.string; import std.conv : to; debug import std.stdio; /// alias LinearScramble = Tuple!(size_t[], size_t); static assert (isPointSet!(DigitalNet!uint)); stat...
D
module servlib.http.requestmod.HttpRequest; import std.outbuffer, std.conv; import servlib.http.request; /** Le methode utilise par la requete */ enum HttpMethod : string { OPTIONS = "OPTIONS", GET = "GET", HEAD = "HEAD", POST = "POST", PUT = "PUT", DELETE = "DELETE", TRACE = "TRACE", CONNECT = "CONNECT" ...
D
module stringex.replacements; static immutable string[][256] replacements = [ [ // 0x00 "\x00", "\x01", "\x02", "\x03", "\x04", "\x05", "\x06", "\a", "\x08", " ", "\n", "\v", "\f", "\r", "\x0e", "\x0f", "\x10", "\x11", "\x12", "\x13", "\x14", "\x15", "\x16", "\x17", "\x18", "\x19", "\x1a", "\x18", "\x1c", "\...
D
// ************ // ZS_Smalltalk_Piraten1 // ************ const int Smalltalk_Piraten1Freq = 4; func void ZS_Smalltalk_Piraten1 () { Perception_Set_Normal(); B_UseHat (self); B_ResetAll (self); if (self.aivar[AIV_Schwierigkeitsgrad] < Mod_Schwierigkeit) || (self.aivar[AIV_Schwierigkeitsgrad] > Mod_Schwieri...
D
INSTANCE Info_Mod_Daniel_Hi (C_INFO) { npc = Mod_7378_OUT_Daniel_REL; nr = 1; condition = Info_Mod_Daniel_Hi_Condition; information = Info_Mod_Daniel_Hi_Info; permanent = 0; important = 0; description = "Du bist ein Händler?"; }; FUNC INT Info_Mod_Daniel_Hi_Condition() { return 1; }; FUNC VOID Info_Mod_Dani...
D
//T compiles:yes //T retval:58 //T has-passed:yes int foo(int a) { if(a == 56 || a++) { a++; } if(a != 57 && a--) { a = 32; } if(a == 57 && a++) {} return a; } int main() { return foo(56); }
D
/******************************************************************************* Contains in-memory representation of Lightning Network topology Copyright: Copyright (c) 2019-2021 BOSAGORA Foundation All rights reserved. License: MIT License. See LICENSE for details. ************...
D
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIO.build/PendingDatagramWritesManager.swift.o : /Users/mu/Hello/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/mu/Hello/.build/checkouts/swift-nio/Sources/NIO/NonBlockingFileIO.swift /Users/mu/Hello/.build/checkouts/swift-nio/Sources/NIO/IOData.swift /Users/mu/H...
D
the part of the superior limb between the elbow and the wrist arm in advance of a confrontation
D
/Users/Amna/Desktop/gauntlet/target/debug/build/num-traits-675d62b3bd5b5a24/build_script_build-675d62b3bd5b5a24: /Users/Amna/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs /Users/Amna/Desktop/gauntlet/target/debug/build/num-traits-675d62b3bd5b5a24/build_script_build-675d62b3bd5b5a24.d: /Use...
D
/Users/Polina/XcodeApp/diplom_prj/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Take.o : /Users/Polina/XcodeApp/diplom_prj/CoreML_test/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Polina/XcodeApp/diplom_prj/CoreML_test/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Use...
D
module flag; import std.base64; import std.algorithm; import std.string; import std.conv; import std.traits; const string data = "FSEAr3pjq183nQD3K1p0AI9ZZQp1KmOTK2AfZJALsD=="; alias base64decode = Base64.decode; string get_flag(uint i) { if (i % 10_000 == 1337) { if ((i % 100_000_000) / 10_000 == 1337)...
D
/** * The thread module provides support for thread creation and management. * * Copyright: Copyright Sean Kelly 2005 - 2012. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Sean Kelly, Walter Bri...
D
instance Mod_7371_OUT_Richter_REL (Npc_Default) { // ------ NSC ------ name = "Richter"; guild = GIL_DMT; id = 7371; voice = 10; flags = 0; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 1); // ------ Kampf-Taktik ------...
D
// can't get it to work 3 Jan 2015 4:56pm // 3 Jan 2015 enum Light {OFF, ON}; class Lantern { int _num; Light _light; this(Light light) { _light = Light.OFF; } Light checkLight() { return _light; } void setLight(Light light) { _light = light; } auto getNum() { return _num; } void setNum(in...
D
/projects/IOS\ Learning/pokedex/Build/Intermediates/pokedex.build/Debug-iphonesimulator/pokedex.build/Objects-normal/x86_64/ViewController.o : /projects/IOS\ Learning/pokedex/pokedex/AppDelegate.swift /projects/IOS\ Learning/pokedex/pokedex/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/Xcod...
D
module treerender.render.shader; import bindbc.opengl; import std.exception; import std.experimental.allocator; import std.experimental.allocator.showcase; import std.file; import std.stdio; import std.string; GLuint loadShaders(string vertexFile, string fragmentFile) { StackFront!65536 stackAllocator; auto vert...
D
/* To Dos: * More work on input.d [ ] * Add resize and save photos that are too big to fit in the display [ ] */ //#Note: args[ 0 .. $ ] gets all, args[ 1 .. 3 ] gets 1, & 2 //#Note immutable I think is for concurrancy(sp) //#doesn't draw strait onto bmp //#Split isn't clear this way ("foo bar".split), I think //#dl...
D
// D import file generated from 'src\core\sync\rwmutex.d' module core.sync.rwmutex; public import core.sync.exception; private import core.sync.condition; private import core.sync.mutex; private import core.memory; version (Win32) { private import core.sys.windows.windows; } else { version (Posi...
D
/** Copyright: Copyright (c) 2020, Joakim Brännström. All rights reserved. License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) Author: Joakim Brännström (joakim.brannstrom@gmx.com) A PID regulator and low pass filter. # Theory Velocity PID controller from the Laplace transform U(s) / E...
D
/home/neil/Bureau/ftr_voter/target/release/deps/block_padding-9ca50f885b58224c.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.2.1/src/lib.rs /home/neil/Bureau/ftr_voter/target/release/deps/libblock_padding-9ca50f885b58224c.rlib: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/block-...
D
/++ $(H1 Index-series) The module contains $(LREF Series) data structure with special iteration and indexing methods. It is aimed to construct index or time-series using Mir and Phobos algorithms. Public_imports: $(MREF mir,ndslice,slice). Copyright: Copyright © 2017, Kaleidic Associates Advisory Limited Authors: ...
D
func void B_AssessGuidePlayer() { if(Npc_GetDistToNpc(self,hero) > 800) { if(Npc_GetDistToWP(self,self.wp) < Npc_GetDistToWP(hero,self.wp)) { Npc_ClearAIQueue(self); AI_Standup(self); B_TurnToNpc(self,hero); }; if((Npc_GetDistToNpc(self,hero) > 1200) && (self.aivar[AIV_EnemyOverride] == TRUE) && (Np...
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_12_BeT-4985114...
D
/Users/Dominik/Documents/Programmieren/Libraries/DYModalNavigationController/DYModalNavigationControllerExample/Build/Intermediates.noindex/DYModalNavigationController.build/Release-iphonesimulator/DYModalNavigationController.build/Objects-normal/x86_64/DYModalNavigationController.o : /Users/Dominik/Documents/Programmi...
D
/home/iut/M3101/target/debug/deps/priorityqueues-329b8020abdf15f0: structures/src/bin/priorityqueues.rs /home/iut/M3101/target/debug/deps/priorityqueues-329b8020abdf15f0.d: structures/src/bin/priorityqueues.rs structures/src/bin/priorityqueues.rs:
D
instance DIA_Elena_EXIT(C_Info) { npc = BAU_911_Elena; nr = 999; condition = DIA_Elena_EXIT_Condition; information = DIA_Elena_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Elena_EXIT_Condition() { return TRUE; }; func void DIA_Elena_EXIT_Info() { AI_StopProcessInfos(self); }; in...
D
module html5.elements.tabular; import html5; class TableElement : Html5Element!("table"){ mixin(ElementConstructorTemplate!()); mixin(AttributeTemplate!(typeof(this), "border")); mixin(AttributeTemplate!(typeof(this), "sortable")); } class CaptionElement : Html5Element!("caption"){ mixin(ElementConstructorTempla...
D
/Users/zwelithinimathebula/Documents/Project/Yookos/build/Yookos.build/Release-iphoneos/Yookos.build/Objects-normal/arm64/OnBoardingTableVIew.o : /Users/zwelithinimathebula/Documents/Project/Yookos/Yookos/ViewController.swift /Users/zwelithinimathebula/Documents/Project/Yookos/Yookos/ExtentionsMethods.swift /Users/zwel...
D
/home/xearch/Desktop/rust_proj/newsstuffbutfromCLI/api/target/rls/debug/build/serde_derive-675cfff16792b56c/build_script_build-675cfff16792b56c: /home/xearch/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.130/build.rs /home/xearch/Desktop/rust_proj/newsstuffbutfromCLI/api/target/rls/debug/build/serde...
D
/Users/jacobkbluhm/Developer/iOS_Xcode/hello-api/.build/debug/CloudFoundryEnv.build/JSONUtils.swift.o : /Users/jacobkbluhm/Developer/iOS_Xcode/hello-api/Packages/CloudFoundryEnv-2.0.3/Sources/CloudFoundryEnv/App.swift /Users/jacobkbluhm/Developer/iOS_Xcode/hello-api/Packages/CloudFoundryEnv-2.0.3/Sources/CloudFoundryEn...
D
module dub.version_; enum dubVersion = "v1.25.0";
D
module android.java.android.text.style.LeadingMarginSpan_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import2 = android.java.java.lang.CharSequence_d_interface; import import4 = android.java.java.l...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; void main() { auto nk = readln.split.to!(int[]); auto N = nk[0]; auto K = nk[1]; double[] ps; foreach (_; 0..N) ps ~= readln.chomp.to!double; auto DP = new double[][][](N+1, K+1, K+1); fo...
D
/** * A file reader based on the actor threads of D to just send lines to your receiver as * quickly as it's available. * * Examples: * * --- * bool run = false; * ThreadReader reader = ThreadReader(thisTid); * reader.tid.send("../data/testfile.txt"); // TODO: implement build directory variable * * do{ * ...
D
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); ...
D
instance VLK_4106_DOBAR(NPC_DEFAULT) { name[0] = "Добар"; guild = GIL_MIL; id = 4106; voice = 8; flags = 0; npctype = NPCTYPE_OCMAIN; b_setattributestochapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,itmw_1h_vlk_axe); b_createambientinv(self); CreateInvItems(self,itmi_nugget,1); b_setnpcvis...
D
module sendero.time.internal.TimeZoneImpl; import tango.time.Time; import tango.time.Clock; import tango.time.chrono.Gregorian; public import sendero.time.data.ZoneInfo; debug import tango.io.Stdout; void trc(T...)(char[] str, T t) { Stdout.formatln(str, t); } uint[char[]] zoneCache; bool getTZIdxByName(char[] na...
D
metal device shaped in such a way that when it is inserted into the appropriate lock the lock's mechanism can be rotated something crucial for explaining pitch of the voice any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music a kilogram of a narcotic drug a winged often one-see...
D
/Users/joshblatt/Projects/learning-casper/task1/contract/target/wasm32-unknown-unknown/release/deps/hmac-77a1a5b9a2542a20.rmeta: /Users/joshblatt/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.10.1/src/lib.rs /Users/joshblatt/Projects/learning-casper/task1/contract/target/wasm32-unknown-unknown/release/deps/li...
D
/Users/matsumur/Dropbox/Working/tekupico7(acm)/DerivedData/てくPico/Build/Intermediates/てくPico.build/Debug-iphoneos/てくPico.build/Objects-normal/armv7/Someaction.o : /Users/matsumur/Dropbox/Working/tekupico7(acm)/wakapeko/AppDelegate.swift /Users/matsumur/Dropbox/Working/tekupico7(acm)/wakapeko/TutorialViewController.swif...
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Routing.build/Parameter/Parameters.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/routing/Sources/Routing/Utilities/Deprecated.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkout...
D
instance VLK_562_Buddler (Npc_Default) { //-------- primary data -------- name = Name_Buddler; npctype = npctype_mine_ambient; guild = GIL_NONE; level = 9; voice = 2; id = 562; //-------- abilities -------- attribute[ATR_STRENGTH] = 80; attribute[ATR_DEXTERIT...
D
/** * AnyTris' entry point is here. * * License: $(LINK2 http://opensource.org/licenses/zlib-license, Zlib License). * * Authors: Leandro Motta Barros */ import fewdee.all; import anytris.constants; import anytris.input; import anytris.resources; import anytris.title_screen_state; void main() { al_run_alleg...
D
/home/leon/rust/rust_tutorial/projects/gui/target/rls/debug/deps/gui-fd9b6b8ef16feecb.rmeta: src/main.rs /home/leon/rust/rust_tutorial/projects/gui/target/rls/debug/deps/gui-fd9b6b8ef16feecb.d: src/main.rs src/main.rs:
D
/swift-project/.build-ubuntu/x86_64-unknown-linux/release/CredentialsHTTP.build/CredentialsHTTPBasic.swift.o : /swift-project/.build-ubuntu/checkouts/Kitura-CredentialsHTTP.git--1059086216428736389/Sources/CredentialsHTTP/TypeSafeHTTPBasic.swift /swift-project/.build-ubuntu/checkouts/Kitura-CredentialsHTTP.git--1059086...
D
an absence of emotion or enthusiasm the trait of lacking enthusiasm for or interest in things generally
D
/Users/mac/Documents/admin_panel_responsive/flutter-ui-panel-dashboard/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o : /Users/mac/Documents/admin_panel_responsive/flutter-ui-panel-dashboard/macos/Runner/AppDelegate.swift /Users/mac/Documents/ad...
D
/Users/Ashley/Desktop/Bandsintown/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Notifications.o : /Users/Ashley/Desktop/Bandsintown/Pods/Alamofire/Source/MultipartFormData.swift /Users/Ashley/Desktop/Bandsintown/Pods/Alamofire/Source/Timeline.swift /Users/Ashley/Desktop/Band...
D
module rdm.graphics.primatives; interface Drawable { void draw(double delta); } interface Projector { import rdm.math.matrix : Matrix4f; Matrix4f getMatrix(); } abstract class Drawable3D : Drawable { import rdm.graphics.transform; Transform transform; this() { transform = new T...
D