code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/**
Example sub-library.
*/
module test_repos.example;
string exampleString() {
return "This is an example library.";
} | D |
/**
* Most of the logic to implement scoped pointers and scoped references is here.
*
* 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... | D |
import std.stdio;
import HelloService;
import hunt.service;
import hunt.net;
import neton.client.NetonOption;
void main()
{
NetUtil.startEventLoop();
RegistryConfig conf = {"127.0.0.1",50051,"example.provider"};
auto providerFactory = new ServiceProviderFactory("127.0.0.1",7788);
// providerFactory.setRegist... | D |
import std.stdio;
import std.conv;
import std.algorithm;
import std.array;
import std.ascii;
void main()
{
const numbers =
File("input.txt")
.byLine(KeepTerminator.no, newline)
.map!(to!int).array; // [1,2,3,4]
foreach(index, first; numbers)
{
foreach(second; numbers[index .. $... | D |
module ast.aggregate_parse;
import ast.aggregate, ast.parse, ast.base, ast.scopes, ast.namespace, ast.fun, ast.modules;
Statement parseAggregateBody(ref string text, ParseCb rest, bool error = false, void delegate(Statement) outdg = null) {
auto t2 = text;
AggrStatement as;
// I think this has to be here so tha... | D |
#source: attr-gnu-4-0.s
#source: attr-gnu-4-1.s
#as: -a32
#ld: -r -melf32ppc
#readelf: -A
#target: powerpc*-*-*
Attribute Section: gnu
File Attributes
Tag_GNU_Power_ABI_FP: hard float, unspecified long double
| D |
module sceneparser.statements.BoundingObjectStatement;
import sceneparser.general.Context;
import sceneparser.general.Statement;
class BoundingObjectStatement: Statement
{
string type;
Statement statement;
public this(Context context, string type, Statement statement)
{
super(... | D |
/Users/netnorimingconception/utils/GeoFence/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/GroupedObservable.o : /Users/netnorimingconception/utils/GeoFence/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/netnorimingconception/utils/GeoFence/Pods/RxSwift/Rx... | D |
/*
* Copyright (C) 2017 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 app... | D |
/**
* D header file for GNU/Linux.
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Authors: Paul O'Neil
*/
module core.sys.linux.sys.socket;
public import core.sys.posix.sys.socket;
version (linux):
extern(C):
@nogc:
nothrow:
enum
{
// Protocol families.
... | D |
import core.stdcpp.array;
extern (C++) int test_array()
{
array!(int, 5) arr;
arr[] = [0, 2, 3, 4, 5];
++arr.front;
assert(arr.size == 5);
assert(arr.length == 5);
assert(arr.max_size == 5);
assert(arr.empty == false);
assert(arr.front == 1);
assert(sumOfElements_val(arr)[0] == 16... | D |
/// Minimalistic low-overhead wrapper for nodejs/http-parser
/// Used for benchmarks with simple server
module http.Parser;
import http.Common;
import hunt.logging.ConsoleLogger;
import std.conv;
import std.range.primitives;
import core.stdc.string;
import std.experimental.allocator;
/* contains name and value of... | D |
/home/julio/projects/coding/rustarm/gtk-rs/glade/target/rls/debug/deps/proc_macro_crate-6b351b1738c1fe13.rmeta: /home/julio/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-0.1.5/src/lib.rs
/home/julio/projects/coding/rustarm/gtk-rs/glade/target/rls/debug/deps/libproc_macro_crate-6b351b1738c1fe13.rlib:... | D |
/*******************************************************************************
Full-duplex client connection with authentication.
Copyright: Copyright (c) 2016-2017 dunnhumby Germany GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
***********... | D |
instance DIA_EHNIM_EXIT(C_INFO)
{
npc = bau_944_ehnim;
nr = 999;
condition = dia_ehnim_exit_condition;
information = dia_ehnim_exit_info;
permanent = TRUE;
description = DIALOG_ENDE;
};
func int dia_ehnim_exit_condition()
{
return TRUE;
};
func void dia_ehnim_exit_info()
{
AI_StopProcessInfos(self);
};
in... | D |
prototype Mst_Default_Scavenger(C_Npc)
{
name[0] = "Падальщик";
guild = GIL_SCAVENGER;
aivar[AIV_MM_REAL_ID] = ID_SCAVENGER;
level = 7;
attribute[ATR_STRENGTH] = 35;
attribute[ATR_DEXTERITY] = 35;
attribute[ATR_HITPOINTS_MAX] = 70;
attribute[ATR_HITPOINTS] = 70;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MAN... | D |
# FIXED
OSAL/osal_clock.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/osal/src/common/osal_clock.c
OSAL/osal_clock.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/osal/src/inc/comdef.h
OSAL/osal_clock.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/hal/src/targe... | D |
/**
Dynamic arrays with deterministic memory usage
akin to C++'s std::vector or Rust's std::vec::Vec
*/
module automem.vector;
import automem.traits: isGlobal;
import std.range.primitives: isInputRange;
import std.experimental.allocator: theAllocator;
import std.experimental.allocator.mallocator: Mallocator;
... | D |
module test_graphics2D;
import vulkan.all;
final class TestGraphics2D : VulkanApplication {
Vulkan vk;
VkDevice device;
VulkanContext context;
VkRenderPass renderPass;
VkSampler sampler;
Camera2D camera;
Quad quad1, quad2, quad3;
Quads quads;
//Text text;
FPS fps;
Rectangles ... | D |
instance NOV_1316_Novize(Npc_Default)
{
name[0] = NAME_Novize;
npcType = npctype_ambient;
guild = GIL_NOV;
level = 3;
voice = 2;
id = 1316;
attribute[ATR_STRENGTH] = 10;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 76;
attribute[ATR_HIT... | D |
/Users/sameersiddiqui/Projects/HafsaInspectorApp/Build/Intermediates/Pods.build/Debug-iphonesimulator/Material.build/Objects-normal/x86_64/MaterialCollectionViewLayout.o : /Users/sameersiddiqui/Projects/HafsaInspectorApp/Pods/Material/Sources/iOS/BarView.swift /Users/sameersiddiqui/Projects/HafsaInspectorApp/Pods/Mater... | D |
platform/deca_spi.o: E:/UWB/dw1000_api_rev2p02/platform/deca_spi.c \
E:/UWB/dw1000_api_rev2p02/platform/deca_spi.h \
E:/UWB/dw1000_api_rev2p02/decadriver/deca_types.h \
E:/UWB/dw1000_api_rev2p02/decadriver/deca_device_api.h \
E:/UWB/dw1000_api_rev2p02/platform/port.h \
E:/UWB/WS_F103C8T6/f103c8t6_hal_lib/CMSI... | D |
a shape that spreads outward
a sudden burst of flame
a burst of light used to communicate or illuminate
reddening of the skin spreading outward from a focus of infection or irritation
a sudden recurrence or worsening of symptoms
a sudden eruption of intense high-energy radiation from the sun's surface
am unwanted refle... | 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 under t... | D |
/Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Command.build/Run/Output+Help.swift.o : /Users/Khanh/vapor/TILApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/Command.swift /Users/Khanh/vapor/TILApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/Comma... | D |
import std.stdio, std.range, std.algorithm, std.typecons, std.conv;
Tuple!(double[], double[]) polyDiv(in double[] inN, in double[] inD)
nothrow pure @safe {
// Code smell: a function that does two things.
static int trimAndDegree(T)(ref T[] poly) nothrow pure @safe @nogc {
poly = poly.retro.find!q{ a ... | D |
/Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim/Build/Intermediates.noindex/SiberSuclarTanitim.build/Debug-iphonesimulator/SiberSuclarTanitim.build/Objects-normal/x86_64/DuyuruCell.o : /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/SiberSuclarTanitim/LoginSe... | D |
the state of being invaded or overrun by parasites
a swarm of insects that attack plants
| D |
/** winineti.d
Converted from 'winineti.h'.
Version: V7.0
Authors: Koji Kishita
*/
module c.windows.winineti;
import c.windows.sdkddkver;
import c.windows.windef;
import c.windows.wtypes;
import c.windows.wininet;
import c.windows.winbase;
import c.windows.wincrypt;
import c.windows.schannel;
import c.windows.iedia... | D |
/**
Copyright: Copyright (c) 2017-2018 Andrey Penechko.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
/// Convertion of function IR to textual representation
module ir.dump;
import std.stdio;
import all;
struct InstrPrintInfo
{
CompilationContext* context;
TextSink* si... | D |
/media/chris/Data/Github/MultimediaSignalProcessingClass/Ordered-Dithering/target/debug/build/num-derive-c634f67dffd3c1b5/build_script_build-c634f67dffd3c1b5: /home/chris/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.2.5/build.rs
/media/chris/Data/Github/MultimediaSignalProcessingClass/Ordered-Dithering... | D |
/Users/william/Projects/studySocial/studySocial/build/Pods.build/Debug-iphonesimulator/FacebookCore.build/Objects-normal/x86_64/GraphRequestResult.o : /Users/william/Projects/studySocial/studySocial/Pods/FacebookCore/Sources/Core/GraphRequest/GraphRequestProtocol.Bridge.swift /Users/william/Projects/studySocial/studySo... | D |
prototype Mst_Default_Warg(C_Npc)
{
name[0] = "Варг";
guild = GIL_WOLF;
aivar[AIV_MM_REAL_ID] = ID_WARG;
level = 30;
attribute[ATR_STRENGTH] = 150;
attribute[ATR_DEXTERITY] = 150;
attribute[ATR_HITPOINTS_MAX] = 300;
attribute[ATR_HITPOINTS] = 300;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
protec... | D |
module macroblock;
import std.exception;
import std.stdio;
import bitstream;
import vlc;
import decoder;
enum PredictionType
{
Field,
Frame,
DualPrime,
Mc16x8,
}
enum MvFormat
{
Field,
Frame,
}
struct Block
{
short[64] coeffs;
}
struct MacroBlock
{
Slice s;
MbParams p;
ubyte incr;
uint type;
ubyte spa... | D |
instance Info_Kirgo_Exit(C_Info)
{
npc = GRD_251_Kirgo;
nr = 999;
condition = Info_Kirgo_Exit_Condition;
information = Info_Kirgo_Exit_Info;
permanent = 1;
description = DIALOG_ENDE;
};
func int Info_Kirgo_Exit_Condition()
{
return 1;
};
func void Info_Kirgo_Exit_Info()
{
AI_StopProcessInfos(self);
};
instan... | D |
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxCocoa.build/Objects-normal/x86_64/ControlEvent.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxCocoa/RxCocoa/RxCocoa.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxCocoa/RxCocoa/Deprecated.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxCocoa/Rx... | D |
module network.server;
import std.socket;
import core.thread;
import threading.thread;
import client.authclient;
/**
* The next socket id.
*/
private size_t nextSid = 0;
/**
* The auth clients.
*/
private AuthClient[size_t] clients;
/**
* The socket threads.
*/
private shared Thread[] socketThreads;
/**
* The ser... | D |
/**
* The exception module defines all system-level exceptions and provides a
* mechanism to alter system-level error handling.
*
* Copyright: Copyright Sean Kelly 2005 - 2013.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanyin... | D |
module UnrealScript.TribesGame.TrRank_17;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.TribesGame.TrRank;
extern(C++) interface TrRank_17 : TrRank
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC... | D |
/**
Copyright: Copyright (c) 2015-2017 Andrey Penechko.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
module voxelman.text.scale;
immutable string[int] scales;
shared static this(){
scales = [
-24 : "y",
-21 : "z",
-18 : "a",
-15 : "f",
-12 : "p",
-9 : "n",
-6 : "... | D |
module demb.compilecontext;
import std.algorithm;
class MiniScope {
protected:
uint[string] var_pool;
MiniScope parent;
public:
this(MiniScope parent=null) {
this.parent = parent;
}
MiniScope getParent() {
return this.parent;
}
uint local_count() {
return cast(uint... | D |
module compare;
template Compare(First...)
{
template With(Second...)
{
static if (First.length != Second.length)
enum With = false;
else static if (First.length == 0) // End of comparison
enum With = true;
else static if (!is(First[0] == Second[0]))
... | D |
module android.java.java.security.cert.CertificateParsingException_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.io.PrintStream_d_interface;
import import4 = android.java... | D |
import std.file;
import Log;
import std.process;
import std.conv;
import ProcessResult;
class DCompiler {
string sourceCode;
this(string sourceCode) {
this.sourceCode = sourceCode;
}
ProcessResult Compile() {
string sourceFile = "/tmp/int/code.d";
std.file.write(sourceFile, sourceCode);
return GetVerb... | D |
/*
[The "BSD licence"]
Copyright (c) 2005-2008 Terence Parr
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 ... | D |
instance Bdt_1013_Bandit_L(Npc_Default)
{
name[0] = NAME_Bandit;
guild = GIL_BDT;
id = 1013;
voice = 1;
flags = 0;
npcType = npctype_main;
aivar[AIV_EnemyOverride] = TRUE;
B_SetAttributesToChapter(self,1);
fight_tactic = FAI_HUMAN_NORMAL;
EquipItem(self,ItMw_2H_Sword_M_01);
B_CreateAmbientInv(self);
Create... | D |
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/build/num-bigint-b27d8f2b843696dc/build_script_build-b27d8f2b843696dc: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.6/build.rs
/Users/edward.wangcrypto.com/study/s... | D |
void main() { runSolver(); }
void problem() {
alias V2 = Vector2!long;
auto N = scan!int;
auto S = V2(scan!long, scan!long);
auto T = V2(scan!long, scan!long);
auto C = scan!long(3 * N).chunks(3).array;
auto solve() {
auto V = C.map!(c => V2(c[0], c[1])).array;
auto R = C.map!(c => c[2]).array;
... | D |
module tinysdl.destructuring.tests;
import tinysdl;
import tinysdl.destructuring;
import std.stdio;
// Attribute destructuring
unittest {
// destructuring into variables
{ enum source = `example aText="someText" aReal=3.14 aBoolean=true`;
string aText;
double aReal;
bool aBoolean;
destructureAttrib... | D |
module fun.cos_fun;
import language.fun, language.expression;
import std.string, std.conv;
import pegged.grammar;
import program;
class Cos_fun:TrigonometricFun
{
mixin FunConstructor;
override string getName()
{
return "cos";
}
}
| 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 |
/Users/apple-1/Documents/xCode/CoreDataSampleApp/Build/Intermediates/CoreDataSampleApp.build/Release-iphonesimulator/CoreDataSampleApp.build/Objects-normal-tsan/x86_64/ViewController.o : /Users/apple-1/Documents/xCode/CoreDataSampleApp/CoreDataSampleApp/ViewController.swift /Users/apple-1/Documents/xCode/CoreDataSample... | 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 |
/**
* 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 |
module android.java.java.security.Certificate;
public import android.java.java.security.Certificate_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Certificate;
import import0 = android.java.java.security.Principal;
import import4 = android.java.java.lang.Class;
import import1 = android.java.j... | D |
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Deferred.o : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Doc... | 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, an... | D |
/*******************************************************************************
copyright: Copyright (c) 2004 Kris Bell. Все права защищены
license: BSD:
AFL 3.0:
version: Mar 2004: Initial release
version: Feb 2007: Сейчас u... | D |
// PERMUTE_ARGS:
extern(C) int printf(const char*, ...);
class Eh : Exception
{
this()
{
super("Eh thrown");
}
}
/********************************************/
class Foo
{
static int x;
this()
{
assert(x == 0);
x++;
printf("Foo.this()\n");
throw new ... | D |
module xcb.icccm;
/*
* Copyright (C) 2008 Arnaud Fontaine <arnau@debian.org>
* Copyright (C) 2007-2008 Vincent Torri <vtorri@univ-evry.fr>
*
* 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 Softw... | D |
// PERMUTE_ARGS:
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o- -transition=vmarkdown
// TEST_OUTPUT_FILE: extra-files/ddoc_markdown_links_verbose.html
// OUTPUT_FILES: ${RESULTS_DIR}/compilable/ddoc_markdown_links_verbose.html
/++
Links:
A link to [Object].
An inline link to [the D homepage](https://dlang.org... | D |
/**
* std.net IRC client
*
* Authors:
*
*/
module netd.irc;
/// TODO: \x03COLORCODE?
import std.socket : TcpSocket, InternetAddress;
import std.socketstream;
import std.stdio;
import std.string : split, indexOf, toUpper;
import std.array : join;
import netd.uri;
/**
* Represents IRC user
*/
struct IrcUser
{... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail261.d(20): Error: invalid `foreach` aggregate `range` of type `MyRange`
fail_compilation/fail261.d(20): `foreach` works with input ranges (implementing `front` and `popFront`), aggregates implementing `opApply`, or the result of an aggregate's `.tupleof` property
fail_com... | D |
/Users/sinsakuokazaki/Research/rust-practice/matrix_operation/target/debug/deps/matrix_operation-b2acc85e93ef2b4d: src/main.rs
/Users/sinsakuokazaki/Research/rust-practice/matrix_operation/target/debug/deps/matrix_operation-b2acc85e93ef2b4d.d: src/main.rs
src/main.rs:
| D |
/* libFLAC - Free Lossless Audio Codec library
* Copyright (C) 2000-2009 Josh Coalson
* Copyright (C) 2011-2013 Xiph.Org Foundation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of so... | D |
#!/usr/bin/env rdmd
import std.stdio: writeln;
import std.file;
import std.path;
import std.array;
import std.algorithm: joiner;
import std.process;
import std.json;
enum SOURCE_PATH = "./source/";
enum IS_SOURSE = 33188;
enum COMPILER = "dmd";
class Config {
private {
string[] _libs;
string name... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail86.d(12): Error: alias Foo recursive alias declaration
---
*/
template Foo(TYPE) {}
void main()
{
alias Foo!(int) Foo;
}
| D |
# FIXED
lab1-main.obj: ../lab1-main.c
lab1-main.obj: C:/ti/xdctools_3_32_00_06_core/packages/xdc/std.h
lab1-main.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.5.LTS/include/stdarg.h
lab1-main.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.5.LTS/include/sys/_types.h
lab1-main.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-a... | D |
/***********************************************************************\
* commdlg.d *
* *
* Windows API header module *
* ... | D |
<?xml version="1.0" encoding="ASCII" standalone="no"?>
<di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
<pageList>
<availablePage>
<emfPageIdentifier href="TEMP_8agm.notation... | D |
module UnrealScript.Engine.SkelControlWheel;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Core.UObject;
import UnrealScript.Engine.SkelControlSingleBone;
extern(C++) interface SkelControlWheel : SkelControlSingleBone
{
public extern(D):
private static __gshared ScriptClass mStatic... | D |
module hunt.framework.provider.ConfigServiceProvider;
import hunt.framework.application.HostEnvironment;
import hunt.framework.config.ApplicationConfig;
import hunt.framework.config.AuthUserConfig;
import hunt.framework.config.ConfigManager;
import hunt.framework.provider.ServiceProvider;
import hunt.framework.Init;
i... | D |
instance Mod_7302_UntoterMagier_AW (Npc_Default)
{
//-------- primary data --------
name = "Untoter Hohepriester";
Npctype = Npctype_UNTOTERMAGIER;
guild = GIL_STRF;
level = 25;
voice = 0;
id = 7302;
//-------- abilities --------
B_SetAttributesToChapter (self, 4);
//-------- visuals... | D |
module behaviour.attack;
import std.stdio;
import game.actor;
import game.level;
import data.weaponlevels;
import data.baseactors;
import data.attacks;
import data.anims;
import data.collision;
import behaviour.util;
import util.random;
public void attackBrigand(AnimIndex animIndex, Actor source) {
attackRif... | D |
/*
Copyright (c) 2019 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,
execu... | 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 |
//I primarily use pure duck typing, gaint todo
template ismachine(T){
static if(true /*has get and poke*/){
alias ismachine=true;
}}
template ispropermachine(T){
static if(true /*doesnt have alias get this, or ++ overloaded*/){
alias ispropermachine=false;
}}
template takesinput(T){
static if(true /*has +=*/){
... | D |
/Users/taharahiroki/secret_account_test/target/debug/deps/fixed_hash-e7f7b4774cb51c68.rmeta: /Users/taharahiroki/.cargo/registry/src/github.com-1ecc6299db9ec823/fixed-hash-0.3.2/src/lib.rs /Users/taharahiroki/.cargo/registry/src/github.com-1ecc6299db9ec823/fixed-hash-0.3.2/src/hash.rs
/Users/taharahiroki/secret_accoun... | D |
Chinese tree cultivated especially in Philippines and India for its edible fruit
Chinese fruit having a thin brittle shell enclosing a sweet jellylike pulp and a single seed
| D |
/**
* Copyright: Copyright Jason White, 2014-2016
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Jason White
*
* TODO: Get this working on Windows.
*
* Synopsis:
* ---
* // Creates a 1 GiB file containing random data.
* import io.file;
* import std.parallelism : parallel;
* a... | D |
INSTANCE Monster_11047_DemonWolf_EIS (Npc_Default)
{
// ------ NSC ------
name = "Dämonischer Wolf";
guild = GIL_DEMON;
id = 11047;
voice = 20;
flags = 0;
npctype = NPCTYPE_MAIN;
effect = "SPELLFX_DARKARMOR";
level = 30;
//----- Attribute ----
attribute [ATR_STRENGTH] = 2... | D |
module sand;
public import sand.api;
| D |
/**
* Font module.
*
* License:
* MIT. See LICENSE for full details.
*/
module tkd.widget.common.font;
/**
* These are common commands that apply to all widgets that have them injected.
*/
mixin template Font()
{
import std.array : join;
import std.conv : to;
import tkd.element.fontstyle;
import std.string;
... | D |
module staticscan;
import std.typetuple;
/**
Gives the TypeTuple resulting from the successive applications of F to reduce
the T list.
*/
template StaticScan(alias F, T...)
{
static if (T.length == 0)
alias TypeTuple!() StaticScan; // This case should never happen with normal use
static if (T.length ==... | D |
instance Mod_7051_DMR_Daemonenritter_MT (Npc_Default)
{
// ------ NSC ------
name = "Dämonenritter";
guild = GIL_KDF;
id = 7051;
voice = 0;
flags = 0;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 5);
// ------ Kampf-Takt... | D |
<!-- START: including template: extension/sikkerhedsstyrelsen/design/design_2013/templates/print_pagelayout.tpl (design:print_pagelayout.tpl) -->
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.... | D |
/**
* cl4d - object-oriented wrapper for the OpenCL C API
* written in the D programming language
*
* Copyright:
* (C) 2009-2014 Andreas Hollandt
*
* License:
* see LICENSE.txt
*/
module cl4d.wrapper;
import cl4d.error;
import cl4d.c.cl;
import cl4d.kernel;
import cl4d.memory;
import cl4d.platform;
import c... | D |
/Users/kidboy/Programming/github.com/learn_programming/rust/http-request/target/rls/debug/build/serde_json-10e033c9f8543aa5/build_script_build-10e033c9f8543aa5: /Users/kidboy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/build.rs
/Users/kidboy/Programming/github.com/learn_programming/rust/http-requ... | D |
// Written in the D programming language.
module windows.http;
public import windows.core;
public import windows.networkdrivers : SOCKADDR_STORAGE_LH;
public import windows.systemservices : BOOL, HANDLE, OVERLAPPED, PSTR, PWSTR,
SECURITY_ATTRIBUTES, ULARGE_INTEGER;
public import... | D |
a metrical adaptation of something (e.g., of a prose text)
the form or metrical composition of a poem
the art or practice of writing verse
| D |
instrumentality that combines interrelated interacting artifacts designed to work as a coherent entity
a group of independent but interrelated elements comprising a unified whole
(physical chemistry) a sample of matter in which substances in different phases are in equilibrium
a complex of methods or rules governing be... | 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 |
/Users/amithdubbasi/Desktop/iOS\ Stuff/iOS\ Projects\ Amith/ConnectedColorsStarter/Build/Intermediates/SwiftMigration/ConnectedColors/Intermediates.noindex/ConnectedColors.build/Debug-iphonesimulator/ConnectedColors.build/Objects-normal/x86_64/AppDelegate.o : /Users/amithdubbasi/Desktop/iOS\ Stuff/iOS\ Projects\ Amith/... | D |
/**
GDC compiler support.
Copyright: © 2013-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
*/
module dub.compilers.gdc;
import dub.compilers.compiler;
import dub.compilers.utils;
import dub.internal.utils;
import dub.... | D |
/*
* SPDX-FileCopyrightText: Copyright © 2020-2023 Serpent OS Developers
*
* SPDX-License-Identifier: Zlib
*/
/**
* moss.core.logger
*
* Add coloured output tailored for a better terminal experience.
*
* Authors: Copyright © 2023 Serpent OS Developers
* License: Zlib
*/
module moss.core.logger;
public impo... | D |
/Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/DispatchQueue+Alamofire.o : /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/Alamofire/Source/MultipartFormData.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/Alamo... | D |
instance Mod_4081_GRD_Gardist_MT (Npc_Default)
{
// ------ NSC ------
name = "Gardist";
guild = GIL_NONE;
id = 4081;
voice = 0;
flags = 0;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 3);
level = 15;
// ------ Kampf-Tak... | D |
/*******************************************************************************
Entry point for running multiple agora nodes within the same binary
Copyright:
Copyright (c) 2019-2021 BOSAGORA Foundation
All rights reserved.
License:
MIT License. See LICENSE for details.
********... | D |
/**
* Convert any D symbol or type to a human-readable string, at compile time.
*
* Given any D symbol (class, template, function, module name, or non-local variable)
* or any D type, convert it to a compile-time string literal,
* optionally containing the fully qualified and decorated name.
*
* ... | D |
// Written in the D programming language
// Author: Timon Gehr
// License: http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0
import std.algorithm, std.array, std.string, std.conv;
import module_;
import lexer, parser, expression, declaration, semantic, util, error;
import std.typecons : q = tuple, Q = Tuple;
... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.