code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/**
* The package provides the functionaly to loading and manage a collection of properties
*
* Copyright: (c) 2015-2016, Milofon Project.
* License: Subject to the terms of the BSD license, as written in the included LICENSE.txt file.
* Authors: Maksim Galanin
*/
module proped;
public
{
version(Have_sdlang... | D |
/Users/noah-vincenznoeh/Desktop/Financial-Smart-Contracts/target/wasm32-unknown-unknown/release/deps/libtiny_keccak-c91b04eee2b6c0a6.rlib: /Users/noah-vincenznoeh/.cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-1.4.2/src/lib.rs
/Users/noah-vincenznoeh/Desktop/Financial-Smart-Contracts/target/wasm32-unknown... | D |
/**
* immintrin.h style functions
*
* Copyright:
* (C) 2014-2015 Etienne Cimon
*
* License:
* Released under the MIT license
*/
module botan.utils.simd.immintrin;
import botan.constants;
static if (BOTAN_HAS_THREEFISH_512_AVX2):
import core.simd;
alias __m256i = byte32;
pure:
nothrow:
@trusted:
int _MM_SHUFFLE(... | D |
module bullet2.BulletDynamics.ConstraintSolver.btSolverBody;
extern (C++):
import bullet2.BulletDynamics.Dynamics.btRigidBody;
import bullet2.LinearMath.btVector3;
import bullet2.LinearMath.btMatrix3x3;
import bullet2.LinearMath.btAlignedAllocator;
import bullet2.LinearMath.btTransformUtil;
import bullet2.LinearMath.... | D |
# Gitblit daemon configuration.
# Uncomment properties to modify them.
# Logs location.
#GITBLIT_LOG=/var/log/gitblit/gitblit.log
# User running the daemon.
#GITBLIT_USER=gitblit
# JVM arguments.
#GITBLIT_JAVA_OPTS="-server -Xmx1024M"
# Daemon start arguments.
#GITBLIT_START_ARGS=""
# Daemon stop arguments.
#GITBL... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/HTTP.build/Utilities/RFC1123.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/http/Sources/HTTP/Utilities/RFC1123.swift /Users/panartem/Developer/Study/Microservices-vapor/TIL... | D |
/**
* Block Cipher Base Class
*
* Copyright:
* (C) 1999-2009 Jack Lloyd
* (C) 2014-2015 Etienne Cimon
*
* License:
* Botan is released under the Simplified BSD License (see LICENSE.md)
*/
module botan.block.block_cipher;
import botan.constants;
public import botan.algo_base.transform;
public import botan.algo_base.sy... | D |
import std.algorithm : splitter;
import std.stdio;
import std.range : put, take;
import rx;
void main()
{
auto signal = new EventSignal;
auto client = getAsync("http://dlang.org");
client.map!(content => content.length)
.doSubscribe((size_t len) => writeln("Content-Length: ", len), &signal.setSignal);
signal.w... | D |
//https://rosettacode.org/wiki/Magic_squares_of_doubly_even_order
import std.stdio;
void main() {
int n=8;
foreach(row; magicSquareDoublyEven(n)) {
foreach(col; row) {
writef("%2s ", col);
}
writeln;
}
writeln("\nMagic constant: ", (n*n+1)*n/2);
}
int[][] magicSquar... | D |
# FIXED
PROFILES/humidityservice.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/Projects/ble/Profiles/SensorProfile/CC26xx/humidityservice.c
PROFILES/humidityservice.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/Components/ble/include/bcomdef.h
PROFILES/humidityservice.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/C... | D |
import std.stdio;
struct Rect(T) {
public:
bool intersects(ref const Rect!T rhs, ShortRect* overlap = null)
{
return false;
}
}
alias FloatRect = Rect!float;
alias ShortRect = Rect!short;
void main() {
}
| D |
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
SPDX-License-Identifier: curl
Long: version
Short: V
Help: Show version number and quit
Category: important curl
Example: --version
Added: 4.0
See-also: help manual
Multi: custom
---
Displays information about curl and the libcurl version it uses.
The first li... | D |
/*
* Copyright Andrej Mitrovic 2013 - 2020.
* 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 dtk.image;
import dtk.interpreter;
import dtk.utils;
import dtk.widgets.widget;
imp... | D |
// ---------------------------------------------------------
// NPC 'HLR_500_Palgur'
// ---------------------------------------------------------
instance HLR_500_Palgur (C_NPC)
{
//-------- primary data --------
name = "Palgur";
guild = GIL_HEALER;
npctype = NPCTYPE_MAIN;
level ... | D |
a shoe for a child or woman that has a strap around the ankle
a sock that reaches just above the ankle
an ornament worn around the ankle
| D |
extern(C) int printf(const char* fmt, ...);
/***************************************/
void test1()
{
char[] a;
int foo()
{
printf("foo\n");
a ~= "foo";
return 10;
}
foreach (i; 0 .. foo())
{
printf("%d\n", i);
a ~= cast(char)('0' + i);
}
asser... | D |
module tests.ut.build;
import unit_threaded;
import reggae;
import reggae.options;
import std.array;
void testIsLeaf() {
Target("tgt").isLeaf.shouldBeTrue;
Target("other", "", [Target("foo"), Target("bar")]).isLeaf.shouldBeFalse;
Target("implicits", "", [], [Target("foo")]).isLeaf.shouldBeFalse;
}
void... | D |
module com.sun.jna.Structure;
public class Structure
{
} | D |
module app;
import vibe.core.core;
import vibe.core.log;
import vibe.http.auth.basic_auth;
import vibe.http.client;
import vibe.http.router;
import vibe.http.server;
import vibe.web.auth;
import vibe.web.rest;
import std.algorithm : among;
import std.datetime;
import std.format : format;
shared static this()
{
aut... | D |
/Users/hnakatani/Documents/その他/Learning/Rust/tutrial/10_2_trait/target/debug/traitt: /Users/hnakatani/Documents/その他/Learning/Rust/tutrial/10_2_trait/src/main.rs
| D |
module android.java.java.util.Date_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.time.Instant_d_interface;
import import2 = android.java.java.lang.Class_d_interface;
impo... | D |
import std.stdio;
T[] forwardDifference(T)(T[] s, in int n) pure nothrow @nogc {
foreach (immutable i; 0 .. n)
s[0 .. $ - i - 1] = s[1 .. $ - i] - s[0 .. $ - i - 1];
return s[0 .. $ - n];
}
void main() {
immutable A = [90.5, 47, 58, 29, 22, 32, 55, 5, 55, 73.5];
foreach (immutable level; 0 .. A... | D |
module android.java.android.widget.GridLayout_LayoutParams_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import3 = android.java.android.widget.GridLayout_LayoutParams_d_interface;
import import6 = a... | D |
module d.gc.run;
struct RunDesc {
import d.gc.rbtree;
Node!RunDesc node;
// FIXME: Use anonymous enum when SDC supports them.
union U {
DirtyRunMisc dirty;
SmallRunMisc small;
}
U misc;
@property
ref DirtyRunMisc dirty() {
// FIXME: in contract
auto pd = chunk.pages[runID];
assert(pd.free, "Expect... | D |
module android.java.android.webkit.WebViewRenderProcess_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
final class WebViewRenderProcess : IJavaObj... | D |
import std.stdio;
int main(string[] argv) {
writeln("Hello D-World!");
writeln("Whaaaaaa!");
readln();
return 0;
}
| D |
module voxelman.command.plugininfo;
enum id = "voxelman.command";
enum semver = "0.5.0";
enum deps = [];
enum clientdeps = [];
enum serverdeps = [];
| D |
/**
Copyright: Copyright (c) 2014 Andrey Penechko.
License: a$(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
module anchovy.gui.utils.widgetmanager;
import anchovy.gui;
//version = Debug_wman;
alias WidgetCreator = Widget delegate();
alias LayoutCreator = ILayout delegate();
alias ... | D |
/* Converted to D from gsl_matrix_short.h by htod
* and edited by daniel truemper <truemped.dsource <with> hence22.org>
*/
module auxc.gsl.gsl_matrix_short;
/* matrix/gsl_matrix_short.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistri... | D |
// REQUIRED_ARGS:
// PERMUTE_ARGS: -mcpu=native
version (D_SIMD)
{
import core.simd;
import core.stdc.string;
import std.stdio;
alias TypeTuple(T...) = T;
/*****************************************/
// https://issues.dlang.org/show_bug.cgi?id=16087
static assert(void16.alignof == 16);
static assert(double2.alignof... | D |
module mach.io.file.attributes;
private:
version(Windows){
import core.sys.windows.winbase : GetFileAttributesW;
import core.sys.windows.windows : DWORD;
import core.sys.windows.winnt;
}
import std.internal.cstring : tempCString;
import mach.io.file.common;
public:
/// https://msdn.microsoft.com/en-u... | D |
func void OrcSlavePerc()
{
Npc_PercEnable(self,PERC_ASSESSDAMAGE,ZS_OrcSlave_AssessDamage);
Npc_PercEnable(self,PERC_OBSERVEINTRUDER,B_OrcSlave_Quicklook);
Npc_PercEnable(self,PERC_DRAWWEAPON,B_OrcSlave_Quicklook);
Npc_PercEnable(self,PERC_ASSESSSURPRISE,B_OrcSlave_Quicklook);
};
func void OrcDefaultPerc()
{
if(... | D |
import core.vararg;
extern (C) int printf(const char*, ...);
/***************************************************/
// lambda syntax check
auto una(alias dg)(int n)
{
return dg(n);
}
auto bin(alias dg)(int n, int m)
{
return dg(n, m);
}
void test1()
{
assert(una!( a => a*2 )(2) == 4);
assert(una... | 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 |
/*
TEST_OUTPUT:
---
fail_compilation/diag9148.d(19): Error: pure function 'diag9148.test9148a.foo' cannot access mutable static data 'g'
fail_compilation/diag9148.d(23): Error: pure function 'diag9148.test9148a.bar' cannot access mutable static data 'g'
fail_compilation/diag9148.d(24): Error: immutable function 'diag91... | D |
keep in a certain state, position, or activity
continue a certain state, condition, or activity
retain possession of
stop (someone or something) from doing something or being in a certain state
conform one's action or practice to
stick to correctly or closely
look after
maintain by writing regular records
supply with r... | D |
instance RBL_311_Fisk (Npc_Default)
{
//-------- primary data --------
name = "Fisk";
npctype = NPCTYPE_MAIN;
guild = GIL_RBL;
level = 15;
voice = 12;
id = 311;
//-------- abilities --------
attribute[ATR_STRENGTH] = 70;
attribute[ATR_DEXTERITY] = 58;
attribute[ATR_MANA_MAX] = 0... | D |
// FileSystem utilities
import std.getopt; // For getting options from the commandline
import std.string;
import std.array;
static import stdio = std.stdio;
static import file = std.file;
static import KFS = FileSystem;
import Utilities;
//debug = mkfs;
//debug = args;
int main(string[] args)
{
bool mkfs = f... | D |
func void Equip_Bonus_HP(var int bonus)
{
self.attribute[ATR_HITPOINTS_MAX] += bonus;
self.attribute[ATR_HITPOINTS] += bonus;
};
func void UnEquip_Bonus_HP(var int antibonus)
{
self.attribute[ATR_HITPOINTS_MAX] -= antibonus;
if(self.attribute[ATR_HITPOINTS] > (antibonus + 1))
{
self.attribute[ATR_HITPOINTS] -= a... | D |
/Users/sid/Documents/iOS Dev/BullsEye/build/BullsEye.build/Debug-iphonesimulator/BullsEye.build/Objects-normal/x86_64/AboutViewController.o : /Users/sid/Documents/iOS\ Dev/BullsEye/BullsEye/ViewController.swift /Users/sid/Documents/iOS\ Dev/BullsEye/BullsEye/AboutViewController.swift /Users/sid/Documents/iOS\ Dev/Bulls... | D |
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/actix_demo-46a6642b0ea801c8: src/main.rs
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/actix_demo-46a6642b0ea801c8.d: src/main.rs
src/main.rs:
| D |
module UnrealScript.UDKBase.UDKAIDecisionComponent;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.ActorComponent;
extern(C++) interface UDKAIDecisionComponent : ActorComponent
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static Scri... | D |
/*
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, a... | D |
/Users/hernaniruegasvillarreal/Downloads/9.02/Build/Intermediates/Flappy\ Bird.build/Debug-iphonesimulator/Flappy\ Bird.build/Objects-normal/x86_64/GameScene.o : /Users/hernaniruegasvillarreal/Downloads/9.02/Flappy\ Bird/GameScene.swift /Users/hernaniruegasvillarreal/Downloads/9.02/Flappy\ Bird/GameViewController.swift... | 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 |
/Users/tsu06/Documents/Repos/Stencil/.build/x86_64-apple-macosx10.10/debug/Stencil.build/Inheritence.swift.o : /Users/tsu06/Documents/Repos/Stencil/Sources/Inheritence.swift /Users/tsu06/Documents/Repos/Stencil/Sources/Node.swift /Users/tsu06/Documents/Repos/Stencil/Sources/Include.swift /Users/tsu06/Documents/Repos/St... | D |
instance PAL_6101_RITTER(Npc_Default)
{
name[0] = NAME_Ritter;
guild = GIL_BDT;
aivar[AIV_IgnoresFakeGuild] = TRUE;
aivar[AIV_IgnoresArmor] = TRUE;
id = 6101;
voice = 4;
flags = 0;
npcType = NPCTYPE_PALMORA;
aivar[AIV_DropDeadAndKill] = TRUE;
B_SetAttributesToChapter(self,6);
fight_tactic = FAI_HUMAN_MASTER... | D |
/**
* Contains traits for runtime internal usage.
*
* Copyright: Copyright Digital Mars 2014 -.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Martin Nowak
* Source: $(DRUNTIMESRC core/internal/_traits.d)
*/
module core.internal.traits;
/// taken from std.typetuple.TypeTuple... | D |
/Users/Mrbochiballs1/MakeSchool/CollectionViewTESST/DerivedData/CollectionViewTESST/Build/Intermediates/CollectionViewTESST.build/Debug-iphonesimulator/CollectionViewTESST.build/Objects-normal/i386/AppDelegate.o : /Users/Mrbochiballs1/MakeSchool/CollectionViewTESST/CollectionViewTESST/AppDelegate.swift /Users/Mrbochiba... | D |
INSTANCE Mod_941_PIR_Angus_AW (Npc_Default)
{
// ------ NSC ------
name = "Angus";
guild = GIL_NONE;
id = 941;
voice = 0;
flags = FALSE;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 2);
// ------ Kampf-Taktik ------
fig... | D |
//*********************
// Zombie Prototype
//*********************
PROTOTYPE Mst_Default_SwampZombie(C_Npc)
{
//----- Monster ----
name = "Moorleiche";
guild = GIL_ZOMBIE;
aivar[AIV_MM_REAL_ID] = ID_ZOMBIE;
level = 6;
//----- Attribute ----
attribute [ATR_STRENGTH] = Hlp_Random(51) ... | D |
/home/martogod/RustProgramms/QuestGiverRustGame/target/debug/deps/glob-918b5d1fb8a81879.rmeta: /home/martogod/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/src/lib.rs
/home/martogod/RustProgramms/QuestGiverRustGame/target/debug/deps/libglob-918b5d1fb8a81879.rlib: /home/martogod/.cargo/registry/src/github.... | D |
module gamemath;
import core.stdc.math: powf, sqrtf, fabs;
import std.math;
import std.range;
import std.typecons;
import bindbc.sdl;
import dvector;
import globals;
@nogc nothrow:
auto roundPoint(Point p, int N) pure {
p.x = cast(int)(round(float(p.x)/float(N))*N);
p.y = cast(int)(round(float(p.y)/floa... | D |
# FIXED
PROFILES/gapbondmgr.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/profiles/roles/gapbondmgr.c
PROFILES/gapbondmgr.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/inc/bcomdef.h
PROFILES/gapbondmgr.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/osal/src/inc/c... | D |
module appbase.security.token;
import core.thread;
import std.bitmanip;
import std.exception : enforce;
import std.datetime;
import std.concurrency;
import std.base64;
import crypto.rsa;
import appbase.utils.utility;
class Token
{
static ubyte[] generate(ulong userId, RSAKeyInfo publicKey)
{
ubyte[... | D |
/**
* Enumerations
*
* Copyright:
* (C) 1999-2007 Jack Lloyd
* (C) 2014-2015 Etienne Cimon
*
* License:
* Botan is released under the Simplified BSD License (see LICENSE.md)
*/
module botan.cert.x509.key_constraint;
import botan.constants;
//static if (BOTAN_HAS_X509_CERTIFICATES):
import botan.asn1.ber_dec;
import ... | D |
module spasm.bindings.domhighrestimestamp;
import spasm.types;
alias DOMHighResTimeStamp = double;
| D |
/* Written by Walter Bright
* www.digitalmars.com
* Placed into Public Domain
*/
/* NOTE: This file has been patched from the original DMD distribution to
work with the GDC compiler.
Modified by David Friedman, September 2004
*/
// Information about the target operating system, environment, and CPU
... | D |
module dpq2.conv.to_d_types;
@safe:
import dpq2;
import dpq2.conv.numeric: rawValueToNumeric;
import dpq2.conv.time: binaryValueAs, TimeStampWithoutTZ;
import dpq2.exception;
import vibe.data.json: Json, parseJsonString;
import vibe.data.bson: Bson;
import std.traits;
import std.uuid;
import std.datetime;
import s... | D |
var int Lucia_ItemsGiven_Chapter_1;
var int Lucia_ItemsGiven_Chapter_2;
var int Lucia_ItemsGiven_Chapter_3;
var int Lucia_ItemsGiven_Chapter_4;
var int Lucia_ItemsGiven_Chapter_5;
func void B_GiveTradeInv_Addon_Lucia(var C_Npc slf)
{
if((Kapitel >= 1) && (Lucia_ItemsGiven_Chapter_1 == FALSE))
{
CreateInvItems(slf... | D |
/**
* The condition module provides a primitive for synchronized condition
* checking.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Authors: Sean Kelly
* Source: $(DRUNTIMESRC core/sync/_condition.d)
*/
/* Copyrig... | D |
// Written in the D programming language.
/**
Functions that manipulate other functions.
Macros:
WIKI = Phobos/StdFunctional
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(WEB erdani.org, Andrei Alexandrescu)
Source: $(PHOBOSSRC ... | D |
#!/usr/bin/env rdmd
/**
DMD builder
Usage:
./build.d dmd
detab, tolf, install targets - require the D Language Tools (detab.exe, tolf.exe)
https://github.com/dlang/tools.
zip target - requires Info-ZIP or equivalent (zip32.exe)
http://www.info-zip.org/Zip.html#Downloads
*/
version(CoreDdoc) {} e... | D |
// Written in the D programming language.
/**
* Templates with which to manipulate type tuples (also known as type lists).
*
* Some operations on type tuples are built in to the language,
* such as TL[$(I n)] which gets the $(I n)th type from the
* type tuple. TL[$(I lwr) .. $(I upr)] returns a new type
* list t... | D |
/**
*
* Copyright: Copyright Digital Mars 2011 - 2012.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Martin Nowak
*/
/* Copyright Digital Mars 2011.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* ... | D |
/Users/slitovchenko/Documents/Smack/DerivedData/Smack/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/SessionDelegate.o : /Users/slitovchenko/Documents/Smack/Pods/Alamofire/Source/MultipartFormData.swift /Users/slitovchenko/Documents/Smack/Pods/Alamofire/Source/Timelin... | D |
/*
REQUIRED_ARGS: -m64
PERMUTE_ARGS:
TEST_OUTPUT:
---
fail_compilation/test16381.d(16): Error: `foo()` is not an lvalue
---
*/
// https://issues.dlang.org/show_bug.cgi?id=16381
__vector(float[4]) foo();
void bar()
{
float g = foo().ptr[0];
}
| D |
//Автор Кристофер Миллер. Переработано для Динрус Виталием Кулич.
//Библиотека визуальных конпонентов VIZ (первоначально DFL).
module viz.timer;
private import viz.common, viz.app;
/*export*/ class Таймер // docmain
{
/*export*/
//СобОбработчик тик;
Событие!(Таймер, АргиСоб) тик;
проц включ... | D |
the line at which the sky and Earth appear to meet
the range of interest or activity that can be anticipated
a specific layer or stratum of soil or subsoil in a vertical cross section of land
the great circle on the celestial sphere whose plane passes through the sensible horizon and the center of the Earth
| D |
instance DIA_ORLAN_EXIT(C_INFO)
{
npc = bau_970_orlan;
nr = 999;
condition = dia_orlan_exit_condition;
information = dia_orlan_exit_info;
permanent = TRUE;
description = DIALOG_ENDE;
};
func int dia_orlan_exit_condition()
{
return TRUE;
};
func void dia_orlan_exit_info()
{
AI_StopProcessInfos(self);
};
in... | D |
module org.apache.jcs;
public import org.apache.jcs.JCS;
| D |
import core.stdc.stdlib;
import std.stdio;
import std.getopt;
import dyaml;
Node Data;
void configure(string[] arguments) {
GetoptResult parsedArguments;
string config;
parsedArguments = getopt(
arguments,
"c|config", &config);
if (parsedArguments.helpWanted) {
defaul... | D |
/Users/cansoykarafakili/Desktop/Hello/build/Intermediates/Hello.build/Debug/App.build/Objects-normal/x86_64/Friend.o : /Users/cansoykarafakili/Desktop/Hello/Sources/App/Models/Friend.swift /Users/cansoykarafakili/Desktop/Hello/Sources/App/Models/Pokemon.swift /Users/cansoykarafakili/Desktop/Hello/Sources/App/Setup/Conf... | D |
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/HTTP.build/Utilities/RFC1123.swift.o : /Users/nice/HelloWord/.build/checkouts/http.git-5443068064906198988/Sources/HTTP/Utilities/RFC1123.swift /Users/nice/HelloWord/.build/checkouts/http.git-5443068064906198988/Sources/HTTP/Message/URL+HTTP.swift /Users/nice/... | D |
/**
* HibernateD - Object-Relation Mapping for D programming language, with interface similar to Hibernate.
*
* Hibernate documentation can be found here:
* $(LINK http://hibernate.org/docs)$(BR)
*
* Source file hibernated/core.d.
*
* This module contains HQL query parser and HQL to SQL transform imp... | D |
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/SQL.build/Objects-normal/x86_64/SQLColumnDefinition.o : /Users/petercernak/vapor/TILApp/.build/checkouts/sql.git--5031097865152321144/Sources/SQL/SQLBind.swift /Users/petercernak/vapor/TILApp/.build/checkouts/sql.git--5031097865152321144/Sou... | D |
// **************************************************
// EXIT
// **************************************************
instance DIA_Fortuno_EXIT(C_INFO)
{
npc = NOV_1357_Fortuno;
nr = 999;
condition = DIA_Fortuno_EXIT_Condition;
information = DIA_Fortuno_EXIT_Info;
permanent = 1;
description = DIALOG_ENDE;
}... | D |
/*
my own hash function, is not optimal
template Hashable(string)
{
uint hash(ref string Data)
{
uint i;
uint Hash = 0x5FA7;
for( i = 0; i < Data.length; i++ )
{
uint Temp;
uint Bit;
Temp = cast(uint)Data[i];
if( i & 1 )
{
Hash ^... | D |
import std.stdio;
void main(string[] args){
writeln("Hello world (from D)!");
} | D |
/Users/hernaniruegasvillarreal/Documents/TEC/semestre-8/dispositivos-moviles/segundo-parcial/tarea3PickerView/Build/Intermediates/tarea3PickerView.build/Debug-iphonesimulator/tarea3PickerView.build/Objects-normal/x86_64/FirstViewController.o : /Users/hernaniruegasvillarreal/Documents/TEC/semestre-8/dispositivos-moviles... | D |
/// File descriptor management
module mecca.lib.io;
// Licensed under the Boost license. Full copyright information in the AUTHORS file
import core.sys.posix.unistd;
public import core.sys.posix.fcntl :
O_ACCMODE, O_RDONLY, O_WRONLY, O_RDWR, O_CREAT, O_EXCL, O_TRUNC, O_APPEND, O_DSYNC, O_RSYNC, O_SYNC, O_NOCTTY;
... | D |
func void zs_cook()
{
printdebugnpc(PD_TA_FRAME,"ZS_Cook");
b_setperception(self);
if(!c_bodystatecontains(self,BS_MOBINTERACT))
{
AI_SetWalkMode(self,NPC_WALK);
if(Hlp_StrCmp(Npc_GetNearestWP(self),self.wp) == 0)
{
AI_GotoWP(self,self.wp);
};
AI_UseMob(self,"CAULDRON",1);
};
};
func void zs_cook_lo... | D |
module windows.deviceaccess;
public import system;
public import windows.com;
extern(Windows):
const GUID IID_IDeviceRequestCompletionCallback = {0x999BAD24, 0x9ACD, 0x45BB, [0x86, 0x69, 0x2A, 0x2F, 0xC0, 0x28, 0x8B, 0x04]};
@GUID(0x999BAD24, 0x9ACD, 0x45BB, [0x86, 0x69, 0x2A, 0x2F, 0xC0, 0x28, 0x8B, 0x04]);
interfa... | D |
import std.stdio;
import std.variant;
import std.algorithm;
import std.conv;
import std.range;
import std.array;
import parser;
import visitor;
import typedecl;
import Record;
import utils;
import FunctionSig;
import TemplateInstantiator;
import Namespace;
// CLosures and struct member functions can be implemented in ... | D |
module diesel.minitrace;
public import std.typecons : scoped;
import std.string : toz = toStringz;
extern(C) void mtr_init(const char *json_file);
// Shuts down minitrace cleanly, flushing the trace buffer.
extern(C) void mtr_shutdown();
// Lets you enable and disable Minitrace at runtime.
// May cause strange dis... | D |
a sudden and decisive change of government illegally or by force
a brilliant and notable success
| D |
/Users/aakash/Desktop/Xcode\ Projects/TempApp/build/TempApp.build/Debug-iphonesimulator/TempApp.build/Objects-normal/x86_64/WeatherViewController.o : /Users/aakash/Desktop/Xcode\ Projects/TempApp/TempApp/Model/WeatherData.swift /Users/aakash/Desktop/Xcode\ Projects/TempApp/TempApp/SceneDelegate.swift /Users/aakash/Desk... | D |
/Users/olegp/Desktop/XCoordinatorPlayground/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Scan.o : /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Observables/Single... | 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 |
instance Info_SFB_2_Pre(C_Info)
{
nr = 1;
condition = Info_SFB_2_Pre_Condition;
information = Info_SFB_2_Pre_Info;
permanent = 0;
important = 1;
};
func int Info_SFB_2_Pre_Condition()
{
return 1;
};
func void Info_SFB_2_Pre_Info()
{
AI_Output(self,other,"Info_SFB_2_EinerVonEuchWerden_02_00"); //Что тебе нужн... | D |
/*******************************************************************************
* Copyright (c) 2000, 2008 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 android.java.android.telecom.RemoteConnection;
public import android.java.android.telecom.RemoteConnection_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!RemoteConnection;
import import5 = android.java.java.lang.CharSequence;
import import4 = android.java.android.net.Uri;
import import... | D |
# FIXED
Comun/driverlib/sysctl.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharger/F2837xD/Comun/driverlib/sysctl.c
Comun/driverlib/sysctl.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharger/F2837xD/F2837xD_common/include/F28x_Project.h
Comun/driverlib/sysctl.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharge... | D |
import concepts;
private interface DatabaseDriver { void foo(); }
private enum isDatabaseDriver(T) = implements!(T, DatabaseDriver);
final class SQLite3 : DatabaseDriver { void foo() { } }
static assert(isDatabaseDriver!SQLite3);
| D |
/Users/volchan/code/volchan/udemy/rust/chat_server/target/rls/debug/deps/chat_server-6cdcb8b4c1f618f5.rmeta: src/main.rs
/Users/volchan/code/volchan/udemy/rust/chat_server/target/rls/debug/deps/chat_server-6cdcb8b4c1f618f5.d: src/main.rs
src/main.rs:
| D |
//#################################################
//
// Nutzungshinweise:
//
//#################################################
/*************************************************
// Idee
//************************************************
Die hier vorgestellten Funktionen ermöglichen es,
für alle Npcs in der W... | D |
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | D |
/* 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 emul.m68k.instructions.pea;
import emul.m68k.instructions.common;
package nothrow:
void addPeaInstructions(ref Instruction[ushort] ret) pure
{
foreach(v; TupleRange!(0,readAddressModes.length))
{
enum mode = readAddressModes[v];
if(addressModeTraits!mode.Control)
{
... | D |
a sedimentary rock formed by the deposition of successive layers of clay
| D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.