code
stringlengths
3
10M
language
stringclasses
31 values
/* D listener written by Christopher E. Miller This code is public domain. You may use it for any purpose. This code has no warranties and is provided 'as-is'. */ import std.conv, std.socket, std.stdio; int main(char[][] args) { ushort port; if (args.length >= 2) por...
D
an empire in southern Asia created by Cyrus the Great in the 6th century BC and destroyed by Alexander the Great in the 4th century BC a theocratic Islamic republic in the Middle East in western Asia
D
/** * Copyright: © 2012-2014 Anton Gushcha * License: Subject to the terms of the MIT license, as written in the included LICENSE file. * Authors: NCrashed <ncrashed@gmail.com>, * LeMarwin <lemarwin42@gmail.com>, * Nazgull09 <nazgull90@gmail.com> */ module devol.std.typevoid; import devo...
D
/Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/CollectionKit.build/Objects-normal/x86_64/UIView+CollectionKit.o : /Users/benormos/Desktop/MyFutureBox/Pods/CollectionKit/Sources/Other/CollectionReloadable.swift /Users/benormos/Desktop/MyFutureBox/Pods/CollectionKit/Sources/Extensions/Util.swi...
D
module vibe.core.stream; enum isInputStream(T) = __traits(compiles, { T s; ubyte[] buf; if (!s.empty) s.read(buf); if (s.leastSize > 0) s.read(buf); }); enum isOutputStream(T) = __traits(compiles, { T s; const(ubyte)[] buf; s.write(buf); });
D
/Users/sharmpi/Downloads/WeatherClient/Build/Intermediates/WeatherClient.build/Debug-iphoneos/WeatherClient.build/Objects-normal/armv7/WeatherView.o : /Users/sharmpi/Downloads/WeatherClient/WeatherClient/Utils/WeatherConstants.swift /Users/sharmpi/Downloads/WeatherClient/WeatherClient/View/WeatherView.swift /Users/shar...
D
/Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/SnapKit.build/Objects-normal/x86_64/ConstraintMaker.o : /Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift /Users/babaiholdin...
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, a...
D
import vibe.appmain; import vibe.core.file; import vibe.core.log; import vibe.core.path; import vibe.db.mongo.mongo; import vibe.http.fileserver; import vibe.http.router; import vibe.http.server; import std.exception; import std.algorithm.iteration : sum; import std.array; import std.conv : to; import std.digest.sha;...
D
# FIXED OSAL/osal.obj: C:/ti/simplelink/ble_sdk_2_02_00_31/src/components/osal/src/common/osal.c OSAL/osal.obj: C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/string.h OSAL/osal.obj: C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/linkage.h OSAL/osal.obj: C:/ti/simplelink/ble_sdk_2_02_00_31/src/components/osal/...
D
instance Mod_7354_VMG_Dever_TUG (Npc_Default) { // ------ NSC ------ name = "Dever"; guild = GIL_out; id = 7354; voice = 11; flags = 0; //NPC_FLAG_IMMORTAL oder 0 npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 5); //setzt Att...
D
characterized by the interdependence of living organisms in an environment of or relating to the science of ecology
D
/Users/TK/projects/Swift/NetworkViewer/Build/Intermediates/NetworkViewer.build/Debug-iphonesimulator/NetworkViewer.build/Objects-normal/x86_64/AppDelegate.o : /Users/TK/projects/Swift/NetworkViewer/NetworkViewer/AppDelegate.swift /Users/TK/projects/Swift/NetworkViewer/NetworkViewer/Network/ApiPath.swift /Users/TK/proje...
D
module shinoa.lang.Shinoa; public class Shinoa { private this() {} public static string getVersion() { return "0.1.7"; } }
D
// URL: https://atcoder.jp/contests/language-test-202001/tasks/abc085_c import std.algorithm, std.array, std.container, std.math, std.range, std.typecons, std.string; version(unittest) {} else void main() { int N, Y; io.getV(N, Y); Y /= 1000; foreach (i10; 0..N+1) foreach (i5; 0..N+1) { auto i1 = N-...
D
/* * Copyright 2010 Your Name <your@email.address> * All rights reserved. Distributed under the terms of the MIT license. */ import Be.Interface.Rect; import Be.Interface.Point; import tango.io.Stdout; int main() { BRect rect = new BRect(100, 100, 200, 200); rect.PrintToStream(); rect.InsetBy(new BPoint(...
D
// Written in the D programming language. /** Functions for starting and interacting with other processes, and for working with the current _process' execution environment. Process_handling: $(UL $(LI $(LREF spawnProcess) spawns a new _process, optionally assigning it an arbitrary set of standard input, outpu...
D
# FIXED HAL/Target/CC2650/Drivers/hal_trng_wrapper.obj: C:/ti2/simplelink_cc2640r2_sdk_3_20_00_21/source/ti/blestack/hal/src/target/_common/hal_trng_wrapper.c HAL/Target/CC2650/Drivers/hal_trng_wrapper.obj: C:/ti2/simplelink_cc2640r2_sdk_3_20_00_21/source/ti/devices/cc26x0r2/inc/hw_types.h HAL/Target/CC2650/Drivers/ha...
D
import core.memory; void main() { auto collections = GC.profileStats().numCollections; // loop until we trigger a collection for (;;) { cast(void)GC.malloc(100_000, GC.BlkAttr.NO_SCAN); if (GC.profileStats().numCollections == collections+1) break; } }
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_9_BeT-78842443...
D
/** A simple HTTP/1.1 client implementation. Copyright: © 2012-2014 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig, Jan Krüger */ module vibe.http.client; public import vibe.core.net; public import vibe.http.common; public...
D
module lexer.location_offset; import dmd.lexer : Lexer; import dmd.tokens : TOK; import dmd.errorsink; import support : afterEach; @afterEach deinitializeFrontend() { import dmd.frontend : deinitializeDMD; deinitializeDMD(); } @("first token in the source code") unittest { enum code = "token"; scop...
D
module it.cpp.templates; import it; @("simple") @safe unittest { shouldCompile( Cpp( q{ template<typename T> struct vector { public: T value; void push_back(); }; template<t...
D
module engine.thirdparty.mruby.variable; import engine.thirdparty.mruby; import engine.thirdparty.mruby.value; import engine.thirdparty.mruby.object; import engine.thirdparty.mruby.mrb_class; extern (C): struct global_variable { int counter; mrb_value* data; mrb_value function () getter; void function () setter;...
D
module mci.core.sync; import core.sync.condition, core.sync.mutex; /** * A $(D final) version of $(D core.sync.mutex.Mutex). Its only purpose is * to devirtualize all calls for performance. */ public final class Mutex : core.sync.mutex.Mutex { } /** * A $(D final) version of $(D core.sync.condition.Condit...
D
/Users/william/Projects/studySocial/studySocial/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/DispatchQueue+Alamofire.o : /Users/william/Projects/studySocial/studySocial/Pods/Alamofire/Source/MultipartFormData.swift /Users/william/Projects/studySocial/studySocial/Pods/Alamofire/Source/Tim...
D
// Copyright Brian Schott 2015. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) module dfmt.wrapping; import dparse.lexer; import dfmt.tokens; import dfmt.config; struct State { this(uint ...
D
/Users/zachspalding/Documents/Advent_of_Code/2017/AdventofCode2017/2017/day3/target/debug/deps/day3-64d5b1e5c86b9c3b: src/main.rs /Users/zachspalding/Documents/Advent_of_Code/2017/AdventofCode2017/2017/day3/target/debug/deps/day3-64d5b1e5c86b9c3b.d: src/main.rs src/main.rs:
D
(meteorology) rapid inward circulation of air masses about a low pressure center a violent rotating windstorm
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 * distrib...
D
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/FluentProvider.build/Filterable/FilterableKey+String.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/fluent-provider.git-1502561075136423204/Sources/FluentProvider/Node+Row+JSON.swift /Users/AleixDiaz/De...
D
/Users/macbook/Desktop/BookFarm/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Runtime.o : /Users/macbook/Desktop/BookFarm/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/macbook/Desktop/BookFarm/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/macbook/Desktop/BookFarm/Pods...
D
/orange_pro/swift_dev/Fanplan/.build/debug/PerfectLib.build/MimeReader.swift.o : /orange_pro/swift_dev/Fanplan/Packages/PerfectLib-0.32.0/Sources/PerfectLib/Utilities.swift /orange_pro/swift_dev/Fanplan/Packages/PerfectLib-0.32.0/Sources/PerfectLib/FastCGIServer.swift /orange_pro/swift_dev/Fanplan/Packages/PerfectLib-0...
D
/// This module defines one texture type for each sort of OpenGL texture. module gfmod.opengl.texture; import std.string; import derelict.opengl3.gl3; import /*gfmod.core.log,*/ gfmod.opengl.opengl, gfmod.opengl.textureunit; /// OpenGL Texture wrapper. /// /// TODO: /// $(UL /// $(LI Support part...
D
/* * hunt-proton: AMQP Protocol library for D programming language. * * Copyright (C) 2018-2019 HuntLabs * * Website: https://www.huntlabs.net/ * * Licensed under the Apache-2.0 License. * */ module hunt.proton.amqp.messaging.Target; import hunt.proton.amqp.messaging.Terminus; import hunt.pro...
D
/Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target/debug/deps/semver-16b9e5b7aa8e5fd6.rmeta: /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.9.0/src/lib.rs /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.9.0/src/version....
D
/** * ASSIMP関連のユーティリティモジュール */ module ddoom.assimp; import std.algorithm : map; import std.array : array, Appender; import std.stdio : writefln; import std.string : fromStringz, toStringz; import std.format : format; import derelict.assimp3.assimp; import gl3n.linalg; import ddoom.asset; /// ASSIMP関連例外 class As...
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_5_MobileMedia-...
D
/** * Windows API header module * * Translated from MinGW Windows headers * * Authors: Stewart Gordon * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_iptypes.d) */ module core.sys.windows.iptypes; version (Windows): @system: import core....
D
#include <sac.h> #include "ldev_tst.h" #include "lcode_tst.h" #include "eyeCal.h" #define WIND0 0 int wndsiz = 50; int range = 2; int density = 1; int lateral = 1; int twoEyes = 0; int blockTot = 5; int numTarg = 40; int nTrials = -1; int nBlocks = -1; calLoc_t *thsGrid = bi16grid; int dax = 0; int day = 1; int fpx =...
D
import std.stdio; import std.math; import std.format; import imageformats; enum ErrorNoArgs = "No arguments provided"; enum InfoText = "rendercmp (options) <ground truth image> <images to compare...> Similarity is dervived through the similarity between the noise and the ground truth on the RGB channels, as well an C...
D
module templates_more_9; // The general definition int sum(int last)() { return last + sum!(last - 1)(); } // The special definition for zero int sum(int last : 0)() { return 0; } import std.stdio; void main() { writeln(sum!4()); }
D
instance BAU_982_Grimbald(Npc_Default) { name[0] = "Grimbald"; guild = GIL_NONE; id = 982; voice = 7; flags = 0; npcType = npctype_main; aivar[AIV_ToughGuy] = TRUE; B_SetAttributesToChapter(self,5); level = 1; fight_tactic = FAI_HUMAN_MASTER; EquipItem(self,ItMw_1H_Sword_L_03); EquipItem(self,ItRw_Sld_Bow)...
D
/Users/luoguochun/privt/proj/coding-blog/.demo/rust-lib/mini-redis/target/debug/build/serde_json-7b2af4aeae71571e/build_script_build-7b2af4aeae71571e: /Users/luoguochun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/serde_json-1.0.60/build.rs /Users/luoguochun/privt/proj/coding-blog/.demo/rust-lib/mini-redis...
D
/Users/atyun-monitor/Desktop/Swift/DanTangFromQuanzai/Build/Intermediates/Pods.build/Debug-iphonesimulator/SnapKit.build/Objects-normal/x86_64/ConstraintMaker.o : /Users/atyun-monitor/Desktop/Swift/DanTangFromQuanzai/Pods/SnapKit/Source/Constraint.swift /Users/atyun-monitor/Desktop/Swift/DanTangFromQuanzai/Pods/SnapKit...
D
/* * Finds Pythagorean triplets with a user defined sum * Edited for euler 39 * Copyright 2012 James Otten <james_otten@lavabit.com> */ import std.stdio; int numberPythagoreanTriplets(int p) { int ret; for(int i = 1; i < p - 2; i++) //Each side must be at least 1 for(int j = i; j < p - 2; j++) if(i^^2 + j^^...
D
INSTANCE Info_Mod_Aaron_Fake_DoorIn (C_INFO) { npc = Mod_1858_KDF_Aaron_PAT; nr = 1; condition = Info_Mod_Aaron_Fake_DoorIn_Condition; information = Info_Mod_Aaron_Fake_DoorIn_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Aaron_Fake_DoorIn_Condition() { return 1; }; FUNC VOID Info_Mod_Aaron_Fake_D...
D
module util.log; import std.stdio; import std.file; import std.string; import std.datetime; import std.format; private { __gshared File log; __gshared bool isLogging = true; } public: enum Level { success = "success", event = "event", warning = "warning", error = "error", update = "update", user = "user", }...
D
/Users/Mandy_Cho/Documents/GetSwifty/Memorari/DerivedData/Memorari/Build/Intermediates/Memorari.build/Debug-iphonesimulator/Memorari.build/Objects-normal/x86_64/Person.o : /Users/Mandy_Cho/Documents/GetSwifty/Memorari/Memorari/PersonCell.swift /Users/Mandy_Cho/Documents/GetSwifty/Memorari/Memorari/ViewController.swift ...
D
module engine.camera_control; import core.camera; import core.types; import core.aabb; import core.dbg; import engine.scene_object; import engine.imgui; import math.funcs; import std.math; immutable CamFront = vec3(0.0f, 0.0f, 1.0f); immutable CamRight = vec3(1.0f, 0.0f, 0.0f); immutable CamUp = vec3(0.0f, 1.0f, 0....
D
/Users/Zhongli/Desktop/NewsDemo/DerivedData/NewsDemo/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/SnapKit.build/Objects-normal/x86_64/ConstraintPriorityTarget.o : /Users/Zhongli/Desktop/NewsDemo/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift /Users/Zhongli/Desktop/NewsDemo/Pods/SnapKit/Source/Constr...
D
/** Arbitrary-precision ('bignum') arithmetic * * Performance is optimized for numbers below ~1000 decimal digits. * For X86 machines, highly optimised assembly routines are used. * * The following algorithms are currently implemented: * $(UL * $(LI Karatsuba multiplication) * $(LI Squaring is optimized indepen...
D
module dido.buffer.analysis; import std.d.lexer; class Analysis { this(string filename, string source) { _filename = filename; _stringCache = StringCache(StringCache.defaultBucketCount); } void parse(string filemane, string source) { _tokens = getTokensForParser( cast(uby...
D
/Users/nabil/Desktop/Vinci/PFE/MazaB4E/Build/Intermediates/Pods.build/Debug-iphonesimulator/Presentr.build/Objects-normal/x86_64/PresentrShadow.o : /Users/nabil/Desktop/Vinci/PFE/MazaB4E/Pods/Presentr/Presentr/Presentr+Equatable.swift /Users/nabil/Desktop/Vinci/PFE/MazaB4E/Pods/Presentr/Presentr/PresentationType.swift ...
D
/Users/rss/Desktop/iOS-Shopping-App-master/Pick'n'Pay-swift3/DerivedData/Pick'n'Pay/Build/Intermediates.noindex/Pick'n'Pay.build/Debug-iphonesimulator/Pick'n'Pay.build/Objects-normal/x86_64/AppDelegate.o : /Users/rss/Desktop/iOS-Shopping-App-master/Pick'n'Pay-swift3/TableViewImages/Data.swift /Users/rss/Desktop/iOS-Sho...
D
import std.stdio; import std.c.stdio; /******************************************/ struct S { int opStar() { return 7; } } void test1() { S s; printf("%d\n", *s); assert(*s == 7); } /******************************************/ void test2() { double[1][2] bar; bar[0][0] = 1.0; bar[1][0] = 2.0...
D
a history of a word the study of the sources and development of words
D
module d.semantic.typepromotion; import d.semantic.semantic; import d.ir.symbol; import d.ir.type; import d.context.location; import d.exception; // Conflict with Interface in object.di alias Interface = d.ir.symbol.Interface; Type getPromotedType(SemanticPass pass, Location location, Type t1, Type t2) { return ...
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, an...
D
///////////////////////////////////////////////////////////////////////// // B_InterruptMob // ============== // Funktion um die Nsc´s während der Mobbenutzung zwischen- // durch ein paar Random-Anis abspielen zu lassen // Aufrufende Funktionen sind in drei Klassen zu unterteilen. // Erstens: Funktionen, die nur ein...
D
/home/etudiant/M1/PSTL/projects/check_useless_chaining/target/debug/deps/libsyntex_pos-afb719a4aa0cb5b7.rlib: /home/etudiant/.cargo/registry/src/github.com-1ecc6299db9ec823/syntex_pos-0.58.1/src/lib.rs /home/etudiant/M1/PSTL/projects/check_useless_chaining/target/debug/deps/syntex_pos-afb719a4aa0cb5b7.d: /home/etudian...
D
instance DIA_Addon_Bloodwyn_EXIT(C_Info) { npc = BDT_1085_Addon_Bloodwyn; nr = 999; condition = DIA_Addon_Bloodwyn_EXIT_Condition; information = DIA_Addon_Bloodwyn_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Bloodwyn_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Blo...
D
instance NOV_603_AGON(NPC_DEFAULT) { name[0] = "Àãîí"; guild = GIL_NOV; id = 603; voice = 7; flags = 0; npctype = NPCTYPE_MAIN; b_setattributestochapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,itmw_1h_nov_mace); b_createambientinv(self); b_setnpcvisual(self,MALE,"Hum_Head_Bald",FACE_N_NORMA...
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.build/Selectable.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIO/NonBlockingFileIO.swift /Users/christian/GitHu...
D
/Users/mli/Desktop/Develope/Swift/LBE_Demo/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ChartsRealm.build/Objects-normal/x86_64/RealmBaseDataSet.o : /Users/mli/Desktop/Develope/Swift/LBE_Demo/Pods/ChartsRealm/ChartsRealm/Classes/Data/RealmPieDataSet.swift /Users/mli/Desktop/Develope/Swift/LBE_Demo/Pods/...
D
/Users/rick/home/0_Languages/2_Rust/Tutorials/guessing_game/target/debug/deps/libc-d8250790d0ca7ad5.rmeta: /Users/rick/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.62/src/lib.rs /Users/rick/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.62/src/macros.rs /Users/rick/.cargo/registr...
D
instance Thorus_Schwert(C_Item) { name = "Thorusův meč"; mainflag = ITEM_KAT_NF; flags = ITEM_2HD_SWD; material = MAT_METAL; value = 500; damageTotal = 90; damagetype = DAM_EDGE; range = 150; cond_atr[2] = ATR_STRENGTH; cond_value[2] = 75; owner = GRD_200_Thorus; visual = "ItMw_2H_Sword_01.3DS"; descripti...
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 // // 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...
D
import std.stdio; import diet.Parser; void main() { import arsd.dom : Document; auto doc = new Document( `<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> <title>Dashboard - Brand</title> ...
D
module artemisd.systems.intervalentitysystem; import artemisd.aspect; import artemisd.entitysystem; import artemisd.utils.type; public abstract class IntervalEntitySystem : EntitySystem { mixin TypeDecl; private float acc; private float interval; public this(Aspect aspect,float interval) { ...
D
the mathematics of triangles and trigonometric functions neat and smart in appearance
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
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly, Alex Rønne Petersen * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* Copyright Sean...
D
import vibe.web.rest; //import vibe.core.log; import std.stdio; import std.conv; import std.string; import vibe.data.json; import vibe.web.auth; import vibe.web.common; import vibe.http.client; import core.thread; import std.datetime.date; import std.datetime.systime; import core.time; struct SigInMessage { string ...
D
module UnrealScript.Engine.AmbientSoundMovable; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.AmbientSound; extern(C++) interface AmbientSoundMovable : AmbientSound { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass Sta...
D
/** * Platform independent parts of the library. Defines common signals * that safe to catch, utilities for describing daemons and some * utitility templates for duck typing. * * Copyright: © 2013-2014 Anton Gushcha * License: Subject to the terms of the MIT license, as written in the included LICENSE ...
D
// ****************** // ZS_Zaehmen // ****************** func void ZS_MM_Rtn_Zaehmen () { Npc_SetPercTime (self, 1); Npc_PercEnable (self, PERC_ASSESSPLAYER, B_MM_AssessPlayer); Npc_PercEnable (self, PERC_ASSESSENEMY, B_MM_AssessEnemy); Npc_PercEnable (self, PERC_ASSESSMAGIC, B_AssessMagic); Npc_PercEnable...
D
module registry; import repository; import std.algorithm : sort; import vibe.vibe; /// Settings to configure the package registry. class DubRegistrySettings { /// Prefix used to acces the registry. string pathPrefix; /// location for the package.json files on the filesystem. Path metadataPath; } private struct...
D
/Users/trietnguyen/Documents/Blockchain Development/NEAR OCT/phucngo/near-nft-certificate/near-nft-cert/contract/target/release/build/generic-array-615ec46285b758ad/build_script_build-615ec46285b758ad: /Users/trietnguyen/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.4/build.rs /Users/trietnguyen/D...
D
/// Problem 24: 辞書式順列 /// /// 順列とはモノの順番付きの並びのことである。 /// たとえば、3124 は数 1、2、3、4 の一つの順列である。 /// すべての順列を数の大小でまたは辞書式に並べたものを辞書順と呼ぶ。 /// 0 と 1 と 2 の順列を辞書順に並べると 012 021 102 120 201 210 になる。 /// 0、1、2、3、4、5、6、7、8、9 からなる順列を辞書式に並べたときの 100 万番目はいくつか? module project_euler.problem024; import system.linq : elementAt, permutations; ds...
D
module common; import xf.dog.Common; import xf.omg.core.LinearAlgebra; abstract class Plugin { void init(GL gl); void draw(GL gl); void cleanup(GL gl); }
D
the act or process of producing something a presentation for the stage or screen or radio or television an artifact that has been created by someone or some process (law) the act of exhibiting in a court of law the quantity of something (as a commodity) that is created (usually within a given period of time a display t...
D
//dserialize.attributes,dserialize.ct_info,dserialize.exceptions,dserialize.formats.json,dserialize.mixins,dserialize.serialization_bundle,dserialize.serialization_format,dserialize.serialize //Automatically generated by unit_threaded.gen_ut_main, do not edit by hand. import unit_threaded; int main(string[] args) { ...
D
/Users/hare/Mobius/build/MobiusClient.build/Debug-iphonesimulator/MobiusClient.build/Objects-normal/x86_64/Balance.o : /Users/hare/Mobius/MobiusClient/Sources/Utils/md5.swift /Users/hare/Mobius/MobiusClient/Sources/Requests/DataFeed.swift /Users/hare/Mobius/MobiusClient/Sources/Models/MobiusDataFeed.swift /Users/hare/M...
D
module net.masterthought.dtanks.bot.command; import net.masterthought.dtanks.heading; struct Command { double speed; Heading heading; Heading radarHeading; Heading turretHeading; int firePower = 0; public void fire(int power){ firePower = power; } }
D
module des.stdx.range; public import std.range; import std.conv; import std.algorithm; import des.stdx.traits; import des.ts; private version(unittest) { struct VecN(size_t N){ float[N] data; alias data this; } alias Vec=VecN!3; static assert( canUseAsArray!Vec ); } /++ fill output range with result of...
D
extern (C): // Currently generated file will miss `import core.stdc.limits` // https://github.com/jacob-carlborg/dstep/issues/123 enum TEST = INT_MAX;
D
a detachment assigned to protect the rear of a (retreating) military body
D
module hunt.framework.provider.DatabaseServiceProvider; import hunt.framework.provider.ServiceProvider; import hunt.framework.config.ApplicationConfig; import hunt.logging.ConsoleLogger; import hunt.entity; import poodinis; /** * */ class DatabaseServiceProvider : ServiceProvider { override void register() {...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1984-1998 by Symantec * Copyright (C) 2000-2019 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: ...
D
instance DIA_Addon_Crimson_EXIT(C_Info) { npc = BDT_1095_Addon_Crimson; nr = 999; condition = DIA_Addon_Crimson_EXIT_Condition; information = DIA_Addon_Crimson_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Crimson_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Crimson_...
D
instance GUR_1204_BaalNamib(Npc_Default) { name[0] = "Идол Намиб"; npcType = npctype_main; guild = GIL_GUR; level = 29; flags = NPC_FLAG_IMMORTAL; voice = 2; id = 1204; attribute[ATR_STRENGTH] = 70; attribute[ATR_DEXTERITY] = 55; attribute[ATR_MANA_MAX] = 50; attribute[ATR_MANA] = 50; attribute[ATR_HITPOIN...
D
module sdfs.client.configuration; import std.path : buildPath; import appbase.utils; public import appbase.configuration; class Config { static void initConfiguration() { config.load(buildPath(getExePath(), "sdfs.client.conf")); config.sys.protocol.magic.default_value!ushort = 0; } }
D
// REQUIRED_ARGS: -c /* TEST_OUTPUT: --- fail_compilation/imports/foo10727b.d(25): Error: undefined identifier Frop fail_compilation/imports/foo10727b.d(17): Error: template instance foo10727b.CirBuff!(Foo) error instantiating fail_compilation/imports/foo10727b.d(22): instantiated from here: Bar!(Foo) fail_compi...
D
// Copyright Martin Nowak 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 dget; import std.algorithm, std.exception, std.file, std.range, std.net.curl; pragma(lib, "curl"); voi...
D
INSTANCE Mod_1546_PIR_Francis_DI (Npc_Default) { // ------ NSC ------ name = "Francis"; guild = GIL_out; id = 1546; voice = 13; flags = FALSE; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 3); // ------ Kampf-Taktik ----...
D
/** * This module pulls in the types needed for cairo's Windows * functions. Currently, it pulls in all of win32. At some * point, someone should pin down exactly *which* modules to * import :) * * Authors: Daniel Keep * Copyright: 2006, Daniel Keep * License: BSD v2 (http://www.opensource.org/licenses/bsd-li...
D
module hunt.markdown.internal.ThematicBreakParser; import hunt.markdown.node.Block; import hunt.markdown.node.ThematicBreak; import hunt.markdown.parser.block.AbstractBlockParser; import hunt.markdown.parser.block.BlockContinue; import hunt.markdown.parser.block.ParserState; import hunt.markdown.parser.block.BlockStar...
D
/home/ankit/pandora/substrate-node-template/target/release/deps/structopt-45a68b6066200b6f.rmeta: /home/ankit/.cargo/registry/src/github.com-1ecc6299db9ec823/structopt-0.3.21/src/lib.rs /home/ankit/pandora/substrate-node-template/target/release/deps/libstructopt-45a68b6066200b6f.rlib: /home/ankit/.cargo/registry/src/g...
D
module raider.math.fixed; //Fixed-point types.
D