code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/*
TEST_OUTPUT:
---
fail_compilation/fail11375.d(17): Error: constructor `fail11375.D!().D.this` is not `nothrow`
fail_compilation/fail11375.d(15): Error: function `D main` may throw but is marked as `nothrow`
---
*/
class B {
this() {}
}
class D() : B {}
void main() nothrow
{
auto d = new D!()();
}
| D |
module akaricastd.socket;
import std.stdio;
import std.conv;
import std.algorithm;
import std.socket : InternetAddress, Socket, SocketException, SocketSet, TcpSocket;
import std.experimental.logger;
import djrpc.v2 : JsonRpc2Request, JsonRpc2Response;
import akaricastd.player : Player;
import akaricastd.playlist : Pla... | D |
/*
TEST_OUTPUT:
---
fail_compilation/diag8714.d(9): Error: function `diag8714.foo` circular dependency. Functions cannot be interpreted while being compiled
fail_compilation/diag8714.d(15): called from here: `foo("somestring")`
---
*/
string foo(string f)
{
if (f == "somestring")
{
return "got s... | D |
import std.stdio;
import cuboid.world;
import cuboid.worldloader;
void main(string[] args)
{
writeln("Initialising World...");
auto myWorld = new World(4);
}
| D |
/**
* Copyright (c) 2015-2016 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 |
# FIXED
driverlib/gpio.obj: C:/ti/TivaWare_C_Series-2.1.3.156/driverlib/gpio.c
driverlib/gpio.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.7.LTS/include/stdbool.h
driverlib/gpio.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.7.LTS/include/stdint.h
driverlib/gpio.obj: C:/ti/TivaWare_C_Series-2.1.3.156/inc/hw_gpio.h... | D |
import vibe.d;
import std.random;
enum numSeries = 7;
struct Room {
WebSocket socket;
int[numSeries] curVals;
this(WebSocket sock) {
socket = sock;
foreach(ref x; curVals) {
x = 0;
}
}
void sendData() {
auto json = serializeToJsonString(curVals);
socket.send(json);
}
}
private ... | D |
/Users/Fklemke/swiftbenchmarkproject/vaporJSON/.build/debug/Crypto.build/Random/Hash+Random.swift.o : /Users/Fklemke/swiftbenchmarkproject/vaporJSON/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC.swift /Users/Fklemke/swiftbenchmarkproject/vaporJSON/.build/checkouts/crypto.git-79802591295113659... | D |
/workspace/triathlon_tracker/triathlon-tracker-lib/target/rls/debug/build/proc-macro-hack-b0b37f556499f9e7/build_script_build-b0b37f556499f9e7: /workspace/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.19/build.rs
/workspace/triathlon_tracker/triathlon-tracker-lib/target/rls/debug/build/proc-macro... | D |
instance NOV_1353_NOVIZE(NPC_DEFAULT)
{
name[0] = NAME_NOVIZE;
npctype = NPCTYPE_AMBIENT;
guild = GIL_NOV;
level = 3;
flags = 0;
voice = 3;
id = 1353;
attribute[ATR_STRENGTH] = 10;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 76;
attri... | D |
/Users/Mandy_Cho/Documents/getS(ch)wifty/Scrambles/DerivedData/Scrambles/Build/Intermediates/Scrambles.build/Release-iphonesimulator/Scrambles.build/Objects-normal/x86_64/MasterViewController.o : /Users/Mandy_Cho/Documents/getS(ch)wifty/Scrambles/Scrambles/MasterViewController.swift /Users/Mandy_Cho/Documents/getS(ch)w... | D |
module android.java.android.bluetooth.le.ScanCallback_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.android.bluetooth.le.ScanResult_d_interface;
import import2 = android.java.... | D |
/**
* Allocate memory using `malloc` or the GC depending on the configuration.
*
* Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* Authors: Walter Bright, http://www.digitalmars.com
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: ... | D |
module android.java.android.app.WallpaperManager_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import8 = android.java.android.content.Intent_d_interface;
import import10 = android.java.android.graph... | D |
module lcda.compat._misc;
import std.stdio;
import std.exception;
import nwn.nwscript;
void SignalBug(NWString sMessage)
{
stderr.writeln("\x1b[1;31mERROR: " ~ sMessage ~ "\x1b[m");
}
void Enforce(NWInt result, NWString msg, NWString file, NWInt line){
if(!result){
SignalBug(file ~ ":" ~ IntToString(line) ~ ":... | D |
module UnrealScript.TribesGame.TrPlayerSkin3PData;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Core.UObject;
import UnrealScript.Engine.SkeletalMesh;
extern(C++) interface TrPlayerSkin3PData : UObject
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@prope... | D |
module ddebug.gdb.gdbinterface;
public import ddebug.common.debugger;
import ddebug.common.execution;
import dlangui.core.logger;
import ddebug.common.queue;
import dlangide.builders.extprocess;
import ddebug.gdb.gdbmiparser;
import std.utf;
import std.conv : to;
import std.array : empty;
import std.algorithm : start... | D |
import std.stdio;
import dsfml.graphics;
import dsfml.system;
void main()
{
RenderWindow window = new RenderWindow(VideoMode(800, 600), "DSFML!");
while (window.isOpen()) {
Event event;
while (window.pollEvent(event)) {
if (event.type == Event.EventType.Closed) {
window.close();
}
}
... | D |
[Service]
ExecStart=/usr/bin/node /root/bone/javascripts/mixpanel-ddc/index.js
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=ddc-mcp-serv
User=root
Group=root
Environment=NODE_ENV=production
[Install]
WantedBy=multi-user.target | D |
module zua.compiler.sourcemap;
import std.typecons;
alias SourceIndices = Tuple!(size_t, "start", size_t, "end");
/** An object that maps a bytecode index onto source indices */
final class SourceMap {
private Tuple!(SourceIndices, size_t)[] data;
private size_t ip;
/** Write to source map */
void write(size_t ... | D |
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/JSON.build/JSONRepresentable.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/json.git-9153249592855998091/Sources/JSON/JSON.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/jso... | D |
/*#D*/
// Copyright © 2013-2016, Jakob Bornecrantz. All rights reserved.
// See copyright notice in src/volt/license.d (BOOST ver. 1.0).
module volt.lowerer.llvmlowerer;
import watt.conv : toString;
import watt.text.format : format;
import watt.text.sink;
import watt.io.file : read, exists;
import ir = volta.ir;
imp... | D |
/**
* 微信摇一摇周边-设备管理-申请设备ID
*
*
*/
module hunt.wechat.bean.shakearound.device.applyid;
public import hunt.wechat.bean.shakearound.device.applyid.DeviceApplyId;
public import hunt.wechat.bean.shakearound.device.applyid.DeviceApplyIdResult;
public import hunt.wechat.bean.shakearound.device.applyid.DeviceApplyIdResul... | D |
/mnt/c/Users/knzk/OneDrive/4E/experiment/12_/min_dist_method/target/debug/deps/min_dist_method-6f43b6d8e541b2f6.rmeta: src/main.rs
/mnt/c/Users/knzk/OneDrive/4E/experiment/12_/min_dist_method/target/debug/deps/min_dist_method-6f43b6d8e541b2f6.d: src/main.rs
src/main.rs:
| D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.build/Data+Hex.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
298.399994 61.7000008 5.9000001 0 58 62 -19.6000004 116.099998 141 3.29999995 8 0.962780352 sediments, sandstones, siltstones
310.200012 40.5999985 4.69999981 120.900002 56 59 -33.2000008 151.100006 241 8.60000038 8.60000038 0.976048249 extrusiv... | D |
/*
Copyright (c) 2011-2021 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 |
/Users/okasho/serverProject/tryswift/helloworld/swift/.build/debug/Fluent.build/Preparation/Database+Preparation.swift.o : /Users/okasho/serverProject/tryswift/helloworld/swift/Packages/Fluent-1.4.1/Sources/Fluent/Database/Database.swift /Users/okasho/serverProject/tryswift/helloworld/swift/Packages/Fluent-1.4.1/Source... | D |
// https://issues.dlang.org/show_bug.cgi?id=16685
struct Id { ushort value; }
enum Id x = Id(5);
struct S(ushort A) {}
alias CannotCreateFromValue = S!(x.value);
| D |
module graphic.cutbit;
import std.algorithm; // max(-x, 0) in drawDirectlyToScreen()
import std.string; // format
public import basics.rect;
import basics.alleg5;
import basics.help; // positiveMod
import basics.matrix; // which frames exist?
import graphic.color;
import graphic.torbit;
import graphic.textout; // wr... | D |
module xf.gfx.api.gl3.cg.FunctionPtrs;
private {
import xf.gfx.api.gl3.cg.Consts;
import xf.gfx.api.gl3.GLTypes;
}
extern (C):
CGenum function(CGenum lockingPolicy) fp_cgSetLockingPolicy;
CGenum function() fp_cgGetLockingPolicy;
CGenum function(CGenum casePolicy) fp_cgSetSemanticCasePolicy;
CGenum function() fp... | D |
var int Hakon_ItemsGiven_Chapter_1;
var int Hakon_ItemsGiven_Chapter_2;
var int Hakon_ItemsGiven_Chapter_3;
var int Hakon_ItemsGiven_Chapter_4;
var int Hakon_ItemsGiven_Chapter_5;
FUNC VOID B_GiveTradeInv_Hakon (var C_NPC slf)
{
if ((Kapitel >= 1)
&& (Hakon_ItemsGiven_Chapter_1 == FALSE))
{
CreateInvItems (slf, ... | D |
/**
* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC src/core/sys/windows/_oleauto.d)
*/
module core.sys.windows.oleauto;
version (Windows):
@system:
pragma(lib, "oleaut32");
import core.sy... | D |
/**
* This module contains objects for defining and scoping dependency registrations.
*
* Part of the Poodinis Dependency Injection framework.
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2023 Mike Bierlee
* License:
* This software is licensed under the terms of the MIT license.
... | D |
write("1");
{
write("2");
scope(exit) write("3");
scope(exit) write("4");
write("5");
}
writeln();
| D |
/Users/DanielChang/Documents/Vapor/Hello/.build/debug/Core.build/Portal.swift.o : /Users/DanielChang/Documents/Vapor/Hello/Packages/Core-1.1.1/Sources/Core/Array.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Core-1.1.1/Sources/Core/Bool+String.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Core-1.1.1... | D |
/Users/laurennicoleroth/Development/iOS/Sorting/Build/Intermediates/Sorting.build/Debug-iphonesimulator/Sorting.build/Objects-normal/x86_64/AppDelegate.o : /Users/laurennicoleroth/Development/iOS/Sorting/Sorting/AppDelegate.swift /Users/laurennicoleroth/Development/iOS/Sorting/Sorting/ViewController.swift /Applications... | D |
module dmagick.c.imageView;
import dmagick.c.exception;
import dmagick.c.geometry;
import dmagick.c.image;
import dmagick.c.magickType;
import dmagick.c.magickVersion;
import dmagick.c.pixel;
alias ptrdiff_t ssize_t;
extern(C)
{
struct ImageView {}
alias MagickBooleanType function(const(ImageView)*... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
void main()
{
auto n = readln.chomp.to!int;
int[][] G;
G.length = n;
foreach (i; 0..n) {
auto ukv = readln.split.to!(int[]);
if (ukv[1] > 0) foreach (j; ukv[2..$]) G[i] ~= j-1;
}
... | D |
instance DIA_Salandril_EXIT(C_Info)
{
npc = VLK_422_Salandril;
nr = 999;
condition = DIA_Salandril_EXIT_Condition;
information = DIA_Salandril_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Salandril_EXIT_Condition()
{
if(Kapitel < 3)
{
return TRUE;
};
};
func void DIA_Salandril_... | D |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.t... | D |
prototype Mst_Default_Wisp(C_Npc)
{
name[0] = "Огонек";
guild = GIL_MEATBUG;
aivar[AIV_MM_REAL_ID] = ID_WISP;
level = 2;
flags = FALSE;
attribute[ATR_STRENGTH] = 10;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_HITPOINTS_MAX] = 20;
attribute[ATR_HITPOINTS] = 20;
attribute[ATR_MANA_MAX] = 2;
attribute[ATR_MA... | D |
/Users/mac/Documents/GitHub/PerfectServer/.build/x86_64-apple-macosx/debug/PerfectHTTP.build/MimeReader.swift.o : /Users/mac/Documents/GitHub/PerfectServer/.build/checkouts/Perfect-HTTP/Sources/PerfectHTTP/HTTPMethod.swift /Users/mac/Documents/GitHub/PerfectServer/.build/checkouts/Perfect-HTTP/Sources/PerfectHTTP/MimeT... | D |
/*
* Hunt - A refined core library for D programming language.
*
* Copyright (C) 2018-2019 HuntLabs
*
* Website: https://www.huntlabs.net/
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.event.selector.Kqueue;
// dfmt off
version(HAVE_KQUEUE):
// dfmt on
import hunt.event.selector.Selector;
impo... | D |
/Users/vstavenko/projects/koordinata/frontend/target/debug/build/num-rational-2b0bffe98737bac2/build_script_build-2b0bffe98737bac2: /Users/vstavenko/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.2.4/build.rs
/Users/vstavenko/projects/koordinata/frontend/target/debug/build/num-rational-2b0bffe98737bac2... | D |
import std.math;
import std.stdio;
import std.utf;
import std.string;
import std.conv: to;
import std.algorithm;
class Buffer {
private string value = null;
private Buffer left;
private Buffer right;
string name = "";
string savedText;
ulong length;
int splitLength = 1000;
int joinLength = 500;
double reba... | D |
instance DIA_Addon_Matt_EXIT(C_Info)
{
npc = PIR_1365_Addon_Matt;
nr = 999;
condition = DIA_Addon_Matt_EXIT_Condition;
information = DIA_Addon_Matt_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Addon_Matt_EXIT_Condition()
{
return TRUE;
};
func void DIA_Addon_Matt_EXIT_Info()
{
AI_... | D |
// Written in the D programming language.
/**
* This module is used to parse file names. All the operations work
* only on strings; they don't perform any input/output
* operations. This means that if a path contains a directory name
* with a dot, functions like $(D getExt()) will work with it just as
* if it was... | D |
// BulletD - a D binding for the Bullet Physics engine
// written in the D programming language
//
// Copyright: Ben Merritt 2012 - 2013,
// MeinMein 2013 - 2014.
// License: Boost License 1.0
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.tx... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.bigint;
| D |
/*
* Copyright (C) 2004 by Digital Mars, www.digitalmars.com
* Written by Walter Bright
*
* 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... | D |
/**
* Miscellaneous declarations, including typedef, alias, variable declarations including the
* implicit this declaration, type tuples, ClassInfo, ModuleInfo and various TypeInfos.
*
* Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digita... | D |
/**
* ...
*
* Copyright: Copyright Benjamin Thaut 2010 - 2011.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors: Benjamin Thaut, Sean Kelly
* Source: $(DRUNTIMESRC core/sys/windows/_stacktrace.d... | D |
#!/usr/bin/rdmd
import core.thread, std.process;
void main()
{
while(true)
{
Thread.sleep(30.seconds);
executeShell("make cbs");
}
}
| D |
/home/liyun/clink/clink_mpc/target/debug/build/num-traits-816149f342a68063/build_script_build-816149f342a68063: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/num-traits-0.2.14/build.rs
/home/liyun/clink/clink_mpc/target/debug/build/num-traits-816149f342a68063/build_script_build-816149f342a68063.... | D |
/users/tommy-b-10/Desktop/SidePilotApp/Carthage/Checkouts/SwiftUtilities/Build/Intermediates/SwiftUtilities.build/Debug-iphoneos/SwiftUtilities_iOS.build/Objects-normal/arm64/Walker.o : /users/tommy-b-10/Desktop/SidePilotApp/Carthage/Checkouts/SwiftUtilities/Source/Version.swift /users/tommy-b-10/Desktop/SidePilotApp/C... | D |
import std;
alias gcov_unsigned_t = Typedef!uint32_t;
alias gcov_position_t = Typedef!uint32_t;
//MAGIC
enum uint32_t GCOV_NOTE_MAGIC = 0x67636461; //gcno
enum uint32_t GCOV_DATA_MAGIC = 0x67636e6f; //gcda
enum uint32_t SUMMARY_MAGIC = 0x456d696c;
//TAGS
enum uint32_t GCOV_TAG_PROGRAM_SUMMARY = 0xa3000000;
//enum ui... | D |
void test1()
{
static assert(__traits(isSame, (a, b) => a + b, (c, d) => c + d));
static assert(__traits(isSame, a => ++a, b => ++b));
static assert(!__traits(isSame, (int a, int b) => a + b, (a, b) => a + b));
static assert(__traits(isSame, (a, b) => a + b + 10, (c, d) => c + d + 10));
}
class Y
{
... | D |
import ldc.attributes;
//This function returns the iterations it takes for the given pixel
//The function it iterates is f(z) = z^2 + C
auto iterateMandelbrot(in real x, in real y) pure nothrow @nogc @safe @fastmath
{
import std.complex : complex, abs;
import std.math : log;
enum max_iters = 500_000U;
//Skip calcu... | D |
// Copyright (с) 2013 Gushcha Anton <ncrashed@gmail.com>
/*
* This file is part of Borey Engine.
*
* 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
* th... | D |
module track_layer;
struct Vertex
{
import gfm.math : vec3f, vec4f;
vec3f position;
vec4f color;
float heading;
}
import std.math : PI;
import gfm.math : vec3f, vec4f;
import batcher : VertexSlice;
auto v12_89 = [
Vertex(vec3f(2592.73, 29898.1, 0), vec4f(1.0, 1.0, 1.0, 1.0), 0 * PI/180.0),
Vertex(vec3f(4718... | D |
instance VLK_519_Buddler(Npc_Default)
{
name[0] = NAME_Buddler;
npcType = npctype_ambient;
guild = GIL_VLK;
level = 2;
voice = 2;
id = 519;
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 |
instance VLK_557_BUDDLER(NPC_DEFAULT)
{
name[0] = NAME_BUDDLER;
npctype = NPCTYPE_AMBIENT;
guild = GIL_VLK;
level = 3;
voice = 1;
id = 557;
attribute[ATR_STRENGTH] = 15;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 76;
attribute[ATR_HIT... | D |
/**
* Performs the semantic3 stage, which deals with function bodies.
*
* Copyright: Copyright (C) 1999-2020 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, Boost License 1.0)
* Sourc... | 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 |
module textinput;
import observable;
import derelict.sdl2.sdl;
import std.stdio;
import std.utf;
/**
* a server that, when directing SDL events to it and is set reading, records
* what is written on the keyboard
**/
class TextInput : Observable {
private string textInput;
private bool reading;
public this() ... | D |
module org.serviio.library.online.metadata.FeedItem;
import java.lang.String;
import java.io.Serializable;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;
import org.serviio.library.online.metadata.OnlineContainerItem;
import org.serviio.library.online.metadata.Feed;
public class FeedItem : Onlin... | D |
/**
* Copyright © DiamondMVC 2019
* License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE)
* Author: Jacob Jensen (bausshf)
*/
module diamond.data.i18n.messages;
import diamond.core.apptype;
static if (isWeb)
{
import diamond.http;
/// Alias for an associative array.
private alias Language = ... | D |
/home/eduardo/Projects/cursos/rust-course/quick-question-mark-operator/target/rls/debug/deps/quick_question_mark_operator-cdeb5bdb4b85409a.rmeta: src/main.rs
/home/eduardo/Projects/cursos/rust-course/quick-question-mark-operator/target/rls/debug/deps/quick_question_mark_operator-cdeb5bdb4b85409a.d: src/main.rs
src/ma... | D |
module wsf.spec.tileset;
import wsf.serialization;
/**
A region corrsponding to a file in the tileset
*/
struct TileRegion {
/**
The origin file
*/
string file;
/**
Where the tile region starts
*/
int x;
/**
Where the tile region starts
*/
int y;
/... | D |
// Compiler implementation of the D programming language
// Copyright (c) 1999-2015 by Digital Mars
// All Rights Reserved
// written by Walter Bright
// http://www.digitalmars.com
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
module ddmd.dtemplate;
import core.... | D |
/*****************************************************************************
*
* Higgs JavaScript Virtual Machine
*
* This file is part of the Higgs project. The project is distributed at:
* https://github.com/maximecb/Higgs
*
* Copyright (c) 2011-2015, Maxime Chevalier-Boisvert. All rights re... | D |
module jaypha.fixdb.literal;
import jaypha.fixdb.dbdef;
import jaypha.io.print;
import jaypha.algorithm;
import std.algorithm;
import std.array;
string literal(ref DatabaseDef database_def)
{
auto w = appender!string;
w.println("DatabaseDef\n(\n [");
w.println(database_def.tables.map!literal().join(",\n"));
... | D |
/Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/FunChatik.build/Debug-iphonesimulator/FunChatikUITests.build/Objects-normal/x86_64/BaseTest.o : /Users/Natalia/FunChatik/FunChatikUITests/Data/CreateData.swift /Users/Natalia/FunChatik/FunChatikUITests/Screens/ProfileScreen.swift /Users/Natalia/FunChati... | D |
a misanthrope who dislikes women in particular
| D |
module android.java.android.webkit.WebMessagePort;
public import android.java.android.webkit.WebMessagePort_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!WebMessagePort;
import import3 = android.java.java.lang.Class;
| D |
import std.stdio, std.socket, core.thread, std.file, std.datetime, std.conv;
import std.array, std.algorithm, std.string;
class Handler : Thread{
private Socket socket;
this(){
super(&run);
}
this(Socket socket){
this.socket = socket;
super(&run);
}
private void run(){
char[2048] buffer;... | D |
/Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/MVC.build/Debug-iphonesimulator/MVC.build/Objects-normal/x86_64/Custome.o : /Users/hanykaram/Desktop/MVC/MVC/MVC/Controller/HomeVC.swift /Users/hanykaram/Desktop/MVC/MVC/MVC/Controller/LoginVC.swift /Users/... | D |
module android.java.java.security.SignedObject_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.io.Serializable_d_interface;
import import4 = android.java.java.lang.Class_d_... | D |
instance DJG_7110_GODAR(Npc_Default)
{
name[0] = "Годар";
guild = GIL_OUT;
id = 7110;
voice = 13;
flags = 0;
npcType = npctype_main;
aivar[AIV_DropDeadAndKill] = TRUE;
B_SetAttributesToChapter(self,6);
fight_tactic = FAI_HUMAN_MASTER;
EquipItem(self,ItMw_1h_Sld_Sword_New);
B_CreateAmbientInv(self);
B_SetNp... | D |
//***************************************************************************
// Alte Mine - Tor auf der untersten Ebene
//***************************************************************************
var int _STR_MESSAGE_WHEEL_STUCKS_AGAIN;
FUNC int MC_OLDMINE_ASGHAN ()
{
PrintDebugNpc (PD_ITEM_MOBSI, "MC_OLDMINE_AS... | D |
const int SPL_Cost_WindFist = 48;
const int STEP_WindFist = 12;
const int SPL_Damage_Windfist = 60;
instance Spell_WindFist(C_Spell_Proto)
{
time_per_mana = 10;
damage_per_level = SPL_Damage_Windfist;
damagetype = DAM_FLY;
canTurnDuringInvest = TRUE;
targetCollectAlgo = TARGET_COLLECT_NONE;
targetCollectRange =... | D |
; Copyright (C) 2008 The Android Open Source Project
;
; 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 ... | D |
/x/calo/jgoncalves/JetCleaningHI/RootCoreBin/obj/x86_64-slc6-gcc49-opt/QuickAna/obj/quickana_basic.o /x/calo/jgoncalves/JetCleaningHI/RootCoreBin/obj/x86_64-slc6-gcc49-opt/QuickAna/obj/quickana_basic.d : /cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.8/QuickAna/util/quickana_basic.cxx /x/calo/jgoncalves/JetCleaningH... | D |
module hunt.stomp.converter.MessageConverterHelper;
import hunt.stomp.Message;
import hunt.stomp.MessageHeaders;
import hunt.stomp.support.GenericMessage;
import hunt.Exceptions;
import hunt.logging;
class MessageConverterHelper {
static T fromMessage(T)(MessageBase message) {
T r = T.init;
Gene... | D |
instance Mod_1233_TPL_Templer_MT (Npc_Default)
{
//-------- primary data --------
name = Name_Templer;
npctype = NPCTYPE_mt_templer;
guild = GIL_out;
level = 17;
voice = 29;
id = 1233;
//-------- abilities --------
attribute[ATR_STRENGTH] = 130;
attribute[ATR_DEXTERI... | D |
characterized by or caused by allergy
having an allergy or peculiar or excessive susceptibility (especially to a specific factor
| D |
/*
Copyright (c) 2016-2020 Eugene Wissner
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, dis... | D |
/*
TEST_OUTPUT:
---
fail_compilation/enum9921.d(9): Error: enum `enum9921.X` base type must not be `void`
fail_compilation/enum9921.d(11): Error: enum `enum9921.Z` base type must not be `void`
---
*/
enum X : void;
enum Z : void { Y };
| 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.
* Macros:
* WIKI = Object
*
* Copyright: Copyright Digital Mars 2000 - 2011.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Lice... | D |
/**
* Copyright: © 2014 Anton Gushcha
* License: Subject to the terms of the MIT license, as written in the included LICENSE file.
* Authors: NCrashed <ncrashed@gmail.com>
*/
module evol.operators.opif;
import devol.typemng;
import devol.individ;
import devol.world;
import devol.operator;
import devol.std.ty... | D |
/*
Copyright (c) 2016 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, distribute,
ex... | D |
nonprofessional soldier member of a territorial military unit
a territorial military unit
of or relating to a territory
displaying territoriality
belonging to the territory of any state or ruler
| D |
instance SLD_806_Sylvio(Npc_Default)
{
name[0] = "Сильвио";
guild = GIL_SLD;
id = 806;
voice = 9;
flags = NPC_FLAG_IMMORTAL;
npcType = NPCTYPE_MAIN;
B_SetAttributesToChapter(self,4);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_1h_Sld_Sword);
EquipItem(self,ItRw_Sld_Bow);
B_CreateAmbientInv(self);
... | D |
any physical damage to the body caused by violence or accident or fracture etc.
an emotional wound or shock often having long-lasting effects
| D |
module imports.link2500a;
import link2500;
import imports.link2500b;
class B
{
S!A t;
}
| D |
module dub.version_;
enum dubVersion = "v1.6.0";
| D |
/*
Written by Christopher E. Miller
Placed into public domain.
*/
module std.c.windows.winsock;
version (Windows):
extern(Windows):
nothrow:
alias SOCKET = size_t;
alias socklen_t = int;
const SOCKET INVALID_SOCKET = cast(SOCKET)~0;
const int SOCKET_ERROR = -1;
enum WSADESCRIPTION_LEN = 256;
enum WSASYS_S... | D |
a Polynesian rain dance performed by a woman
| D |
/home/liyun/clink/zkp_test/ckb-zkp/target/debug/deps/byteorder-9d25ed89ce31dd8b.rmeta: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/byteorder-1.3.4/src/lib.rs
/home/liyun/clink/zkp_test/ckb-zkp/target/debug/deps/byteorder-9d25ed89ce31dd8b.d: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-6... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.