code
stringlengths
3
10M
language
stringclasses
31 values
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(WEB 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
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1...
D
module xobj.base; public import xobj.ctxhandler; public import xobj.slot; public import xobj.signal; import std.traits; import std.typetuple; import std.string; import std.exception; // workaround alias some = __traits(...) => alias some = AT!(__traits(...)) template AT(alias T){ alias AT = T; } interface XBase : S...
D
/home/doctor/myCod/myRust/myAssignments/q02asg02/target/rls/debug/deps/q02asg02-0b4efef4f4029a47.rmeta: src/main.rs /home/doctor/myCod/myRust/myAssignments/q02asg02/target/rls/debug/deps/q02asg02-0b4efef4f4029a47.d: src/main.rs src/main.rs:
D
//---------------------------------------------------------------------- // Info EXIT //---------------------------------------------------------------------- INSTANCE DIA_Addon_BDT_10029_Buddler_EXIT (C_INFO) { npc = BDT_10029_Addon_Buddler; nr = 999; condition = DIA_Addon_10029_Buddler_EXIT_C...
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,...
D
/** * Part of the Compiler implementation of the D programming language * Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved * Authors: Stefan Koch * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang...
D
module conc.boundedchannel; import conc.channel; interface ОграниченныйКанал(T) : Канал!(T) { public цел ёмкость(); }
D
/Users/gbs/Xcode/souless/DerivedData/souless/Build/Intermediates.noindex/souless.build/Debug-iphonesimulator/souless.build/Objects-normal/x86_64/MessageView.o : /Users/gbs/Xcode/souless/souless/Data/UserMassageData.swift /Users/gbs/Xcode/souless/souless/Data/PostsData.swift /Users/gbs/Xcode/souless/souless/AuthService....
D
module dlangide.ui.newfolder; import std.array : empty; import std.file : mkdir, exists; import std.path : buildPath, buildNormalizedPath; import std.utf : toUTF32; import dlangui.core.logger; import dlangui.core.stdaction; import dlangui.dialogs.dialog; import dlangui.dml.parser; import dlangui.widgets.controls; im...
D
/** Generic serialization framework. This module provides general means for implementing (de-)serialization with a standardized behavior. Supported_types: The following rules are applied in order when serializing or deserializing a certain type: $(OL $(LI An `enum` type is serialized as its raw value, e...
D
module dub.internal.vibecompat.data.json; version (Have_vibe_d) public import vibe.data.json; else: import dub.internal.vibecompat.data.utils; import std.array; import std.conv; import std.datetime; import std.exception; import std.format; import std.string; import std.range; import std.traits; /******************...
D
/** Merges eponymous templates to a single definition with template arguments. Copyright: © 2012-2015 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module ddox.processors.eptemplates; import ddox.api; import ddox.entit...
D
instance DIA_BAALORUN_EXIT(C_INFO) { npc = gur_1209_baalorun; nr = 999; condition = dia_baalorun_exit_condition; information = dia_baalorun_exit_info; important = 0; permanent = 1; description = DIALOG_ENDE; }; func int dia_baalorun_exit_condition() { return 1; }; func void dia_baalorun_exit_info() { AI_St...
D
import djehuty; import gui.application; import gui.window; import gui.button; import gui.widget; import io.console; import graphics.graphics; import resource.image; class MyControl : Widget { this() { super(0,0,360,297); } override void onAdd() { } override void onDraw(ref Graphics g) { if (images[curIma...
D
module kernel.layer0.memory.iVirtualAllocator; import kernel.layer0.serial; import kernel.layer0.support; import kernel.layer0.interrupts; import kernel.layer0.memory.util; import kernel.layer0.memory.memory; import kernel.layer0.memory.iPhysicalAllocator; __gshared: nothrow: public: alias uint virt_addr; enum PG_P...
D
import std.algorithm : canFind, map; import std.array : replace, split; import std.conv : to; import std.format : format; import std.stdio : File, stdin, writeln; import std.regex; import std.range : empty, popFront; import std.string : strip; class Commander { Option[] rawOptions; Option[string] options; bool[s...
D
/** * D header file for C99. * * $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_stdio.h.html, _stdio.h) * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompan...
D
import std.stdio, std.conv, std.array, std.string, std.algorithm, std.container, std.range, core.stdc.stdlib, std.math, std.typecons; T[][] combinations(T)(T[] s, in int m) { if (!m) return [[]]; if (s.empty) return []; return s[1 .. $].combinations(m - 1).map!(x => s[0] ~ x).array ~ s[1 .. $].combinations(m); } ...
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
module mar.cannotfail; struct CannotFail { enum failed = false; //static bool failed() { pragma(inline, true); return false; } }
D
module app; import core.thread; import std.datetime; import std.stdio; import std.functional; import std.experimental.logger; import collie.socket; import collie.channel; import collie.bootstrap.server; alias Pipeline!(ubyte[], ubyte[]) EchoPipeline; ServerBootstrap!EchoPipeline ser; class EchoHandler : HandlerAd...
D
/******************************************************************************* Initialises a connection in the client to a node. Copyright: Copyright (c) 2016-2017 dunnhumby Germany GmbH. All rights reserved License: Boost Software License Version 1.0. See LICENSE.txt for details. ************...
D
/** Implementes version validation and comparison according to the semantic versioning specification. The general format of a semantiv version is: a.b.c[-x.y...][+x.y...] a/b/c must be integer numbers with no leading zeros, and x/y/... must be either numbers or identifiers containing only ASCII alphabetic charact...
D
/Users/leo/Desktop/專題_Swift直通車/xcodefile_ui/Launch/DerivedData/Launch/Build/Intermediates/Launch.build/Debug-iphonesimulator/Launch.build/Objects-normal/x86_64/ContentViewController.o : /Users/leo/Desktop/專題_Swift直通車/xcodefile_ui/Launch/Launch/AppDelegate.swift /Users/leo/Desktop/專題_Swift直通車/xcodefile_ui/Launch/Launch/...
D
/home/raz/code_projects/keep_projects/gas_cursive_1/target/release/deps/nodrop-7b4a1d5812a45caa.rmeta: /home/raz/.cargo/registry/src/github.com-1ecc6299db9ec823/nodrop-0.1.12/src/lib.rs /home/raz/code_projects/keep_projects/gas_cursive_1/target/release/deps/libnodrop-7b4a1d5812a45caa.rlib: /home/raz/.cargo/registry/sr...
D
module test.codec.websocket.encode; import hunt.http.codec.websocket.frame; import hunt.util.Test; import test.codec.websocket.ByteBufferAssert; import test.codec.websocket.UnitGenerator; import hunt.io.ByteBuffer; import java.util.Arrays; public class RFC6455ExamplesGeneratorTest { private static final int FUDG...
D
instance DIA_ADDON_SATURAS_EXIT(C_INFO) { npc = kdw_1400_addon_saturas_nw; nr = 999; condition = dia_addon_saturas_exit_condition; information = dia_addon_saturas_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_addon_saturas_exit_condition() { return TRUE; }; func void dia_addon_satur...
D
/++ NumPy file IO package +/ module numir.io; import std.system : endian, Endian; import std.format : format, formattedRead; import std.stdio : File; import std.algorithm : each, map, filter, reduce; import std.conv : to; import std.array : array; import std.string : split, empty, strip; import std.file : FileExcepti...
D
long-tailed grey-and-white songbird of the southern United States able to mimic songs of other birds
D
/Users/arbibashaev/Developer/Learn/LearnProjects/OneTwoAnd/build/OneTwoThree.build/Debug-iphoneos/OneTwoThree.build/Objects-normal/arm64/APIRequest.o : /Users/arbibashaev/Developer/Learn/LearnProjects/OneTwoAnd/OneTwoThree/Modules/Main/Service/MockDataService.swift /Users/arbibashaev/Developer/Learn/LearnProjects/OneTw...
D
/*********************************************** * NSC läuft um Bezugs-WP auf Waynet rum * ***********************************************/ func void ZS_NamelessTalk () { //PrintDebugNpc (PD_TA_FRAME,"ZS_NamelessTalk"); // * Wahrnehmungen passiv * Npc_PercEnable (self, PERC_ASSESSENEMY , B_No...
D
//Ringe// //Schutzringe const int Value_Ri_ProtFire = 250; const int Ri_ProtFire = 3; const int Value_Ri_ProtEdge = 250; const int Ri_ProtEdge = 3000; const int Value_Ri_ProtMage = 250; const int Ri_ProtMage = 3; const int Value_Ri_ProtPoint = 250; const int Ri_ProtPoint = 3000; const int Value_Ri_ProtFi...
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-71658821...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1999-2018 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
/* D-System 'LUMINOUS' 'luminous.d' 2004/01/30 jumpei isshiki */ private import std.math; private import std.string; private import opengl; private import util_sdl; private import task; private GLuint luminousTexture; private const int LUMINOUS_TEXTURE_WIDTH_MAX = 64; private const int LUMINOUS_TEXTURE_HEIGHT_...
D
const int GOTHIC_BASE_VERSION = 2; //-------------------------------------- // Nutzervariablen: //-------------------------------------- const string MEM_FARFARAWAY = "TOT"; //dort wird der Mem-Helper gespawnt const string MEM_HELPER_NAME = "MEMHLP"; //so heißt er const int zERR_TYPE_OK = 0; /* [ungenutzt] ...
D
/* * Client for IRBIS64 library system. * Alexey Mironov, 2019. * MIT License. */ module irbis.stat; import std.algorithm: canFind, remove; import std.array; import std.bitmanip; import std.conv; import std.encoding: transcode, Windows1251String; import std.random: uniform; import std.socket; import std.stdio; im...
D
/Users/akamatechayapiwat/Desktop/SwiftProject/Clima-iOS11-master/build/Clima.build/Debug-iphonesimulator/Clima.build/Objects-normal/x86_64/CustomSegue.o : /Users/akamatechayapiwat/Desktop/SwiftProject/Clima-iOS11-master/Clima/AppDelegate.swift /Users/akamatechayapiwat/Desktop/SwiftProject/Clima-iOS11-master/CustomSegue...
D
import std; alias Value = BigInt; void perform(const Value[] program, Value delegate() prompt, ref Array!Value output) { Array!Value states; states.insertBack(program[]); states[0] = 2; Value relativeBase = 0; ref Value state(Value index) { size_t stIndex = cast(size_t) index.toLong; if (stIndex >= states.l...
D
/** * Application interface for assembler command-line tool. * * Copyright © 2016, Eric Scrivner * * License: Subject to the terms of the MIT license, as written in the included * LICENSE.txt file. * Authors: Eric Scrivner */ module phlogiston.cli.assembler; import std.file; import std.stdio; import phlogisto...
D
// Written in the D programming language. module wrapper.sodium.crypto_aead_xchacha20poly1305; import wrapper.sodium.core; // assure sodium got initialized public import deimos.sodium.crypto_aead_xchacha20poly1305 : crypto_aead_xchacha20poly1305_ietf_KEYBYTES, c...
D
module com.thoughtworks.xstream.mapper; public import com.thoughtworks.xstream.mapper.ClassAliasingMapper;
D
module ahook; shared static this() { import vars; valueStoredHere = 1337; }
D
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/Crypto.build/Utilities/Exports.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/crypto/Sources/Crypto/Utilities/Base32.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/crypto/Sources...
D
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/DefaultFillFormatter.o : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift ...
D
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Hash/Config+Hash.swift.o : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-549298888925...
D
{ ["includes"] = { "src/ss/lstrlib.c" , "src/ss/lua.h" , "src/ss/luaconf.h" , "src/ss/lauxlib.h" , "src/ss/lualib.h" } , ["program"] = "xcrun -sdk macosx clang" , ["sources"] = { "src/ss/lstrlib.c" } , ["flags"] = { "-fvisibility=hidden...
D
#include <Wire.h> #include "Balance.h" LSM6 imu; Balboa32U4Motors motors; #Driver setup void setup() { ledYellow(0); ledRed(1); balanceSetup(); ledRed(0); } #Driver run void standUp() { motors.setSpeeds(-SPEED_LIMIT, -SPEED_LIMIT); delay(400); motors.setSpeeds(150, 150); for (uint8_t i = 0; i < ...
D
module space.io.keyboard; import derelict.sdl2.sdl; class Keyboard { public: this() { this.keystate = SDL_GetKeyboardState(&this.size); keyboardHold = new double[size]; keyboardJustPressed = new bool[size]; keyboardJustLetGo = new double[size]; } ~this() { destroy(keyboardJustLetGo); destroy(keyboardJ...
D
/** Internationalization/translation support for the web interface module. Copyright: © 2014-2017 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.web.i18n; import vibe.http.server : HTTPServerRequest; import...
D
module pegged.examples.c; import pegged.grammar; enum Cgrammar = ` C: TranslationUnit <- ExternalDeclaration (:Spacing ExternalDeclaration)* ExternalDeclaration < FunctionDefinition / Declaration FunctionDefinition < DeclarationSpecifiers? Declarator DeclarationList? CompoundStatement PrimaryExpression < Identifi...
D
module dcltk.program; import derelict.opencl.cl; import dcltk.error : enforceCl, OpenClException; import std.algorithm : map, joiner; import std.conv : to; import std.exception : assumeUnique; import std.string : toStringz; /** * create program from source. * * Params: * context = context. * source...
D
a group of people or things arranged by class or category the basic cognitive process of arranging into classes or categories the act of distributing things into classes or categories of the same type
D
/Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsSingle.o : /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/RxSwift/RxSwift/Observables/SingleAsy...
D
module engine.thirdparty.spine.types; alias spAnimationStateListener = extern( C ) void function( spAnimationState* state, spEventType type, void* entry, spEvent* event ); alias spMallocFunc = extern( C ) void* function( size_t psize ); alias spReallocFunc = extern( C ) void* function( void* ptr, size_t psize ); alias...
D
/++ $(LINK2 https://en.wikipedia.org/wiki/Regular_expression, Regular expressions) are a commonly used method of pattern matching on strings, with $(I regex) being a catchy word for a pattern in this domain specific language. Typical problems usually solved by regular expressions include validation of user in...
D
module org.eclipse.swt.internal.mozilla.nsITraceRefcnt; import java.lang.all; import org.eclipse.swt.internal.mozilla.Common; import org.eclipse.swt.internal.mozilla.nsID; import org.eclipse.swt.internal.mozilla.nsISupports; const char[] NS_ITRACEREFCNT_IID_STR = "273dc92f-0fe6-4545-96a9-21be77828039"; const nsIID ...
D
datapath=/home/torobo/catkin_ws/src/tutorial/src/data/modxp2 modelpath=/home/torobo/catkin_ws/src/tutorial/src/data/model/modxp5 activejoints=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 robot=torobo nsamples=1,1,1 w=0.02,0.02 d=60,15 z=8,2 t=2,10 epochs=2000 alpha=0.001 beta1=0.9 beta2=0.999 shuffle=false retrain=false greedy=fals...
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 273 54 4 0 46 48 -33.5 151.300003 1769 6 6 1 intrusives, basalt 320 63 9 15.5 34 65 -38 145.5 1854 16 16 0.258064516 extrusives 314 70 6 132 48 50 -33.2999992 151.199997 1844 9 10 1 intrusives, basalt 302.700012 66.8000031 6.80000019 35 34 65 -3...
D
/******************************************************************************* Fiber/coroutine based non-blocking input class Non-blocking input select client using a fiber/coroutine to suspend operation while waiting for the read event and resume on that event. Provides methods to: * deser...
D
.build_Debug/src/qc-T010.xc.d ./.build_Debug/src/qc-T010.xc.o: ././src/qc-T010.xc
D
instance BDT_10312_Addon_RangerBandit_L (Npc_Default) { // ------ NSC ------ name = NAME_BANDIT; guild = GIL_BDT; id = 10312; voice = 13; flags = 0; //NPC_FLAG_IMMORTAL oder 0 npctype = NPCTYPE_AMBIENT; // ------ Attribute ------ B_SetAttributesToChapter (self, 1); /...
D
module bytecurry.container.helpers; /** * Easily implement two opApply methods (one over values, and one with enumerated indices) * for an element type and expressions for the empty test, front element, and popping * the front element. * * The opApply methods are equivalent to using a range, but the expressions m...
D
import std.stdio; void main() { writef("int%s, long%s, size_t%s", int.sizeof*8, long.sizeof*8, size_t.sizeof*8); // output: int32, long64, size_t32 // I guess size_t will be 64 on a 64 machine with the addision of 64 bit compiler feature }
D
/home/gambl3r/Rust/telegrambotdev/BotDev/target/debug/build/rand_pcg-cd829b0a1e11fb73/build_script_build-cd829b0a1e11fb73: /home/gambl3r/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs /home/gambl3r/Rust/telegrambotdev/BotDev/target/debug/build/rand_pcg-cd829b0a1e11fb73/build_script_build-cd829...
D
<?xml version="1.0" encoding="UTF-8"?> <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#_gViTQFHQEeOMyOHl8c...
D
/** * Do mangling for C++ linkage for Digital Mars C++ and Microsoft Visual C++. * * Copyright: Copyright (C) 1999-2022 by The D Language Foundation, All Rights Reserved * Authors: Walter Bright, https://www.digitalmars.com * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: ...
D
// EXTRA_SOURCES: imports/a20a.d // PERMUTE_ARGS: // REQUIRED_ARGS: -cov // POST_SCRIPT: runnable/extra-files/coverage-postscript.sh // EXECUTE_ARGS: ${RESULTS_DIR}/runnable import a20a; extern(C) void dmd_coverDestPath(string path); void main(string[] args) { dmd_coverDestPath(args[1]); }
D
/******************************************************************************* Fiber-based socket connection handler. Extends the base class in ocean, adding an extra socket initialisation step to set various parameters for TCP keepalive and SYN retransmits. copyright: Copyright (c) 2012-2017 s...
D
/******************************************************************************* * Copyright (c) 2000, 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
D
module gfx.gl3; import gfx.core.log : LogTag; import gfx.core.rc : AtomicRefCounted; import gfx.graal : DebugCallback, Instance; import gfx.graal.device : PhysicalDevice; enum gfxGlLogMask = 0x2000_0000; package immutable gfxGlLog = LogTag("GFX-GL", gfxGlLogMask); final class GlInstance : Instance { import gfx.c...
D
class C { int x; void bar() { } } void foo(C) { } void main() { auto c = new C; auto d = &c; d.bar; // d.bar (C*) does multiple derefs to c.bar (C) d.foo; // d.foo does not attempt to deref d (C*) to c (C) }
D
instance ORG_833_Buster(Npc_Default) { name[0] = "Бустер"; npcType = npctype_main; guild = GIL_ORG; level = 4; voice = 2; id = 833; attribute[ATR_STRENGTH] = 20; attribute[ATR_DEXTERITY] = 15; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 88; attribute[ATR_HITPOINTS] ...
D
/** Uses libasync Copyright: © 2014 RejectedSoftware e.K., GlobecSys Inc Authors: Sönke Ludwig, Etienne Cimon License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ module vibe.core.drivers.libasync; version(VibeLibasyncDriver): import vibe.core.core; import vibe.core.d...
D
module http.client; import http.common; import std.stdio; import std.socket; import std.conv; import std.algorithm; import std.range; import std.string; import url.parser; class BaseHTTPConnection { protected: string _host; ushort _port; int timeout; Socket sock; string[string] _headers; strin...
D
module android.java.android.app.SharedElementCallback_OnSharedElementsReadyListener; public import android.java.android.app.SharedElementCallback_OnSharedElementsReadyListener_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!SharedElementCallback_OnSharedElementsReadyListener; import import0 = ...
D
module mach.sdl.graphics.vertex; private: import derelict.opengl3.gl; import mach.traits : isNumeric; import mach.math.vector : Vector, Vector2; import mach.math.box : Box; import mach.sdl.error : GLException; import mach.sdl.glenum : VertexType, getvertextype, validvertextype; import mach.sdl.graphics.color : Color...
D
module deimos.cef1.load_handler; // Copyright (c) 2012 Marshall A. Greenblatt. 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 ...
D
/home/victorrandall/proj/MineCraft-clone-/src/VoxelTerrain/target/debug/build/bindgen-c8e4f2062fa30b03/build_script_build-c8e4f2062fa30b03: /home/victorrandall/.cargo/registry/src/github.com-1ecc6299db9ec823/bindgen-0.56.0/build.rs /home/victorrandall/proj/MineCraft-clone-/src/VoxelTerrain/target/debug/build/bindgen-c...
D
a platform from which criminals are executed (hanged or beheaded) a temporary arrangement erected around a building for convenience of workers provide with a scaffold for support
D
/* * Copyright (c) 2017-2020 sel-project * * 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 limitation the rights * to use, copy, modify, merge, pu...
D
/* Demangler for D/C++ - gcc and MS style mangling Copyright (C) 2015 Free Software Foundation, Inc. Written by Rainer Schuetze (r.sagitario@gmx.de) This file is using part of GNU Binutils, inspired by cxxfilt This program is free software; you can redistribute it and/or modify it under the te...
D
without a flaw
D
/* TEST_OUTPUT: --- fail_compilation/fail208.d(18): Error: return expression expected fail_compilation/fail208.d(21): called from here: `MakeA()` --- */ // Issue 1593 - ICE compiler crash empty return statement in function struct A { } A MakeA() { return ; } static const A aInstance = MakeA();
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
module dcv.plot.bindings.gl; public import bindbc.opengl; import mir.exception; import core.stdc.stdio; import std.format; void initGL() @nogc nothrow { GLSupport retVal = loadOpenGL(); if(retVal > GLSupport.noContext) { printf("configure renderer for GL-%d \n", retVal); } else { try...
D
/* Copyright (c) 1996 Blake McBride All rights reserved. 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 conditions and th...
D
module concurrency.operations.whenall; import concurrency; import concurrency.receiver; import concurrency.sender; import concurrency.stoptoken; import concepts; import std.traits; import concurrency.utils : spin_yield, casWeak; WhenAllSender!(Senders) whenAll(Senders...)(Senders senders) if (Senders.length > 1) { ...
D
/Users/Thomas_Stuart/Desktop/FakeTumblr-master/Build/Intermediates/Pods.build/Debug-iphonesimulator/AlamofireImage.build/Objects-normal/x86_64/ImageDownloader.o : /Users/Thomas_Stuart/Desktop/FakeTumblr-master/Pods/AlamofireImage/Source/Image.swift /Users/Thomas_Stuart/Desktop/FakeTumblr-master/Pods/AlamofireImage/Sour...
D
/Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Eureka.build/Objects-normal/x86_64/DateRow.o : /Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Pods/Eureka/Source/Validations/RuleURL.swift /Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Pods/Eureka/Source/Validations/RuleRequi...
D
/home/shepj/xaod/ROOTAnalysisTutorial/RootCoreBin/obj/x86_64-slc6-gcc49-opt/TrigMuonMatching/obj/TrigMuonMatching.o /home/shepj/xaod/ROOTAnalysisTutorial/RootCoreBin/obj/x86_64-slc6-gcc49-opt/TrigMuonMatching/obj/TrigMuonMatching.d : /cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.3.45/TrigMuonMatching/Root/TrigMuonMat...
D
#[[inotify]] #!/bin/bash #inotifywait init script for ubuntu # listen=/etc/inotify-listen.txt cat "/opt" > $listen option=$1 start() { pid=`pgrep inotifywait` [ $? -eq 0 ] && echo "inotifywait already running: [pid $pid]" && exit 1 inotifywait --timefmt "[%Y%m%d %H:%M:%S]" --format "%T %w %e %f...
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Vapor.build/Sessions/SessionsConfig.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder...
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 Soft...
D
void main() { runSolver(); } void problem() { auto R = scan!int; auto C = scan!int; auto A = scan!int(4).chunks(2); auto solve() { return A[R - 1][C - 1]; } outputForAtCoder(&solve); } // ---------------------------------------------- import std; T[][] combinations(T)(T[] s, in long m) { if (!m) ...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Simple bit vector implementation. * * Copyright: Copyright (C) 2013-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 ...
D
module pulseaudio_h; extern(C): enum PA_CHANNELS_MAX = 32U; alias pa_sample_format_t = int; /** Sample format */ enum: pa_sample_format_t { PA_SAMPLE_U8, /**< Unsigned 8 Bit PCM */ PA_SAMPLE_ALAW, /**< 8 Bit a-Law */ PA_SAMPLE_ULAW, /**< 8 Bit mu-Law */ PA_SAMPLE_S16LE, /**< Sig...
D
/Users/hailor/Work/mobile/QhTestMV/ios/build/Build/Intermediates/Pods.build/Debug-iphonesimulator/HandyJSON.build/Objects-normal/x86_64/ExtendCustomModelType.o : /Users/hailor/Work/mobile/QhTestMV/ios/Pods/HandyJSON/Source/Metadata.swift /Users/hailor/Work/mobile/QhTestMV/ios/Pods/HandyJSON/Source/Transformable.swift /...
D
// ************************************************** VAR INT MordragKO_PlayerChoseOreBarons; VAR INT MordragKO_PlayerChoseThorus; VAR INT MordragKO_HauAb; var int MordragKO_StayAtNC; // ************************************************** // ************************************************** // EXIT // *********...
D