code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
module cmsed.base.util;
import std.uni : toLower;
import std.datetime : SysTime, Clock;
import std.string : indexOf;
import core.time : Duration;
/**
* Get UTC+0 time
*/
ulong utc0Time() {
SysTime curr = Clock.currTime();
curr -= curr.utcOffset;
return curr.toUnixTime();
}
SysTime utc0SysTime() {
SysTime curr ... | D |
/Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ICandleChartDataSet.o : /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/Jaskeerat/Desktop... | D |
/*
* Derived from Botan's Mlock Allocator
*
* This is a more advanced base allocator.
*
* (C) 2012,2014 Jack Lloyd
* (C) 2014-2015 Etienne Cimon
* (C) 2014,2015 Etienne Cimon
*
* Distributed under the terms of the Simplified BSD License (see Botan's license.txt)
*/
module memutils.cryptosafe;
import memutils.constan... | D |
import imports;
import pfs, check;
/*const char[][] list = [
"AS_009.sfd", // Credits + Ending
"AS_002.sfd", // Intro
"AS_003.sfd", // Asch & Luke
"AS_004.sfd", // Cortándose el pelo
"AS_006.sfd", // Van derrotado (I)
"AS_007.sfd", // Muerte de Asch
"AS_008.sfd", // Luke & Asch & Lorelei
"AS_001.... | D |
instance VLK_505_Buddler(Npc_Default)
{
name[0] = NAME_Buddler;
npcType = npctype_ambient;
guild = GIL_VLK;
level = 2;
voice = 2;
id = 505;
attribute[ATR_STRENGTH] = 25;
attribute[ATR_DEXTERITY] = 20;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 94;
attribute[ATR_HITP... | D |
a large spotted feline of tropical America similar to the leopard
a leopard in the black color phase
large American feline resembling a lion
| D |
/Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Reduce.o : /Users/sjwu/video/HouseHold/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/sjwu/video/HouseHold/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/sjwu/video/HouseHold/Pods/RxSwift/R... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
void main()
{
auto kx = readln.split.to!(int[]);
auto K = kx[0];
auto X = kx[1];
writeln(500*K >= X ? "Yes" : "No");
} | D |
a petty misdeed
| D |
/substrate-node-template/target/release/deps/quick_error-7accb0b94fb3a6fe.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/src/lib.rs
/substrate-node-template/target/release/deps/libquick_error-7accb0b94fb3a6fe.rlib: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/... | 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 |
//
// RNC decompression
//
// in/out buffers should have 8 redundant "safe bytes" at end.
//
// By Jon Skeet, 14 Oct 1997 - 22 Jul 2008
//
// 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; eith... | D |
instance Mod_1208_SLD_Soeldner_NW (Npc_Default)
{
// ------ NSC ------
name = NAME_SOELDNER;
guild = GIL_mil;
id = 1208;
voice = 6;
flags = 0; //NPC_FLAG_IMMORTAL oder 0
npctype = NPCTYPE_nw_soeldner;
// ------ Attribute ------
B_SetAttributesToChapter (self, 4); //setz... | D |
/Users/konstantinyurchenko/Desktop/DEVELOPER/BRIDGE/bridge-swift/Build/Intermediates/bridge.build/Debug-iphonesimulator/bridge.build/Objects-normal/x86_64/ViewController_LessonRequestDatePicker.o : /Users/konstantinyurchenko/Desktop/DEVELOPER/BRIDGE/bridge-swift/bridge/bridge/ViewController_UserProfile.swift /Users/kon... | 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 |
// 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)
/**
* Node of a YAML document. Used to read YAML data once it's loaded,
* and to prepare data to emit... | D |
module core.atype;
import core.aobject;
template Property( string type, string name, string setterAccess = "private", string checkExpr = "true" ) {
const char[] Property =
"private " ~ type ~ " _" ~ name ~ ";\n" ~
"public @property " ~ type ~ " " ~ name ~ "() { return _" ~ name ~ "; } pure\n" ~
setterAccess ~ ... | D |
module gamelibd.net.provider;
import core.sys.posix.sys.socket;
public import core.sys.posix.netinet.in_;
union addrtransform
{
sockaddr addr;
sockaddr_in addrin;
}
interface Conn
{
public string getRemoteIp();
public ubyte[] getRemoteIpBytes();
public ushort getRemotePort();
public string getLocalIp();
publi... | D |
// Written in the D programming language.
/**
This module contains menu widgets implementation.
MenuItem - menu item properties container - to hold hierarchy of menu.
MainMenu - main menu widget
PopupMenu - popup menu widget
Synopsis:
----
import dlangui.widgets.popup;
----
Copyright: Vadim Lopatin, 2014
License:... | D |
/home/ray/repos/rust_cookbook/debugging/target/debug/deps/cfg_if-587b52c05fffdc3c.rmeta: /home/ray/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs
/home/ray/repos/rust_cookbook/debugging/target/debug/deps/libcfg_if-587b52c05fffdc3c.rlib: /home/ray/.cargo/registry/src/github.com-1ecc6299db9ec82... | D |
module gfmod.opengl.buffer;
import derelict.opengl3.gl3;
import gfmod.opengl.opengl;
/// OpenGL Buffer wrapper.
final class GLBuffer
{
public
{
/// Creates an empty buffer.
/// Throws: $(D OpenGLException) on error.
this(OpenGL gl, GLuint target, GLuint usage)
{
_g... | D |
/**
* Copyright: © 2011-2014 llcoi Team
* License: Subject to the terms of the MIT license, as written in the included LICENSE file.
* Authors: llcoi Team, NCrashed <ncrashed@gmail.com>
*/
module ogre.c.fwd;
import core.stdc.config;
extern(C) nothrow:
/********* DEFINES **********/
enum EVENT_FRAME_STARTED = 1... | D |
/***********************************\
BLOODSPLATS
\***********************************/
//========================================
// Nutzerkonstanten
//========================================
const int BLOODSPLAT_NUM = 15; // Maximale Anzahl auf dem Screen
const int BLOODSPLAT_TEX = 6; // Maximale Anza... | D |
module bear.parserdebug;
import std.stdio;
struct ScopeDebug {
static uint tablvl = 0;
string name;
this(string f){
name = f;
foreach(i; 0..tablvl){
write("\t");
}
writeln(name ~ " {");
tablvl++;
if(tablvl > 100) throw new Exception("I think there's been an infinite loop");
}
~this(){
tablvl... | D |
module gtkD.gtk.SeparatorToolItem;
public import gtkD.gtkc.gtktypes;
private import gtkD.gtkc.gtk;
private import gtkD.glib.ConstructionException;
private import gtkD.gtk.ToolItem;
private import gtkD.gtk.ToolItem;
/**
* Description
* A GtkSeparatorItem is a GtkToolItem that separates groups of other
* Gt... | D |
module magra.actor;
import magra.actorlist;
//=======================================
//The base class for all actors in Magra.
//=======================================
class Actor
{
//The container tells us which list this actor belongs to.
ActorList container;
//An actor's tick() function is calle... | D |
// Written in the D programming language.
module reed.bulk_import;
import reed.database;
import reed.util;
package
{
immutable BulkImportAPIPath = buildUriPath(Database.APIPrefix, "import");
@trusted
string buildImportPath(in string collectionName, bool create)
{
import std.conv : text;
... | D |
/*
Copyright (c) 2015-2017 Timur Gafarov
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, dist... | D |
module engine.thirdparty.mruby.khash;
import std.stdint;
extern(C):
alias uint32_t khint_t;
| D |
module javaesque.concurrency.atomicref;
import core.sync.mutex;
auto atomicReference(V)(V v){
return new shared AtomicReference!V(v);
}
shared class AtomicReference(V) {
protected Mutex mutex;
protected V value;
this(V v){
mutex = cast(shared) new Mutex();
value = cast(shared) v;... | D |
/**
* Forms the symbols available to all D programs. Includes Object, which is
* the root of the class object hierarchy. This module is implicitly
* imported.
*
* Copyright: Copyright Digital Mars 2000 - 2011.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright, Sea... | D |
import msgtrans;
import hunt.logging;
enum ServerName = "test";
enum ClientName = "test";
enum TcpChannelPort = 9101;
enum WsChannelPort = 9102;
void main()
{
MessageTransportServer server = new MessageTransportServer(ServerName);
server.addChannel(new TcpServerChannel(TcpChannelPort));
server.addChann... | D |
a late time of life
a prolonged period of time
the time during which someone's life continues
a period of time containing 365 (or 366) days
a period of time occupying a regular part of a calendar year that is used for some particular activity
the period of time that it takes for a planet (as, e.g., Earth or Mars) to ma... | D |
/*
* This file is part of gtkD.
*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* gtkD is distribut... | D |
module awebview.wrapper.weakref;
import awebview.wrapper.cpp;
import carbon.nonametype;
template WeakRef(T)
if(is(typeof(T.weakRef(T.init.cppObj))))
{
alias WeakRef = typeof(T.weakRef(T.init.cppObj));
}
auto weakRef(T, H)(H handle)
if(is(typeof(T.weakRef(handle))))
{
return T.weakRef(handle);
}
| D |
/workspace/rocket-invention/hello-rocket/target/debug/deps/version_check-a86b02633c6cd68a.rmeta: /workspace/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.1.5/src/lib.rs
/workspace/rocket-invention/hello-rocket/target/debug/deps/libversion_check-a86b02633c6cd68a.rlib: /workspace/.cargo/registry/src/gi... | D |
/**
* This module provides OS specific helper function for DLL support
*
* Copyright: Copyright Digital Mars 2010 - 2012.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors: Rainer Schuetze
* Source:... | D |
module imports.spell9644b;
private int prib;
| D |
import hdf5.hdf5;
//
//import hdf5.hdf5;
//
import std.stdio;
import std.exception;
import std.string;
import std.conv;
import std.traits;
import std.file;
import std.range;
import std.array;
/**
Written 2014/2015 by Laeeth Isharc
Basic conversion of HDF5 types to D types and back
Not recursive so D structs must ... | D |
/**
* The thread module provides support for thread creation and management.
*
* Copyright: Copyright Sean Kelly 2005 - 2012.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors: Sean Kelly, Walter Bri... | D |
module rabbitmq.message.Frame;
import rabbitmq.message.Field;
struct Frame
{
public byte type;
public short channel;
public uint size;
public string toString() const
{
import std.format : format;
return "%s(type=%s, channel=%s, size=%s)".format(Frame.stringof, this.type, this... | D |
/Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationBallRotate.o : /Users/benormos/Desktop/MyFutureBox/Pods/NVActivityIndicatorView/NVActivityIndicatorView/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimati... | D |
module user.console;
extern(C):
// This contains the hexidecimal values for various colors for printing to the screen.
enum Color : ubyte {
Black = 0x00,
Blue = 0x01,
Green = 0x02,
Cyan = 0x03,
Red = 0x04,
Magenta = 0x05,
Yellow = 0x06,
LightGray = 0x07,
Gray ... | D |
/Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/DerivedData/XYiOS/Build/Intermediates/XYiOS.build/Debug-iphonesimulator/XYiOS.build/Objects-normal/x86_64/QuadCurve.o : /Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/XYiOS/Sepia.swift /Users/tom.power/Developer/MusicTechProjects/XYMusic... | 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 |
the trait of being resolute
a formal expression by a meeting
bring to an end
reach a conclusion after a discussion or deliberation
reach a decision
understand the meaning of
make clearly visible
find the solution
cause to go into a solution
| D |
///
module imap.response;
import imap.defines;
import imap.socket;
import imap.session;
import imap.set;
import imap.sil : SILdoc;
import std.typecons : tuple;
import core.time : Duration;
import arsd.email : IncomingEmailMessage;
import core.time : msecs;
/**
TODO:
- add optional response code w... | D |
module android.java.android.graphics.ImageFormat;
public import android.java.android.graphics.ImageFormat_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!ImageFormat;
import import0 = android.java.java.lang.Class;
| D |
/Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ServerTrustPolicy.o : /Users/hanykaram/Desktop/MVC/Pods/Alamofire/Source/MultipartFormData.swift /Users/hanykaram/Desktop/MVC/Pods/Alam... | D |
/home/peter/homework2-choupete/rust-find/target/debug/build/memchr-4abcdfff9b4c912f/build_script_build-4abcdfff9b4c912f: /home/peter/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.1.0/build.rs
/home/peter/homework2-choupete/rust-find/target/debug/build/memchr-4abcdfff9b4c912f/build_script_build-4abcdfff9b4c9... | D |
/Users/abelfernandez/projects/vapor-server/Hello/.build/debug/Core.build/StaticDataBuffer.swift.o : /Users/abelfernandez/projects/vapor-server/Hello/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/abelfernandez/projects/vapor-server/Hello/.build/checkouts/core.git-9210800844849382486/Sou... | D |
/**
* D header file for C99.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Sean Kelly,
Alex Rønne Petersen
* Standards: ISO/IEC 9899:1999 (E)
*/
/* Copyright Sean Kelly 2005 - 2009.
* Distr... | D |
module basics.help;
import std.array;
import std.algorithm;
import std.conv;
import std.exception;
import std.math;
import std.string;
import std.uni;
import std.utf;
pure int even(in int x) { return x - (x & 1); }
unittest {
assert (even( 5) == 4);
assert (even(-5) == -6);
assert (even(-6) == -6);
}
/... | D |
/+
+ Copyright (c) 2014-2019 The Khronos Group Inc.
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and/or associated documentation files (the "Materials"),
+ to deal in the Materials without restriction, including without limitation
+ the rights to use, copy, ... | D |
/home/mpodhradsky/Workspace/CPS/Capstone/RustyFlight/transpiled/SPRACINGF3/target/rls/debug/build/libc-9681a5e80345b91c/build_script_build-9681a5e80345b91c: /home/mpodhradsky/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs
/home/mpodhradsky/Workspace/CPS/Capstone/RustyFlight/transpiled/SPRACINGF3/... | D |
module grpc.GrpcServer;
import std.stdio;
import std.string;
import hunt.http.codec.http.frame;
import hunt.http.codec.http.model;
import hunt.http.codec.http.stream;
import hunt.http.server;
import hunt.http.server.HttpServer;
import hunt.http.server.ServerHttpHandler;
import hunt.http.server.ServerSessionListener;
... | D |
// ********************************
// Anmeldung der MenuItem-Instanzen
// ********************************
instance MENU_STATUS (C_MENU_DEF)
{
// Gilde, Level, XP und Magiekreis
items[0] = "MENU_ITEM_STATUS_HEADING";
// ---------------------------------------------
//items[1] = "MENU_ITEM_PLAYERGUILD";
items[1]... | D |
/**
This module defines several templates for testing whether a given object is a
_range, and what kind of _range it is:
$(BOOKTABLE ,
$(TR $(TD $(D $(LREF isInputRange)))
$(TD Tests if something is an $(I input _range), defined to be
something from which one can sequentially read data using the
... | D |
/Users/yohoo/Developer/leaveMyiPhone/DerivedData/leaveMyiPhone/Build/Intermediates/leaveMyiPhone.build/Debug-iphoneos/leaveMyiPhone.build/Objects-normal/armv7/AppDelegate.o : /Users/yohoo/Developer/leaveMyiPhone/leaveMyiPhone/ViewController.swift /Users/yohoo/Developer/leaveMyiPhone/leaveMyiPhone/AppDelegate.swift /App... | D |
/root/rust_projects/chapter_04_3/target/rls/debug/deps/chapter_04_3-7c3c9dcfd3d824ed.rmeta: src/main.rs
/root/rust_projects/chapter_04_3/target/rls/debug/deps/chapter_04_3-7c3c9dcfd3d824ed.d: src/main.rs
src/main.rs:
| D |
decouple.o: C:/Users/user/workspace/module_usb_audio/usb_buffer/decouple.xc
| D |
module xf.utils.RollingBuffer;
private {
import xf.Common;
import xf.utils.Error;
}
struct RollingBuffer {
static RollingBuffer opCall(void[] data) {
RollingBuffer res = void;
res.length = 0;
res.data = data;
res.start = 0;
res.end = 0;
return res;
}
void[] opSlice(uword from, uword to) {
ass... | D |
/home/ubuntu/code/rust/rust-programming/common-concepts/variables/target/rls/debug/deps/variables-33a92aa1427aa231.rmeta: src/main.rs
/home/ubuntu/code/rust/rust-programming/common-concepts/variables/target/rls/debug/deps/variables-33a92aa1427aa231.d: src/main.rs
src/main.rs:
| D |
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/URI.build/Parser/Parser+Public.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Engine-1.3.6/Sources/URI/PercentDecoding.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Engine-1.3.6/Sources/URI/Model/URI+Byte... | D |
/Users/mm/Developer/Github_Factory/tqyiosdemo/GitIOSDemo/DerivedData/GitIOSDemo/Build/Intermediates/GitIOSDemo.build/Debug-iphonesimulator/GitIOSDemo.build/Objects-normal/x86_64/HelloFile.o : /Users/mm/Developer/Github_Factory/tqyiosdemo/GitIOSDemo/GitIOSDemo/HelloFile.swift /Users/mm/Developer/Github_Factory/tqyiosdem... | D |
module ohm.volta.util;
import ir = volt.ir.ir;
import volt.token.location : Location;
ir.Function createSimpleFunction(string name)
{
Location location;
location.filename = name;
return createSimpleFunction(location, name);
}
ir.Function createSimpleFunction(Location location, string name)
{
auto fn = new ir.... | D |
/Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/postgresAPI/.build/debug/Core.build/Result.swift.o : /Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/postgresAPI/Packages/Core-1.0.0/Sources/Core/Array.swift /Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/postgresA... | D |
/Users/hannesvandenberghe/projectMovies/Build/Intermediates/ProjectFilms.build/Debug-iphonesimulator/ProjectFilms.build/Objects-normal/x86_64/AppDelegate.o : /Users/hannesvandenberghe/projectMovies/ProjectFilms/AppDelegate.swift /Users/hannesvandenberghe/projectMovies/ProjectFilms/SearchViewController.swift /Users/hann... | D |
give an incentive for action
| D |
/**
* Copyright: Fynn Schröder, 2019
* Author: Fynn Schröder
* License: MIT
*/
module seqtagsim.blas;
import std.typecons : Tuple, tuple;
import mir.ndslice;
/**
* Finds the most similar pairwise embeddings.
*/
void findMaxSimilarBatched(scope Slice!(const(float)*, 2) embeddings, scope Slice!(const(float)*, 2)... | D |
module EncoShared.Animation.BasicEaseFunctions;
import EncoShared;
import std.math;
mixin template Linear()
{
static double linear(double delta, double offset, double time)
{
return delta * time + offset;
}
}
mixin template Quadratic()
{
static double quadraticin(double delta, double offset, double time)
{
... | D |
module phase3.gui.MainShell;
import org.eclipse.swt.custom.ScrolledComposite;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widge... | D |
/*******************************************************************************
copyright: Copyright (c) 2004 Kris Bell. все rights reserved
license: BSD стиль: $(LICENSE)
version: Initial release: December 2005
author: Kris
*******************... | D |
//Copyright (c) 2014-2018 Tero Hänninen
//Boost Software License - Version 1.0 - August 17th, 2003
module imageformats;
import std.stdio : File, SEEK_SET, SEEK_CUR, SEEK_END;
import std.string : toLower, lastIndexOf;
import std.typecons : scoped;
public import imageformats.png;
public import imageformats.tga;
publi... | D |
module net.server.hotel;
/* A Hotel is a collection of Rooms, each room independent from the other,
* rooms. In each Room, there is a Festival, defining what's going on in the
* Room. The Hotel has a lobby, room #0, where you can't do anything special.
*
* Only the server knows about the hotel. Clients know their ... | D |
// This file is part of CCBI - Conforming Concurrent Befunge-98 Interpreter
// Copyright (c) 2006-2010 Matti Niemenmaa
// See license.txt, which you should have received together with this file, for
// copyright details.
// File created: 2006-04-27 16:13:32
module ccbi.random;
import tango.math.random.Twister;
// [... | D |
instance Mil_303_Torwache (Npc_Default)
{
// ------ NSC ------
name = "Tuerwache";
guild = GIL_MIL;
id = 303;
voice = 7;
flags = 0;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 3);
// ------ Kampf-Taktik ------
figh... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Template implementation.
*
* Copyright: Copyright (c) 1999-2016 by Digital Mars, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/L... | D |
/Users/alexalajbegovic/Desktop/SaveTheKittens/DerivedData/SaveTheKittens/Build/Intermediates/SaveTheKittens.build/Debug-iphonesimulator/SaveTheKittens.build/Objects-normal/x86_64/ViewController.o : /Users/alexalajbegovic/Desktop/SaveTheKittens/SaveTheKittens/AppDelegate.swift /Users/alexalajbegovic/Desktop/SaveTheKitte... | D |
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Service.build/Objects-normal/x86_64/ServiceFactory.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/service.git-1166999477643609831/Sources/Service/Services/ServiceID.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/... | D |
/**
* Written in the D programming language.
* Implementation of exception handling support routines for Posix and Win64.
*
* Copyright: Copyright Digital Mars 2000 - 2013.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying fi... | D |
// Written in the D programming language.
/**
* This module defines an Abstract Syntax Tree for the D language
*
* Examples:
* ---
* // TODO
* ---
*
* Copyright: Brian Schott 2013
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt Boost, License 1.0)
* Authors: Brian Schott
* Source: $(PHOBOSSRC std/d/... | D |
/*
* This file is part of gtkD.
*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* gtkD is distributed in th... | D |
traveling across
a shallow area in a stream that can be forded
a point where two lines (paths or arcs etc.) intersect
a junction where one street or road crosses another
a path (often marked) where something (as a street or railroad) can be crossed to get from one side to the other
(genetics) the act of mixing differen... | D |
module hunt.wechat.bean.scan.result.ProductCreateResult;
import hunt.wechat.bean.BaseResult;
class ProductCreateResult : BaseResult {
private Integer pid;
public this(Integer pid) {
this.pid = pid;
}
public Integer getPid() {
return pid;
}
public void setPid(Integer pid) {
... | D |
/**
Calculate directed minimam spanning tree
*/
module dkh.graph.directedmst;
import dkh.algorithm;
import dkh.graph.primitive;
/**
Information of directed mst
*/
struct DirectedMSTInfo(E, C) {
C cost; /// mst cost
E[] res; /// edge list
this(size_t n) {
cost = C(0);
res = new E[n];
}... | D |
/Users/yuvrajsingh/Globus_Management/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow.o : /Users/yuvrajsingh/Globus_Management/macos/Runner/AppDelegate.swift /Users/yuvrajsingh/Globus_Management/macos/Flutter/GeneratedPluginRegistrant.swift /Users/yuvrajsin... | D |
module poseidon.controller.property.generalpage;
public
{
import dwt.all;
import poseidon.globals;
import poseidon.controller.gui;
import poseidon.i18n.itranslatable;
import poseidon.util.layoutshop;
import poseidon.util.miscutil;
import poseidon.controller.property.ipropertypage;
}
class GeneralPage : Abstra... | D |
// Written in the D programming language.
/**
Classes and functions for handling and transcoding between various encodings.
For cases where the encoding is known at compile-time, functions are provided
for arbitrary encoding and decoding of characters, arbitrary transcoding
between strings of different type, as well ... | D |
/Users/andyzhu/Git/IOS_Development/Assignment3/DerivedData/Assignment3/Build/Intermediates/IBDesignables/Intermediates/Assignment3.build/Debug-iphonesimulator/Assignment3.build/Objects-normal/x86_64/CalculatorBrain.o : /Users/andyzhu/Git/IOS_Development/Assignment3/Assignment3/CalculatorBrain.swift /Users/andyzhu/Git/I... | D |
instance Mil_326_Miliz(Npc_Default)
{
name[0] = NAME_Miliz;
guild = GIL_MIL;
id = 326;
voice = 6;
flags = 0;
npcType = NPCTYPE_AMBIENT;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_1h_Mil_Sword);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_FatBald",... | D |
module main;
import matrix;
import std.stdio;
// Operators
void main(){
auto a = new fMat2(1.0f);
auto b = new fMat2(2.0f);
auto c = a * 3.0f;
writeln("a", fMat2.equal(c, new fMat2(3.0f)));
c.print(true);
writeln("teste: ", c == new fMat2(3.0f));
} | D |
module app.auth.AuthUserMiddleware;
import hunt.framework;
import app.exception.MessageException;
import app.message.ResultMessage;
/**
*
*/
class AuthUserMiddleware : AuthMiddleware
{
shared static this() {
MiddlewareInterface.register!(typeof(this));
}
override protected bool onAccessable(Req... | D |
/home/tyler/Documents/cryptopals/Rust/set_1_c4/target/debug/set_1_c4-0ab44e7a87fb7dc9: /home/tyler/Documents/cryptopals/Rust/set_1_c4/src/main.rs /home/tyler/Documents/cryptopals/Rust/set_1_c4/src/crypto_functions.rs
| D |
module filed.service;
import filed.settings;
import filed.metadata;
import vibe.d;
import std.algorithm;
import std.file;
import std.path;
import std.process;
import std.regex;
import std.stdio;
import std.uuid;
class WebService
{
this(FiledSettings settings)
{
settings_ = settings;
}
@pa... | D |
module yamlserialized.serialization;
import std.conv;
import std.traits;
import yamlserialized.types;
import dyaml;
@safe:
/// Convert an array of type T to a D-YAML Node
Node toYAMLNode(T)(in ref T array) if (isArray!T) {
alias ElementType = ForeachType!T;
Node[] nodes;
// Iterate each item in the a... | D |
module android.java.android.telephony.CellSignalStrengthGsm_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.lang.Class_d_interface;
import import0 = android.java.android.os... | D |
/**
* Windows API header module
*
* Translated from MinGW API for MS-Windows 3.10
*
* Authors: Stewart Gordon
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_idispids.d)
*/
module core.sys.windows.idispids;
version (Windows):
enu... | D |
// https://issues.dlang.org/show_bug.cgi?id=23569
/*
TEST_OUTPUT:
---
fail_compilation/ice23569.d(18): Error: cannot compare classes for equality because `object.Object` was not declared
---
*/
module object;
@safe unittest1()
{
class F
{
this(int )
{
}
}
auto ice23569 = new F(0... | D |
module spasm.bindings.webappsec;
import spasm.types;
@safe:
nothrow:
enum ReferrerPolicy {
none,
no_referrer,
no_referrer_when_downgrade,
same_origin,
origin,
strict_origin,
origin_when_cross_origin,
strict_origin_when_cross_origin,
unsafe_url
}
| D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.