code
stringlengths
3
10M
language
stringclasses
31 values
module webtank.net.http.handler.uri_page_route; import webtank.net.http.handler.iface: IHTTPHandler; /// Обработчик для конкретного маршрута к странице сайта class URIPageRoute: IHTTPHandler { import webtank.net.http.context: HTTPContext; import webtank.net.uri_pattern: URIPattern, URIMatchingData; import webtank....
D
#! blah static assert(__LINE__ == 3); // fails as __LINE__ is 2 import std.stdio; import std.math : signbit, sqrt; /************************************/ static assert(-(1) == -1); static assert(-(6i) == -6i); static assert(-(1 + 6i) == -1 - 6i); static assert(!27 == 0); static assert(!0 == 1); static assert(!6.2...
D
/home/xearch/Desktop/rust_proj/covweed/target/rls/debug/deps/quote-1b457121b46aa6b0.rmeta: /home/xearch/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.9/src/lib.rs /home/xearch/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.9/src/ext.rs /home/xearch/.cargo/registry/src/github.com-1ecc6299db9ec823/...
D
//this file is part of notepad++ //Copyright (C)2003 Don HO <donho@altern.org> // //This program is free software; you can redistribute it and/or //modify it under the terms of the GNU General Public License //as published by the Free Software Foundation; either //version 2 of the License, or (at your option) any later...
D
instance Mod_7458_NONE_Jack_IR (Npc_Default) { // ------ NSC ------ name = "Jack"; guild = GIL_OUT; id = 7458; voice = 14; flags = 0; //Sterblich, optionaler Captain im Kapitel 5! npctype = NPCTYPE_MAIN; //-----------AIVARS---------------- aivar[AIV_ToughGuy] = TRUE; // -...
D
/Users/thendral/POC/vapor/Friends/.build/debug/Routing.build/Router.swift.o : /Users/thendral/POC/vapor/Friends/Packages/Routing-1.0.1/Sources/Routing/Branch.swift /Users/thendral/POC/vapor/Friends/Packages/Routing-1.0.1/Sources/Routing/ParametersContainer.swift /Users/thendral/POC/vapor/Friends/Packages/Routing-1.0.1/...
D
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al. SPDX-License-Identifier: curl Long: tlsauthtype Arg: <type> Help: TLS authentication type Added: 7.21.4 Category: tls auth Example: --tlsauthtype SRP $URL See-also: tlsuser Multi: single --- Set TLS authentication type. Currently, the on...
D
import std.array; import i_column_site_action, chunkstage, column_site_queue_item, doxel_world; class StageBuffer { private Appender!(Chunk[]) _chunks; @property Chunk[] chunks() { return _chunks.data(); } private int _count; @property int count(){ return _count; } private int _limit; private ChunkStage _s...
D
instance GUR_1212_MadCorKalom_Talk2SC(C_Info) { npc = GUR_1212_MadCorKalom; condition = GUR_1212_MadCorKalom_Talk2SC_Condition; information = GUR_1212_MadCorKalom_Talk2SC_Info; important = 1; permanent = 0; }; func int GUR_1212_MadCorKalom_Talk2SC_Condition() { return TRUE; }; func void GUR_1212_MadCorKalom_Tal...
D
/* TEST_OUTPUT: --- fail_compilation/fail6453.d(13): Error: struct fail6453.S6453x mixing invariants with different `shared`/`synchronized` qualifiers is not supported fail_compilation/fail6453.d(18): Error: class fail6453.C6453y mixing invariants with different `shared`/`synchronized` qualifiers is not supported fail_...
D
module gsl.integration; public import gsl.bindings.integration; import std.math; /** GSL Integration wrapper This uses the QAGS rule, and returns a class with opApply defined on it, which integrates between a and b. We cache the function passed in, to allow this to be used in nested contexts. However, if you get...
D
instance DIA_Addon_Miguel_EXIT(C_Info) { npc = BDT_10022_Addon_Miguel; nr = 999; condition = DIA_Addon_Miguel_EXIT_Condition; information = DIA_Addon_Miguel_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Miguel_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Miguel_EXIT_...
D
void main() { runSolver(); } void problem() { auto N = scan!int; auto X = scan!int; auto C = scan!int(2 * N).chunks(2); auto solve() { auto dp = new bool[](X + 1); dp[0] = true; foreach(c; C) { auto pre = dp.dup; auto a = c[0]; auto b = c[1]; foreach(from; 0..X) { i...
D
/Users/vtsoft2/Documents/hungtv64/DemoCodes/ViperDemo/Build/Intermediates/ViperDemo.build/Debug-iphonesimulator/ViperDemo.build/Objects-normal/x86_64/VIPERViewController.o : /Users/vtsoft2/Documents/hungtv64/DemoCodes/ViperDemo/ViperDemo/ViperView/WireFrame/VIPERWireFrame.swift /Users/vtsoft2/Documents/hungtv64/DemoCod...
D
<?xml version="1.0" encoding="ASCII"?> <di:SashWindowsMngr xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi"> <pageList> <availablePage> <emfPageIdentifier href="model.notation#_MuA-gIO9EeG_L_...
D
// See ../../README.md for information about DMD unit tests. module compilable.crlf; import support : afterEach, beforeEach, defaultImportPaths; @beforeEach initializeFrontend() { import dmd.frontend : initDMD; initDMD(); } @afterEach deinitializeFrontend() { import dmd.frontend : deinitializeDMD; d...
D
/** * This module types and functions for getting watch information. */ module pebble.watchinfo; @nogc: nothrow: enum WatchInfoModel { /// Unknown model unknown = 0, /// Original Pebble original = 1, /// Pebble Steel steel = 2, /// Pebble Time time = 3 } /// alias WATCH_INFO_MODEL_U...
D
import std.ascii; import std.file; import std.stdio; import std.string; enum State { NONE, ESCAPED, HEX1, HEX2 } static ulong dec_diff(in string txt) { ulong len = 0; State state = State.NONE; foreach(c; txt) { if (state == State.NONE) { if (c == '\\') { state = State.ESCAPED; } else if (c != ...
D
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, std.bitmanip; immutable long MOD = 10^^9 + 7; long[] F; void main() { auto S = readln.chomp; auto A = readln.chomp.to!int; long...
D
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/CombineLatest+Collection.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/S...
D
a person who is under the protection or in the custody of another a district into which a city or town is divided for the purpose of administration and elections block forming a division of a hospital (or a suite of rooms) shared by patients who need a similar kind of care English economist and conservationist (1914-19...
D
/* zlib.d: modified from zlib.h by Walter Bright */ /* updated from 1.2.1 to 1.2.3 by Thomas Kuehne */ module etc.c.zlib; /* zlib.h -- interface of the 'zlib' general purpose compression library version 1.2.3, July 18th, 2005 Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler This software is provided '...
D
/Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/.build/debug/Leaf.build/Stem.swift.o : /Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/Packages/Leaf-1.0.3/Sources/Leaf/Argument.swift /Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/Packages...
D
/Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/target/release/deps/pin_project_lite-da4370ad975b82b6.rmeta: /Users/pacmac/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.6/src/lib.rs /Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-no...
D
/** * Poodinis Dependency Injection Framework * Copyright 2014-2018 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ import poodinis; class Driver {} interface Database {}; class RelationalDatabase : Database { pr...
D
module hurt.container.hashtable; import hurt.container.isr; import hurt.conv.conv; import std.stdio; class Iterator(T) : ISRIterator!(T) { private size_t idx; private Node!(T) curNode; private HashTable!(T) table; this(HashTable!(T) table, size_t idx, Node!(T) curNode) { this.table = table; this.idx = idx;...
D
/Users/louislenief/Documents/Programmation/LTM-interface/build/LTM-interface.build/Debug/LTM-interface.build/Objects-normal/x86_64/ViewController_TableViewDelegate.o : /Users/louislenief/Documents/Programmation/LTM-interface/LTM-interface/ViewController/ViewController_GetSelected.swift /Users/louislenief/Documents/Prog...
D
instance DJG_730_ToterDrachenjaeger(Npc_Default) { name[0] = NAME_ToterDrachenjaeger; guild = GIL_DJG; id = 730; voice = 6; flags = 0; npcType = NPCTYPE_AMBIENT; B_SetAttributesToChapter(self,5); fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,ItMw_2h_Sld_Sword); B_CreateAmbientInv(self); B_SetNpcVisual(sel...
D
prototype Mst_Default_Swampshark(C_Npc) { name[0] = CZ_NAME_Monster_Swampshark; guild = GIL_SWAMPSHARK; vars[1] = TRUE; bodyStateInterruptableOverride = TRUE; aivar[AIV_MM_REAL_ID] = ID_SWAMPSHARK; level = 25; attribute[ATR_STRENGTH] = 350; attribute[ATR_DEXTERITY] = 80; attribute[ATR_HITPOINTS_MAX] = 2000; ...
D
/Users/a123456/Desktop/React/WeiBoNews/Build/Intermediates/Pods.build/Debug-iphonesimulator/AlamofireImage.build/Objects-normal/x86_64/Image.o : /Users/a123456/Desktop/React/WeiBoNews/Pods/AlamofireImage/Source/AFIError.swift /Users/a123456/Desktop/React/WeiBoNews/Pods/AlamofireImage/Source/Image.swift /Users/a123456/D...
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_11_BeT-1416147...
D
//import arsd.dom; import vibe.data.json; import dateparser; //import easy.windows.std.net.curl; import std.net.curl; import std.array; import std.conv; import std.datetime; import std.file; import std.format; //import std.json; import std.path; import std.regex; import std.stdio; import std.string; private void exi...
D
/** * * Copyright: Copyright Digital Mars 2000 - 2012. * 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, Martin Nowak * Source: $(DRUNTIMESRC rt/_sections.d) */ /* NOTE:...
D
# FIXED Comun/driverlib/systick.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharger/F2837xD/Comun/driverlib/systick.c Comun/driverlib/systick.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharger/F2837xD/F2837xD_common/include/F28x_Project.h Comun/driverlib/systick.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCh...
D
// Written in D programming language /* 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, e...
D
/Users/trevorschirra/Documents/GitHub/rosetta-code-contributions/rust_donut_dot_c/target/debug/deps/rust_donut_dot_c-14f84cf6b14daf3e.rmeta: src/main.rs /Users/trevorschirra/Documents/GitHub/rosetta-code-contributions/rust_donut_dot_c/target/debug/deps/rust_donut_dot_c-14f84cf6b14daf3e.d: src/main.rs src/main.rs:
D
FUNC VOID B_Praxiserfahrung(var C_NPC oth, var C_NPC slf) { if (slf.flags == 2) || (slf.aivar[AIV_Partymember] == TRUE) { return; }; if (Hlp_GetInstanceID(oth) != Hlp_GetInstanceID(PC_Hero)) { return; }; if (Hlp_GetInstanceID(oth) == Hlp_GetInstanceID(PC_Hero)) && (!playerIsTransformed) { if (Mod_Stae...
D
module ddbus.util; import ddbus.thin; import std.meta : AliasSeq, staticIndexOf; import std.range; import std.traits; import std.typecons : BitFlags, isTuple, Tuple; import std.variant : VariantN; struct DictionaryEntry(K, V) { K key; V value; } auto byDictionaryEntries(K, V)(V[K] aa) { import std.algorithm : ...
D
/* * Copyright (c) 2008-2011 Niels Provos and Nick Mathewson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditio...
D
/Users/admin/Developer/Liturgia.git/Liturgia-test1/DerivedData/Liturgia-test1/Build/Intermediates/Liturgia-test1.build/Debug-iphonesimulator/Liturgia-test1.build/Objects-normal/x86_64/AppDelegate.o : /Users/admin/Developer/Liturgia.git/Liturgia-test1/Liturgia-test1/ViewController.swift /Users/admin/Developer/Liturgia.g...
D
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.build/QueryBuilder/QueryBuilder+Aggregate.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/panartem/Developer/Study/Microser...
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_14_banking-281...
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_11_agm-5191616...
D
// Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors // Licensed under the MIT License: // // 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, inc...
D
// Написано на языке программирования Динрус. /** * Шаблоны для проведения работы над строками при компиляции. * * Macros: * WIKI = Phobos/StdMetastrings * Copyright: * Public Domain */ /* * Authors: * Walter Bright, Digital Mars, www.digitalmars.com * Don Clugston */ module tpl.metastrin...
D
module hunt.concurrency.TaskPool; import hunt.concurrency.SimpleQueue; import hunt.logging.ConsoleLogger; import hunt.system.Memory; import hunt.util.Common; import core.thread; import core.atomic; import core.sync.condition; import core.sync.mutex; import std.traits; private enum TaskStatus : ubyte { ready, ...
D
// See ../../../README.md for information about DMD unit tests. /// Test cases for diagnostic messages on Objective-C protocols module objc.protocols.diagnostic_messages; version (D_ObjectiveC): import dmd.globals : Loc; import support : afterEach, beforeEach, compiles, stripDelimited, Diagnostic; @beforeEach init...
D
/Users/brunodaluz/Desktop/project/Build/Intermediates/project.build/Debug/Command.build/Objects-normal/x86_64/Commands.o : /Users/brunodaluz/Desktop/project/.build/checkouts/console.git-1708081412620427180/Sources/Command/Command/Command.swift /Users/brunodaluz/Desktop/project/.build/checkouts/console.git-1708081412620...
D
// Copyright Ferdinand Majerech 2011. // 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 library.yaml.queue; ///Queue collection. import core.stdc.stdlib; import core.memory; import ...
D
module android.java.android.util.Base64InputStream_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.java.io.InputStream_d_interface; import import1 = android.java.java.lang.Class...
D
module ppl.templates.ParamTypeMatcherRegex; /// /// Match a template function using regex. /// eg. /// call func ( int[2] ) /// template func<A>( A [2] ) /// regex pattern = (.*)\[2\] => this matches with the capture being "int" /// /// The captures are converted to types and used as the template pa...
D
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Core.build/Byte/BytesSlice+PatternMatching.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Core-1.0.0/Sources/Core/Array.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Core-1.0.0/Sources/Core/Bool+String.sw...
D
instance Mod_7801_TPL_GorNaBar_OM (Npc_Default) { //-------- primary data -------- name = "Gor Na Bar"; Npctype = NpcType_MAIN; guild = GIL_out; level = 17; voice = 0; id = 7801; //-------- abilities -------- attribute[ATR_STRENGTH] = 130; attribute[ATR_DEXTERITY] = 65; a...
D
/// Generate by tools module net.padlocksoftware.padlock.license.LicenseIO; import java.lang.exceptions; public class LicenseIO { public this() { implMissing(); } }
D
instance DIA_LUTERO_EXIT(C_INFO) { npc = vlk_404_lutero; nr = 999; condition = dia_lutero_exit_condition; information = dia_lutero_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_lutero_exit_condition() { return TRUE; }; func void dia_lutero_exit_info() { AI_StopProcessInfos(self); ...
D
import std.stdio : writeln, File; import std.json : JSONValue, JSON_TYPE; string peekBit(string s) { import std.string : indexOf; auto index = s.indexOf(' '); if (index < 0) return s; return s[0..index]; } string popBit(ref string s) { import std.string : indexOf; auto index = s.indexOf(' '); if (index < 0) { ...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 2009-2019 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Bo...
D
module async.event.epoll; debug import std.stdio; version (linux): import async.codec, async.event.selector, async.net.tcplistener, core.stdc.errno, core.sys.linux.epoll, core.sys.posix.netinet.in_, core.sys.posix.netinet.tcp, core.sys.posix.signal, core.sys.posix.time, std.socket; alias LoopSelector = Ep...
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/licenses...
D
CHAIN IF WEIGHT #-1 ~Global("G#XB.AmberKetoBanter1","GLOBAL",1)~ THEN BM#AMBER G#XB.AmberKetoBanter1.1 @0 /* Hmm, I wonder if we'll see any bears out here. Have you heard story of how the bear lost his long tail? */ DO ~SetGlobal("G#XB.AmberKetoBanter1","GLOBAL",2)~ == BAERIE IF ~InParty("Aerie") See("Aerie") !StateChe...
D
/home/joey/rust-3d/target/release/deps/unicode_xid-b9da019957a5b597.rmeta: /home/joey/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/lib.rs /home/joey/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/tables.rs /home/joey/rust-3d/target/release/deps/libunicode_xid-b9da019957a...
D
instance DIA_RUFUS_EXIT(C_INFO) { npc = bau_903_rufus; nr = 999; condition = dia_rufus_exit_condition; information = dia_rufus_exit_info; permanent = 1; description = DIALOG_ENDE; }; func int dia_rufus_exit_condition() { return 1; }; func void dia_rufus_exit_info() { AI_StopProcessInfos(self); }; instance...
D
/home/carlos/CodigoFacilito/Rust/tuplas/target/debug/deps/tuplas-95b70dc024227633: src/main.rs /home/carlos/CodigoFacilito/Rust/tuplas/target/debug/deps/tuplas-95b70dc024227633.d: src/main.rs src/main.rs:
D
/Users/Lorenzo/Desktop/Mapbox-3d/EO18_3/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxSceneKit.build/Objects-normal/x86_64/AsyncOperation.o : /Users/Lorenzo/Desktop/Mapbox-3d/EO18_3/Pods/MapboxSceneKit/MapboxSceneKit/Tile\ Fetching/MapboxHTTPAPI.swift /Users/Lorenzo/Desktop/Mapbox-3d/EO18_3/Pods/MapboxScen...
D
/Users/julia/ruhackathon/target/rls/debug/build/syn-2f61fa8ac96b1b50/build_script_build-2f61fa8ac96b1b50: /Users/julia/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.73/build.rs /Users/julia/ruhackathon/target/rls/debug/build/syn-2f61fa8ac96b1b50/build_script_build-2f61fa8ac96b1b50.d: /Users/julia/.cargo/regi...
D
/* * This file is part of OpenGrafik. * * Copyright (C) 2008 Frederic-Gerald Morcos <fred.morcos@gmail.com> * * OpenGrafik is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License...
D
/Users/tarunsingh/Desktop/RustPractice/target/rls/debug/deps/RustPractice-9b7a4cc3c4f62b67.rmeta: src/main.rs /Users/tarunsingh/Desktop/RustPractice/target/rls/debug/deps/RustPractice-9b7a4cc3c4f62b67.d: src/main.rs src/main.rs:
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
/Users/lanussebaptiste/Desktop/CubeSavinien/Build/Intermediates/CubeSavinien.build/Debug-iphoneos/CubeSavinien.build/Objects-normal/armv7/OvalLayer.o : /Users/lanussebaptiste/Desktop/CubeSavinien/CubeSavinien/BottomViewController.swift /Users/lanussebaptiste/Desktop/CubeSavinien/CubeSavinien/RightViewController.swift /...
D
func void B_Say_AttackEnd() { var int rnd; var int random; var int randy; if((self.aivar[AIV_ATTACKREASON] == AR_GuildEnemy) || (self.aivar[AIV_ATTACKREASON] == AR_MonsterMurderedHuman)) { if(other.guild < GIL_SEPERATOR_HUM) { if(!Npc_IsDead(other)) { if(self.aivar[AIV_LASTTARGET] == Hlp_GetInstance...
D
/* TEST_OUTPUT: --- fail_compilation/fail7424i.d(10): Error: template `this.g()()` has no value --- */ struct S7424g { @property int g()() immutable { return 0; } void test() inout { int f = g; } }
D
instance DIA_KATI_EXIT(C_INFO) { npc = bau_941_kati; nr = 999; condition = dia_kati_exit_condition; information = dia_kati_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_kati_exit_condition() { if(KAPITEL < 3) { return TRUE; }; }; func void dia_kati_exit_info() { AI_StopProcessI...
D
module LocalDExchange; import std.stdio; import std.math; import std.algorithm; import std.typecons; import std.array; import std.conv; import Types : ETradeSide, Trade, PriceBookEntry, securityInfos; import AbstractDExchange: AbstractDExchange; import LocalDExchangeSession: LocalDExchangeSession; import AbstractDEx...
D
func void ZS_Stand_RangerMeeting() { Perception_Set_Minimal(); B_ResetAll(self); self.senses = SENSE_SEE | SENSE_HEAR | SENSE_SMELL; self.senses_range = 500; Npc_SetPercTime(self,1); Npc_PercEnable(self,PERC_ASSESSPLAYER,B_AssessGuidePlayer); Npc_PercEnable(self,PERC_ASSESSENEMY,B_AssessEnemy); if((Hlp_GetInst...
D
(nontechnical usage) a tiny piece of anything
D
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Fluent.build/Model/Model+CRUD.swift.o : /Users/nice/HelloWord/.build/checkouts/fluent.git-6829944210039798771/Sources/Fluent/Model/ID.swift /Users/nice/HelloWord/.build/checkouts/fluent.git-6829944210039798771/Sources/Fluent/Schema/SchemaSupporting+CRUD.swift ...
D
module Guigle.Panel; // Copyright Stephen Jones 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) import std.stdio; import std.string; import std.conv; import std.file; import std.array...
D
module owlchain.crypto.pubkey; import std.digest.sha; import std.digest.ripemd; import owlchain.api.api : IAddress; /++ // account address space & serialization Bitcoin Address - https://en.bitcoin.it/wiki/Address base58 - https://en.bitcoin.it/wiki/Base58Check_encoding Pay-to-script-hash (p2sh): payload...
D
module sketchup_api.model.loop; import sketchup_api.common; // SUResult import sketchup_api.model.defs; import sketchup_api.geom; //import sketchup_api.color; //import sketchup_api.defs; // SUStringRef extern (C): enum SULoopWinding { SULoopWinding_CCW = 0, SULoopWinding_CW = 1 } SUEntityRef SULoopToEntity ...
D
module clop.examples.wrapper_example; import std.stdio; import std.container.array; import std.algorithm.mutation; import derelict.opencl.cl; import clop.rt.clid.context; import clop.rt.clid.clerror; import clop.rt.clid.settings; import clop.rt.clid.imemory; import clop.rt.clid.memory; import clop.rt.clid.program; ...
D
a book containing a classified list of synonyms
D
class Base { int b1; } class Derived1 extends Base { int d11; } class Derived2 extends Base { int d12; } void main() { Base b_obj; Derived1 d1_obj; Derived2 d2_obj; b_obj = new Base; d1_obj = new Derived1; d2_obj = new Derived2; b_obj = d1_obj; d2_obj = d1_obj; }
D
template Foo(T:immutable(T)) { alias T Foo; } void main() { { int x; alias Foo!(typeof(x)) f; //printf("%s\n", typeid(f).toString().ptr); assert(is(typeof(x) == int)); assert(is(f == int)); } }
D
/home/ankit/pandora/substrate-node-template/target/release/build/hashbrown-db23e5ce6b80ed43/build_script_build-db23e5ce6b80ed43: /home/ankit/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.6.3/build.rs /home/ankit/pandora/substrate-node-template/target/release/build/hashbrown-db23e5ce6b80ed43/build_script_...
D
import std.complex; import std.stdio; import std.conv; import std.math; import std.getopt; import std.file; void main(string[] args) { uint max = 1000; uint width = 400; uint height = 400; double zoom = 1; ubyte aa = 1; double posR = 0; double posI = 0; getopt(args, "itera...
D
//T has-passed:yes //T compiles:yes //T retval:0 #line __LINE__ # line 12 /* With a comment */ #line // This is a comment 34 # line 56 __FILE__ #line 78 "foo.d" #line 90 "multi line.d" int main() { return 0; }
D
/* TEST_OUTPUT: --- fail_compilation/ice12838.d(27): Error: cannot implicitly convert expression (1) of type int to string --- */ struct Tuple(T...) { T field; alias field this; } struct Data { string a; } template toTuple(T) { mixin(`alias toTuple = Tuple!(string);`); } void main() { toTuple!Da...
D
// REQUIRED_ARGS: -o- -w int bug17807(){ int y=0; Lswitch: switch(2){ { case 0: break; } enum x=0; struct S{ enum x=0; } int foo(){ return 0; } default: y=x+S.x+foo(); static foreach(i;1..5) case i: break Lswitch; } return ...
D
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/NIO.build/ContiguousCollection.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/swift-nio/Sources/NIO/NonBlo...
D
// @@@DEPRECATED_2017-06@@@ /** * $(RED Deprecated. Use $(D core.stdc.math) instead. This module will be * removed in June 2017.) * * C's &lt;math.h&gt; * Authors: Walter Bright, Digital Mars, www.digitalmars.com * License: Public Domain * Macros: * WIKI=Phobos/StdCMath */ deprecated("Import core.s...
D
/Users/vasanthmahendran/Documents/workspace/iOS/FoodTracker/build/FoodTracker.build/Debug-iphonesimulator/FoodTracker.build/Objects-normal/x86_64/MealTableViewController.o : /Users/vasanthmahendran/Documents/workspace/iOS/FoodTracker/FoodTracker/Meal.swift /Users/vasanthmahendran/Documents/workspace/iOS/FoodTracker/Foo...
D
module soup.AuthManager; private import gobject.ObjectG; private import gobject.Signals; private import soup.Auth; private import soup.Message; private import soup.SessionFeatureIF; private import soup.SessionFeatureT; private import soup.URI; private import soup.c.functions; public import soup.c.types; private impor...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; long P = 10^^9+7; long[10^^5*2] F, RF; long pow(long x, long n) { long y = 1; while (n) { if (n%2 == 1) y = (y * x) % P; x = x^^2 % P; n /= 2; } return y; } long inv(long x)...
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 jenkins.* import hudson.* import com.cloudbees.plugins.credentials.* import com.cloudbees.plugins.credentials.common.* import com.cloudbees.plugins.credentials.domains.* import com.cloudbees.jenkins.plugins.sshcredentials.impl.* import hudson.plugins.sshslaves.*; import hudson.model.* import jenkins.mode...
D
/Users/martin/Documents/programovanie/bc/website/NavigationController/DerivedData/NavigationController/Build/Intermediates/NavigationController.build/Debug-iphoneos/NavigationController.build/Objects-normal/armv7/ViewController.o : /Users/martin/Documents/programovanie/bc/website/NavigationController/NavigationControll...
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
/media/maher/extra/rust/rust_book/projects/saico/target/debug/deps/percent_encoding-907b020a4f9f6651.rmeta: /home/maher/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/lib.rs /media/maher/extra/rust/rust_book/projects/saico/target/debug/deps/libpercent_encoding-907b020a4f9f6651.rlib: /home/maher...
D
/Users/liujianhao/code/rust/simple_web_app/simple_web_app/target/rls/debug/deps/rand_os-cb842a2ca31f1eac.rmeta: /Users/liujianhao/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_os-0.1.3/src/lib.rs /Users/liujianhao/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_os-0.1.3/src/dummy_log.rs /U...
D
/************************************************************************* ** ** ** TESTMODELLE_ORC.D ** ** =================== ** ** ** ** nieruchomy ** ** - No Focus NPC + Routine ** ** works with: Demon ** ************...
D