code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
instance PIR_1350_Addon_Francis(Npc_Default)
{
name[0] = "Francis";
guild = GIL_PIR;
id = 1350;
voice = 13;
flags = FALSE;
npcType = npctype_main;
aivar[AIV_MM_RestEnd] = TRUE;
B_SetAttributesToChapter(self,4);
fight_tactic = FAI_HUMAN_MASTER;
EquipItem(self,ItMw_Piratensaebel);
CreateInvItems(self,ITKE_Gre... | D |
/**
Common classes for HTTP clients and servers.
Copyright: © 2012 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig, Jan Krüger
*/
module vibe.http.common;
public import vibe.http.status;
import vibe.core.log;
import vibe.c... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string;
void main()
{
int n, k, x, y;
readf("%d\n%d\n%d\n%d\n", &n, &k, &x, &y);
writeln((n > k ? k : n)*x + (n - k < 0 ? 0 : n - k)*y);
} | D |
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/wbuild/target/release/build/memchr-4597038855b9c268/build_script_build-4597038855b9c268: /Users/kirstenrichard/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/build.rs
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/wbuild... | D |
module threading.dict;
import std.string : format;
/**
* Exception type made for dict handlers.
*/
class DictException : Throwable {
public:
/**
* Creates a new instance of DictException.
* Params:
* msg = The message of the exception.
*/
this(string msg) {
super(msg);
}
}
/**
* A key value based dict coll... | 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 |
/* This file was generated by syncqt. */
#define QTCORE_VERSION_STR "5.4.2"
#define QTCORE_VERSION 0x050402
#endif // QT_QTCORE_VERSION_H
| D |
const int _render_wld = 0;
var int _render_list;
class RenderItem {
var int inst;
var int itmPtr; // oCItem*
var int view;
var int view_open;
var int priority; // standardmäßig 0! TODO: Höhere Priorität = weiter oben oder unten?
};
instance RenderItem@(RenderItem);
func int Render_Ad... | D |
/*
DSFML - The Simple and Fast Multimedia Library for D
Copyright (c) 2013 - 2015 Jeremy DeHaan (dehaan.jeremiah@gmail.com)
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is gran... | D |
instance DIA_Cord_EXIT(C_Info)
{
npc = SLD_805_Cord;
nr = 999;
condition = DIA_Cord_EXIT_Condition;
information = DIA_Cord_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Cord_EXIT_Condition()
{
return TRUE;
};
func void DIA_Cord_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance... | D |
module leveldb;
public import
leveldb.db,
leveldb.exceptions,
leveldb.slice,
leveldb.options;
private import deimos.leveldb.leveldb;
public __gshared immutable int LEVELDB_MAJOR_VERSION, LEVELDB_MINOR_VERSION;
shared static this()
{
LEVELDB_MAJOR_VERSION = leveldb_major_version();
LEVELDB_MI... | D |
module main_;
import commonImports;
import world_ .world_ ;
import galactic_ .galactic_network_ ;
import galactic_ .galactic_mgr_ ;
import terminal_ .terminal_network_ ;
import terminal_ .ship_ ;
import loose_.sleep_ : sleep;
import core.time;
void main() {
auto galacticNetwork = new GalacticNetwork ;
auto termina... | D |
instance DIA_Pedro_DI_EXIT(C_Info)
{
npc = NOV_600_Pedro_DI;
nr = 999;
condition = DIA_Pedro_DI_EXIT_Condition;
information = DIA_Pedro_DI_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Pedro_DI_EXIT_Condition()
{
return TRUE;
};
func void DIA_Pedro_DI_EXIT_Info()
{
AI_StopProcessIn... | D |
// Explicitly undocumented. It will be removed in April 2015.
deprecated("Please use mystd.string.format, mystd.conv.to or mystd.conv.parse instead")
module mystd.metastrings;
| D |
struct S {@safe invariant { assert(true); }}
| 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 |
// Written in the D programming language.
/**
Source: $(PHOBOSSRC std/experimental/allocator/building_blocks/fallback_allocator.d)
*/
module std.experimental.allocator.building_blocks.fallback_allocator;
import std.experimental.allocator.common;
/**
`FallbackAllocator` is the allocator equivalent of an "or" operator ... | D |
module android.java.android.widget.SimpleCursorAdapter_ViewBinder;
public import android.java.android.widget.SimpleCursorAdapter_ViewBinder_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!SimpleCursorAdapter_ViewBinder;
import import2 = android.java.java.lang.Class;
| D |
instance DIA_Pyrokar_EXIT(DIA_Proto_End)
{
npc = KDF_500_Pyrokar;
};
/////////////////////////////////////// ОДО /////////////////////////////////////////////
//===================================================
instance DIA_Pyrokar_Bless_Odo(C_Info)
{
npc = KDF_500_Pyrokar;
nr = 2;
condition = DIA_Pyrokar_Bles... | D |
module logging.sinks.FileLogSink;
import std.datetime;
import std.stdio;
import logging.sinks.LogSink;
import logging.formatters;
public class FileLogSink : LogSinkBase
{
private File _file;
public this(string filename, Formatter fmt = null)
{
_file.open(filename, "a");
_file.setvbuf(300, _IOLBF);
if(fmt ... | D |
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/Vapor.build/Response/ResponseCodable.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/vapor/Sour... | D |
/Users/yuga/Documents/ios20161219/09_PersistData/FoodTracker/Build/Intermediates/FoodTracker.build/Debug-iphonesimulator/FoodTracker.build/Objects-normal/x86_64/MealTableViewController.o : /Users/yuga/Documents/ios20161219/09_PersistData/FoodTracker/FoodTracker/DateManager.swift /Users/yuga/Documents/ios20161219/09_Per... | D |
/*******************************************************************************
Copyright: Copyright (C) 2008 Aaron Craelius & Kris Bell
все rights reserved
License: BSD стиль: $(LICENSE)
version: July 2008: Initial release
Authors: Aaron, Kris
... | 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 |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM ROCKTYPE
340 40 5 0 80 100 -33.7999992 150.699997 1768 10 10 intrusives
325 55 5 0 80 100 -33.9000015 151.300003 1766 10 10 intrusives, basalt
330.100006 45.9000015 3.9000001 600 80 100 -33.7999992 150.800003 83 7.5999999 7.5999999 intrusives, breccia
307.2... | D |
/*******************************************************************************
Memory dumps manager
This module manages all the dumping/loading related operations for channels.
It handles opening files, doing the actual dumping, renaming, backing up,
etc.
copyright:
Copyright (c) 2013-2... | D |
module mci.debugger.server;
import core.thread,
std.signals,
std.socket,
mci.core.atomic,
mci.core.io,
mci.core.nullable,
mci.core.sync,
mci.debugger.protocol,
mci.debugger.utilities;
public alias void delegate() InterruptCallback;
public abstract class Debugge... | D |
module common.util.config.token.section;
import common.util.config.token.base : Token;
import common.util.config.token.key : KeyToken;
import common.util.config.pair.base : Pair;
import common.util.config.parser : Parser;
import std.string : stripLeft;
debug import std.stdio : writeln, writefln;
class SectionToken ... | D |
/Users/dan/Developer/iOS/selectsearch/DerivedData/selectsearch/Build/Intermediates/selectsearch.build/Debug-iphonesimulator/IMDBSearch.build/Objects-normal/x86_64/ActionViewController.o : /Users/dan/Developer/iOS/selectsearch/IMDBSearch/ActionViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/Xc... | D |
module dagger.pixfmt;
public import dagger.color;
import dagger.basics;
struct PixfmtGray(T)
{
alias PixfmtGray!T SelfType;
alias T ComponentType;
T l;
this(U)(Gray!U c)
{
set(c);
}
Gray!U get(U=T)() const
{
return Gray!U(l);
}
void set(U)(Gray!U c)
{
... | D |
// Written in the D programming language.
/**
Functions and types that manipulate built-in arrays and associative arrays.
This module provides all kinds of functions to create, manipulate or convert arrays:
$(SCRIPT inhibitQuickIndex = 1;)
$(BOOKTABLE ,
$(TR $(TH Function Name) $(TH Description)
)
$(TR $(TD $(LRE... | D |
module snippet16;
import dwt.graphics.Point;
import dwt.graphics.Rectangle;
import dwt.widgets.Display;
import dwt.widgets.Shell;
import dwt.dwthelper.Runnable;
import dwt.dwthelper.utils;
version(Tango){
import tango.io.Stdout;
void writeln(in char[] line) {
Stdout(line)("\n").flush();
}
} else ... | D |
module betterc.async.all;
public:
@nogc:
nothrow:
extern(C):
import betterc.all;
import betterc.async;
| D |
// https://issues.dlang.org/show_bug.cgi?id=16140
int fun()
{
static int count = 0;
if (count == 3)
{
count = 0;
return 0;
}
++count;
return count;
}
void main()
{
uint[] res;
while(auto value = fun())
res ~= value;
assert(res == [1, 2, 3]);
res.length ... | D |
/*******************************************************************************
* Copyright (c) 2000, 2006 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 |
(zoology) the cavity (in birds, reptiles, amphibians, most fish, and monotremes but not mammals) at the end of the digestive tract into which the intestinal, genital, and urinary tracts open
a waste pipe that carries away sewage or surface water
| D |
/home/zbf/workspace/git/RTAP/target/debug/deps/sha1-13a4710ccb187b9b.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/sha-1-0.7.0/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/sha-1-0.7.0/src/utils.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06f... | D |
/root/tkms/TSS/block-padding/target/debug/deps/sgx_unwind-3c4b4c7f5645a0ad.rmeta: /root/.cargo/git/checkouts/teaclave-sgx-sdk-be25c2ad2f03718d/a6a172e/sgx_unwind/lib.rs /root/.cargo/git/checkouts/teaclave-sgx-sdk-be25c2ad2f03718d/a6a172e/sgx_unwind/macros.rs /root/.cargo/git/checkouts/teaclave-sgx-sdk-be25c2ad2f03718d/... | D |
module widget.controller.sales.quick_stats.quick_stats;
import widget;
class SalesQuickStatsController : WidgetControllerPrototype{
this(){
super();
this.name = "quick_stats";
this.web_interface_settings.urlPrefix = "/"~this.name;
this.router.registerWebInterface(this, this.web_interface_settings);
}
@met... | D |
/*
* Copyright (c) 2007-2013 Scott Lembcke and Howling Moon Software
*
* 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 ... | D |
/**
* Documentation: https://dlang.org/phobos/dmd_permissivevisitor.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/permissivevisitor.d
*/
module dmd.permissivevisitor;
import dmd.parsetimevisitor;
/** PermissiveVisitor overrides all the visit methods in the parent class
* that assert(0... | D |
/** D bindings for GSL.
Authors: Chibisi Chima-Okereke
Copyright: Copyright (c) 2016, Chibisi Chima-Okereke. All rights reserved.
License: Boost License 1.0
*/
module gsl.rng;
import gsl.errno;
import core.stdc.stdio : FILE;
import core.stdc.config : c_ulong;
extern (C):
struct gsl_rng_type
{
... | D |
module data_provider;
import std.algorithm: map;
import gfm.math: vec3f, vec4f, box3f;
import data_item: DataItem, Attr;
import vertex_provider: VertexProvider;
ref box3f updateBoundingBox(ref box3f one, ref const(box3f) another)
{
if(one.min.x > another.min.x)
one.min.x = another.min.x;
if(one.min.... | D |
module etc.c.sqlite3;
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
... | D |
//# cructs
module stringj;
private import std.stdio, std.file;
void main() {
string a, b;
a = "House"; // assign a value to a
b = a; // /copy/ (assign) a to b //# cructs
b ~= " cat"; // add to b
writeln( a ); // print a to see if it is still just what it was first assigned to and it is.
auto bytes = cast(uby... | D |
import std.stdio, std.string, std.conv, std.algorithm;
void main(){
int n, m, q; rd(n, m, q);
struct T{int l, r, t, idx;}
T[] seqs;
foreach(i; 0..m){
int l, r; rd(l, r);
seqs~=T(l-1, r-1, 0, i);
}
foreach(i; 0..q){
int l, r; rd(l, r);
seqs~=T(l-1, r-1, 1, i);
}
seqs.sort!((a, b)=>(a.r==... | D |
/* This example builds on the previous example by the addition of
two methods which allow users of this class to set and obtain the
value in the iName instance variable. */
#include <string.h>
defclass Class1 {
char iName[30];
int iCode;
iData;
};
/* Methods are declared in a similar fashion to C... | D |
// --- Day 18: Like a GIF For Your Yard ---
// After the million lights incident, the fire code has gotten stricter: now, at
// most ten thousand lights are allowed. You arrange them in a 100x100 grid.
// Never one to let you down, Santa again mails you instructions on the ideal
// lighting configuration. With so few... | D |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** License... | D |
instance Mil_336_Rick(Npc_Default)
{
name[0] = "Rick";
guild = GIL_NONE;
id = 336;
voice = 10;
flags = 0;
npcType = npctype_main;
aivar[AIV_DropDeadAndKill] = TRUE;
aivar[AIV_IgnoresArmor] = TRUE;
B_SetAttributesToChapter(self,1);
fight_tactic = FAI_HUMAN_COWARD;
EquipItem(self,ItMw_1h_Mil_Sword);
B_Create... | D |
module engine.core.multithreading;
public:
import engine.core.multithreading.fiber;
import engine.core.multithreading.fiber_manager;
| D |
module engine.core.templates.core_templates;
import engine.core.object;
void Swap( T )( ref T a, ref T b ) {
T t = a;
a = b;
b = t;
}
bool isType( T, U )( U obj ) {
return Cast!T( obj ) !is null;
}
| 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/license... | D |
//*****************************************************************************
//
// Model combine vertex data and material
//
//*****************************************************************************
module engine.asset.types.model;
//-------------------------------------------------------------------------
... | 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="01_SourceLeft_ClassDiagram_Ope... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* 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/LICENSE_1_0.txt, Boost License 1... | D |
// Note: this is a godbolt template that can help to new intrinsics
import core.simd;
public import core.math: sqrt; // since it's an intrinsic
version(GNU) import gcc.builtins;
version(LDC) import ldc.simd;
version(LDC) import ldc.intrinsics;
version(LDC) import ldc.gccbuiltins_x86;
/// Unpack and interleave 32-bit ... | D |
/Users/freebird/Desktop/Work/wokinprogress/Bump/Bump/build/Pods.build/Debug-iphonesimulator/Gemini.build/Objects-normal/x86_64/CubeAnimatable.o : /Users/freebird/Desktop/Work/wokinprogress/Bump/Bump/Pods/Gemini/Gemini/CubeAnimatable.swift /Users/freebird/Desktop/Work/wokinprogress/Bump/Bump/Pods/Gemini/Gemini/UIAppeara... | D |
/*******************************************************************************
Connection registry interface.
Describes a registry of node connections to be kept by a client, with
methods to add nodes to the registry and to assign requests to one or more
of the registered nodes.
copyright: ... | D |
// ************************************************************************************************
// Wirkung und Kosten von Tränken
// ************************************************************************************************
const int Value_HpEssenz = 25; const int HP_Essenz = 50;
const int Value_HpExtr... | D |
/Users/user143130/Desktop/Tumblr.Yeah/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Notifications.o : /Users/user143130/Desktop/Tumblr.Yeah/Pods/Alamofire/Source/MultipartFormData.swift /Users/user143130/Desktop/Tumblr.Yeah/Pods/Alamofire/Source/Timeline.swift /Users... | D |
/**
* Wrend module.
*
* License:
* MIT. See LICENSE for full details.
*/
module wrend;
public import wrend.wren;
| D |
module UnrealScript.UTGame.GFxUDKFrontEnd_Settings;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.UTGame.GFxUDKFrontEnd_SettingsBase;
import UnrealScript.GFxUI.GFxObject;
extern(C++) interface GFxUDKFrontEnd_Settings : GFxUDKFrontEnd_SettingsBase
{
public extern(D):
private static ... | D |
instance Mod_7323_Paladingeist_NW (Npc_Default)
{
// ------ NSC ------
name = "Paladingeist";
guild = GIL_NONE;
id = 7323;
voice = 0;
flags = NPC_FLAG_GHOST|2;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 5); //setzt Att... | D |
/*
DSFML - The Simple and Fast Multimedia Library for D
Copyright (c) <2013> <Jeremy DeHaan>
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this softw... | D |
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/Vapor.build/Error/Error.swift.o : /Users/mu/Hello/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/mu/Hello/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/mu/Hello/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.s... | D |
module disassembler.modrm;
import disassembler.all;
/**
* Mode-Register-Memory
*
* | 7 6 | 5 4 3 | 2 1 0 |
* | mod | reg | r/m |
*/
struct ModRM {
uint mod;
uint reg;
uint rm;
this(uint i) {
mod = (i >>> 6) & 0b11;
reg = (i >>> 3) & 0b111;
rm = (i & 0b111);
}
this(uint i, Parser p) {
this(i)... | D |
a rapid rise
the act of rising upward into the air
move along very quickly
move with a low humming noise
rise rapidly
| D |
module UnrealScript.TribesGame.TrAttachment_STGrenade;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.TribesGame.TrDeviceAttachment;
extern(C++) interface TrAttachment_STGrenade : TrDeviceAttachment
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property fi... | D |
/*******************************************************************************
Implementation of DHT 'Put' request
copyright:
Copyright (c) 2015-2017 dunnhumby Germany GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
******************... | D |
// URL: https://atcoder.jp/contests/soundhound2018-summer-qual/tasks/soundhound2018_summer_qual_b
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;
auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void pickV(R,T...)... | D |
/*
* c.d
*
* This module binds the C language to D.
*
* Author: Dave Wilkinson
* Originated: July 7th, 2009
*
*/
module binding.c;
/* C long types */
version(PlatformWindows) {
}
else {
pragma(lib, `"c"`);
}
version(GNU) {
import gcc.builtins;
alias __builtin_Clong Clong_t;
alias __builtin_Culong C... | D |
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/URI.build/Objects-normal/x86_64/Parser.o : /Users/Yowa/WorkSpace/Pokedex/Packages/Engine-1.0.0/Sources/URI/PercentDecoding.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Engine-1.0.0/Sources/URI/Model/URI+Byte.swift /Users/Yowa/WorkSpace/Pokedex/Packag... | D |
/Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/ForexWatchlist.build/Debug-iphonesimulator/ForexWatchlist.build/Objects-normal/x86_64/AppDelegate.o : /Users/deepansh/Desktop/ForexWatchlist/ForexWatchlist/SceneDelegate.swift /Users/deepansh/Desktop/ForexWatchlist/ForexWatchl... | D |
import std.stdio;
void main(){
int i = 10;
i == 10;
} | D |
/*#D*/
// Copyright 2012, Jakob Bornecrantz.
// SPDX-License-Identifier: BSL-1.0
module volt.semantic.mangle;
import watt.conv : toString;
import watt.text.format : format;
import watt.text.sink : Sink, StringSink;
import ir = volta.ir;
import volta.util.util;
import volt.errors;
/*!
* Mangle the name of type if ... | 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 |
ossl_digest.c ossl.h android/extconf.h /Users/user/.rvm/gems/ruby-1.9.3-p392/gems/rhodes-3.5.1.13/platform/shared/ruby/include/ruby.h /Users/user/.rvm/gems/ruby-1.9.3-p392/gems/rhodes-3.5.1.13/platform/shared/ruby/include/ruby/ruby.h /Users/user/.rvm/gems/ruby-1.9.3-p392/gems/rhodes-3.5.1.13/platform/shared/ruby/... | D |
/Users/thomaslacan/git/MyJogs-vapor/.build/x86_64-apple-macosx10.10/debug/Validation.build/Validators/CharacterSetValidator.swift.o : /Users/thomaslacan/git/MyJogs-vapor/.build/checkouts/validation.git-2977145303676801164/Sources/Validation/Validatable.swift /Users/thomaslacan/git/MyJogs-vapor/.build/checkouts/validati... | D |
/*******************************************************************************
* Copyright (c) 2000, 2003 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... | D |
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/Core.build/String+Utilities.swift.o : /Users/mu/Hello/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/mu/Hello/.build/checkouts/core/Sources/Core/NestedData.swift /Users/mu/Hello/.build/checkouts/core/Sources/Core/Thread+Async.swift /Users/mu/Hello/.build/... | D |
/**
A HTTP 1.1/1.0 server implementation.
Copyright: © 2012-2013 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig, Jan Krüger, Ilya Shipunov
*/
module vibe.http.server;
public import vibe.core.net;
public import vibe.http.co... | D |
/**
Helpers for working with user-defined attributes that can be attached to
function or method to modify its behavior. In some sense those are similar to
Python decorator. D does not support this feature natively but
it can be emulated within certain code generation framework.
Copyright: © 2013 RejectedSoftware ... | D |
module RedirectStdoutGui;
/*
This is an initial attempt at a realtime GUI-based stdout redirection.
This app spawns another app with redirected stdout. The child
app prints some strings to stdout at regular intervals (via a timer).
We capture the strings and draw them to the screen via DrawText.
T... | D |
the immediate descendants of a person
something that comes into existence as a result
any immature animal
| D |
/**
* Contains main program entry point and support routines.
*
* Copyright: Copyright Digital Mars 2000 - 2010.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Walter Bright, Sean Kelly
*/
/* Copyright Digital Mars 2000 - 2010.
* Distributed under the Bo... | D |
/home/ken/gits/rustground/6_enums_patterns/option-t/target/debug/option-t: /home/ken/gits/rustground/6_enums_patterns/option-t/src/main.rs
| D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
11.3000002 54.7999992 26.7999992 12.6999998 120 146 -9.89999962 124.199997 1783 18.7000008 31.6000004 0.0275652382 sediments, redbeds
88.0999985 51.4000015 19.2000008 13.1999998 120 146 -9.89999962 124.199997 1782 13.3999996 22.7000008 0.1583099... | D |
the state of being contaminated
place under suspicion or cast doubt upon
contaminate with a disease or microorganism
| D |
/Users/waqar/Exercism/rust/snake_game/target/rls/debug/deps/gl-49ab8f4b09ce5904.rmeta: /Users/waqar/.cargo/registry/src/github.com-1ecc6299db9ec823/gl-0.11.0/src/lib.rs /Users/waqar/Exercism/rust/snake_game/target/rls/debug/build/gl-2ee21a398fc43b41/out/bindings.rs
/Users/waqar/Exercism/rust/snake_game/target/rls/debu... | D |
/**
This module mostly exist to have a bridge with the ggplotd code and the ggplotd.color code. That is because the ggplotd.color code might become part of phobos one day and I don't want to depend directly on ggplotd's implementation, so that it stays easy to switch to an alternative (phobos) based implementation.
*... | D |
// ******************
// SPL_ArmyOfDarkness
// ******************
const int SPL_Cost_ArmyOfDarkness = 150;
INSTANCE Spell_ArmyOfDarkness (C_Spell_Proto)
{
time_per_mana = 0;
targetCollectAlgo = TARGET_COLLECT_NONE;
};
func int Spell_Logic_ArmyOfDarkness (var int manaInvested)
{
if (Summoned_Monster >= Summ... | D |
/Users/thomaslacan/git/MyJogs-vapor/.build/x86_64-apple-macosx10.10/debug/Service.build/Container/ContainerAlias.swift.o : /Users/thomaslacan/git/MyJogs-vapor/.build/checkouts/service.git-3263332778848588464/Sources/Service/Services/ServiceID.swift /Users/thomaslacan/git/MyJogs-vapor/.build/checkouts/service.git-326333... | D |
/media/chris/Data/Github/MultimediaSignalProcessingClass/Ordered-Dithering/target/debug/build/byteorder-7b976e0034b408c7/build_script_build-7b976e0034b408c7: /home/chris/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.2/build.rs
/media/chris/Data/Github/MultimediaSignalProcessingClass/Ordered-Dithering/t... | D |
module android.java.android.view.View_OnFocusChangeListener;
public import android.java.android.view.View_OnFocusChangeListener_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!View_OnFocusChangeListener;
import import1 = android.java.java.lang.Class;
| D |
/Users/abelfernandez/projects/vapor-server/Hello/.build/debug/Cache.build/MemoryCache.swift.o : /Users/abelfernandez/projects/vapor-server/Hello/.build/checkouts/vapor.git-5492988889259800272/Sources/Cache/MemoryCache.swift /Users/abelfernandez/projects/vapor-server/Hello/.build/checkouts/vapor.git-5492988889259800272/... | D |
var __wxLibrary={fileName: 'WASubContext.js', envType: 'Service', contextType: 'App:SubContext', execStart: Date.now()}
try { var __defaultStackLimit__ = Error.stackTraceLimit; Error.stackTraceLimit = 40 } catch (e) {};var __WASubContextStartTime__ = Date.now();(function(__exportGlobal__){var __clientsubcontext = true;... | D |
instance DIA_1052_Wegelagerer_EXIT(C_Info)
{
npc = BDT_1052_Wegelagerer;
nr = 999;
condition = DIA_1052_Wegelagerer_EXIT_Condition;
information = DIA_1052_Wegelagerer_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_1052_Wegelagerer_EXIT_Condition()
{
return TRUE;
};
func void DIA_1052... | D |
any of several tart red or black berries used primarily for jellies and jams
any of various deciduous shrubs of the genus Ribes bearing currants
small dried seedless raisin grown in the Mediterranean region and California
| D |
/*******************************************************************************
copyright: Copyright (C) 1997--2004, Makoto Matsumoto,
Takuji Nishimura, and Eric Landry; All rights reserved
license: BSD style: $(LICENSE)
version: Jan 2008: ... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.