code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
INSTANCE Info_Mod_Aabid_Hi (C_INFO)
{
npc = Mod_7105_ASS_Aabid_NW;
nr = 1;
condition = Info_Mod_Aabid_Hi_Condition;
information = Info_Mod_Aabid_Hi_Info;
permanent = 0;
important = 0;
description = "Wer bist du?";
};
FUNC INT Info_Mod_Aabid_Hi_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Aabid_Hi_Info()
{
... | 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 |
/home/jean/Documents/EDS_project_Alarm_Part/Software/target/rls/debug/build/serde-a677b46b7ed57025/build_script_build-a677b46b7ed57025: /home/jean/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.104/build.rs
/home/jean/Documents/EDS_project_Alarm_Part/Software/target/rls/debug/build/serde-a677b46b7ed57025/bu... | D |
/**
* box.d
* tower
* May 11, 2013
* Brandon Surmanski
*/
module math.bv.box;
import std.math;
import std.conv;
import std.traits;
import math.vector;
mixin template BoxN(uint N)
{
mixin ("alias VECN = Vec"~to!string(N)~";");
alias BOXN = Unqual!(typeof(this));
VECN _extent; //all entries must be ... | D |
/Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Delay.o : /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwi... | D |
import std.stdio;
import jade;
import arsd.jsvar;
void main(string[] args) {
import std.getopt;
string filename = "views/index.jade";
bool doCompileTime=false, doBoth=false;
auto helpInfo = getopt(args,
"filename|f", "File to parse", &filename
);
if (args.length > 1) {
filename = args[1];
}
static if (t... | D |
module dlangbot.bugzilla;
import vibe.data.json : Json;
string bugzillaURL = "https://issues.dlang.org";
import std.algorithm, std.conv, std.range, std.string;
import std.format : format;
//==============================================================================
// Bugzilla
//=================================... | D |
module UnrealScript.UnrealEd.ShowTaggedPropsCommandlet;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Core.Commandlet;
extern(C++) interface ShowTaggedPropsCommandlet : Commandlet
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptC... | D |
// Written in the D programming language.
/**
* Contains the elementary mathematical functions (powers, roots,
* and trigonometric functions), and low-level floating-point operations.
* Mathematical special functions are available in $(D std.mathspecial).
*
$(SCRIPT inhibitQuickIndex = 1;)
$(DIVC quickindex,
$(BO... | D |
#!/usr/bin/env dk af4393e1aa8f rdmd
import
std.stdio,
std.file,
std.algorithm,
std.range,
std.array;
void main() {
auto rs = slurp!(int, int, int, int, int)("./dat/03.txt", "#%d @ %d,%d: %dx%d");
auto xdim = rs
.map!(x => x[1] + x[3])
.maxElement;
auto ydim = rs
.map!(x => x[2] + x[4])
.maxElement;
au... | D |
import std.stdio, std.algorithm, std.range;
extern(C) pure nothrow void* alloca(in size_t size);
void bestShuffle(in char[] txt, ref char[] result) pure nothrow {
// Assume alloca to be pure.
//extern(C) pure nothrow void* alloca(in size_t size);
enum size_t NCHAR = size_t(char.max + 1);
enum size_t M... | D |
/*#D*/
// Copyright © 2017, Bernard Helyer. All rights reserved.
// See copyright notice in src/volt/license.d (BOOST ver. 1.0).
//! Code for generating error message strings.
module volta.util.errormessages;
import watt.text.format : format;
import ir = volta.ir;
import volta.ir.location;
string badAbstractMsg()
{
... | D |
/home/leon/rust/rust_tutorial/projects/add/target/debug/deps/add_one-b33f052eeb3b9027: add-one/src/lib.rs
/home/leon/rust/rust_tutorial/projects/add/target/debug/deps/add_one-b33f052eeb3b9027.d: add-one/src/lib.rs
add-one/src/lib.rs:
| D |
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Turnstile.build/Credentials/Credentials.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Turnstile-1.0.3/Sources/Turnstile/TurnstileError.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Turnstile-1.0.3/Source... | D |
/Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/build/Ingenium.build/Release-iphonesimulator/Ingenium.build/Objects-normal/i386/TutorDetailVC.o : /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/TutorDetailVC.swift /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/Spri... | D |
/*
* hunt-proton: AMQP Protocol library for D programming language.
*
* Copyright (C) 2018-2019 HuntLabs
*
* Website: https://www.huntlabs.net/
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.proton.codec.ReadableBuffer;
import hunt.proton.codec.WritableBuffer;
import hunt.Exception... | D |
import std.conv;
import std.stdio;
import std.string;
import google.protobuf;
import tutorial.addressbook;
/// Iterates though all people in the AddressBook and prints info about them.
void listPeople(const AddressBook addressBook)
{
foreach (person; addressBook.people)
{
writeln("Person ID: ", person.... | D |
module vulkan.generators.image_generator;
/**
*
*/
import vulkan.all;
final class ImageGenerator {
VulkanContext context;
VkDevice device;
string name;
uint[] imageDimensions;
uint[] workgroupDimensions;
ComputePipeline pipeline;
uint pushConstSize;
void* pushConst;
VFormat forma... | D |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtTest module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** License... | D |
/**
* Handle enums.
*
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1999-2019 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org... | D |
import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;
immutable int MAX = 100001;
immutable int INF = 1 << 29;
void main() {
auto N = readln.chomp.to!int;
auto V = N.iota.... | D |
instance CS_Richter(Npc_Default)
{
name[0] = "SÍdzia";
npcType = npctype_main;
guild = GIL_None;
level = 5;
voice = 13;
id = 3022;
attribute[ATR_STRENGTH] = 30;
attribute[ATR_DEXTERITY] = 30;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 100;
attribute[ATR_HITPOINTS] ... | D |
module user.ramfs;
| D |
/**
Evented signal-slot mechanism
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
*/
module vibe.core.signal;
public import vibe.core.driver;
/** Creates a new signal that can be shared between fibers.
*... | D |
/**
* TypeInfo support code.
*
* Copyright: Copyright Digital Mars 2004 - 2009.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Walter Bright
*/
/* Copyright Digital Mars 2004 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See... | D |
/Users/okasho/serverProject/tryswift/get_and_post/swift/.build/debug/Core.build/Strand.swift.o : /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Core-1.1.1/Sources/Core/Array.swift /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Core-1.1.1/Sources/Core/Bool+String.swift /Users/okasho/s... | D |
# FIXED
F2806x_CpuTimers.obj: C:/ti/c2000/C2000Ware_1_00_04_00/device_support/f2806x/common/source/F2806x_CpuTimers.c
F2806x_CpuTimers.obj: C:/ti/c2000/C2000Ware_1_00_04_00/device_support/f2806x/headers/include/F2806x_Device.h
F2806x_CpuTimers.obj: C:/ti/c2000/C2000Ware_1_00_04_00/device_support/f2806x/headers/include... | D |
import std.stdio;
void main()
{
version(UseHiddenFile)
{
import hello;
helloFun();
}
else
{
static assert(!__traits(compiles, {
import hello;
helloFun();
}));
writeln("no hidden file compiled");
}
}
| D |
module android.java.java.io.EOFException_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.java.lang.Class_d_interfa... | D |
/**
* Contains SSE2 and MMX versions of certain operations for float.
*
* Copyright: Copyright Digital Mars 2008 - 2010.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Walter Bright, based on code originally written by Burton Radons
*/
/* Copyright Digita... | D |
/Users/adelkhaziakhmetov/Documents/XCODE/ViewChaining4.2/build/ViewChaining.build/Debug-iphonesimulator/ViewChaining.build/Objects-normal/x86_64/UICollectionViewCell+Chaining.o : /Users/adelkhaziakhmetov/Documents/XCODE/ViewChaining4.2/ViewChaining/UIChaining/UITextField+Chaining.swift /Users/adelkhaziakhmetov/Document... | D |
/Users/azimin/Downloads/Hello2/.build/debug/Node.build/Fuzzy/Set+Convertible.swift.o : /Users/azimin/Downloads/Hello2/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData.swift /Users/azimin/Downloads/Hello2/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/St... | D |
module uvm;
public import uvm.base;
public import uvm.comps;
public import uvm.seq;
public import uvm.tlm1;
| D |
module UnrealScript.GameFramework.GameCrowdBehavior_PlayAnimation;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.GameFramework.GameCrowdAgent;
import UnrealScript.Engine.AnimNodeSequence;
import UnrealScript.GameFramework.SeqAct_PlayAgentAnimation;
import UnrealScript.Engine.Actor;
imp... | D |
/*******************************************************************************
Tests connection timeouts
Copyright:
Copyright (c) 2019-2021 BOSAGORA Foundation
All rights reserved.
License:
MIT License. See LICENSE for details.
**************************************************... | D |
module drop_source.main;
/**
The project implements IDropSource and initiates a Drag & Drop operation.
It uses an Edit control and allows dragging text from one application to another.
*/
import core.runtime;
import core.stdc.stdlib;
import core.stdc.string;
import std.conv;
import std.exception;
import std.... | D |
/Users/xiaohongwei/projects/for_offer/target/debug/deps/memchr-30cee39cc6741053.rmeta: /Users/xiaohongwei/.cargo/registry/src/mirrors.ustc.edu.cn-b63e9dae659fc205/memchr-2.3.2/src/lib.rs /Users/xiaohongwei/.cargo/registry/src/mirrors.ustc.edu.cn-b63e9dae659fc205/memchr-2.3.2/src/fallback.rs /Users/xiaohongwei/.cargo/re... | D |
import std.stdio, std.container, std.conv, std.regex;
void main() {
auto invalid = regex(r"(?i)[gkmqvwxzio]");
auto longest = Array!string();
auto maxlen = 0;
foreach (ref line; File("words.txt").byLine()) {
auto word = to!string(line);
auto wlen = to!int(word.length);
if (wlen... | D |
/**
Compiler settings and abstraction.
Copyright: © 2013-2016 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.compiler;
public import dub.compilers.buildsettings;
public import dub.platform : BuildPl... | D |
/Users/mumpiko/dev/XCUITest/XCUITest-demo/output/Build/Intermediates/UIKitCatalog.build/Debug-iphonesimulator/UIKitCatalog.build/Objects-normal/x86_64/UIColor+ApplicationSpecific.o : /Users/mumpiko/dev/XCUITest/XCUITest-demo/UIKitCatalog/PickerViewController.swift /Users/mumpiko/dev/XCUITest/XCUITest-demo/UIKitCatalog/... | D |
module deagle.util.CallHistory;
import std.conv;
import std.traits;
struct CallHistory
{
public:
// Index access
const(Call) opIndex(uint index) const
{
return calls[index];
}
// Clear
void clear()
{
calls = [];
}
ulong length() const @property
{
return calls.length;
}
// Concatenation ops (... | D |
// Copyright 2019 - 2021 Michael D. Parker
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
module bindbc.freetype.bind.ftbdf;
version(linux) {
import bindbc.freetype.config;
import... | D |
module mahjong.graphics.i18n;
import std.conv;
string translate(T)(T term)
{
// TODO: dlangui.i18n.uitstring
return term.to!string;
}
| D |
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Fluent.build/Schema/SchemaSupporting+CRUD.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/fluen... | D |
/Users/GroverDover/True_Industries/GVE/iOSDev/GVE_Sample_App_1/build/Working_With_GVE_Screens_2.build/Debug-iphonesimulator/Working_With_GVE_Screens_2.build/Objects-normal/x86_64/DesignTestsController.o : /Users/GroverDover/True_Industries/GVE/iOSDev/GVE_Sample_App_1/Working_With_GVE_Screens_2/AppDelegate.swift /Users/... | D |
/Users/Rens/Development/RecoveryJournal/Build/Intermediates/RecoveryJournal.build/Debug/Async.build/Objects-normal/x86_64/DirectoryConfig.o : /Users/Rens/Development/RecoveryJournal/.build/checkouts/async.git-2335297525913451934/Sources/Async/Socket/SocketSource.swift /Users/Rens/Development/RecoveryJournal/.build/chec... | D |
module darklight.parse;
import std.traits : isSomeString;
import std.algorithm : canFind;
import std.string : strip;
import std.array : replace;
pure @safe nothrow bool isNullOrEmpty(T)(T text) if(isSomeString!T) {
return "" == text || text is null;
}
enum string[] _binderVal = [`vm`, `staticVM`];
enum string[string... | D |
a union of interests or purposes or sympathies among members of a group
| D |
module roman_numerals_original;
import std.stdio;
string convert(int n)
{
import std.typecons, std.exception, std.array, std.algorithm.mutation;
enforce(n <= 3000, "Greater than 3000 is not achievable by Pax Romana");
immutable string[][] numerals = [
["I", "II", "III", "IV", "V", "VI", "VII",... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/Content/ContentContainer.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/panartem/Developer/Study/Microservices-vapor/... | D |
func void ZS_Preach_YBerion()
{
PrintDebugNpc(PD_TA_FRAME,"ZS_Preach_YBerion");
B_SetPerception(self);
AI_SetWalkMode(self,NPC_WALK);
if(!Npc_IsOnFP(self,"PREACH"))
{
AI_GotoWP(self,self.wp);
};
if(Wld_IsFPAvailable(self,"PREACH"))
{
AI_GotoFP(self,"PREACH");
};
AI_AlignToFP(self);
};
func void ZS_Preach... | D |
//*************************
// Warg Prototype
//*************************
PROTOTYPE Mst_Default_Warg(C_Npc)
{
//----- Monster ----
name = "Warg";
guild = GIL_WOLF;
aivar[AIV_MM_REAL_ID] = ID_WARG;
level = 30;
//----- Attributes ----
attribute [ATR_STRENGTH] = 225;
attribute [ATR_DE... | D |
//*******************************************************************
// SONSTIGES
//*******************************************************************
//*******************************************************************
// wird durch den Tod des Monsters aufgerufen
//***********************************************... | 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 |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010-2011 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICE... | D |
module ai.action_processing.classic_action_processing;
import ai.action_processing.action_processing;
import ai.ai_action;
import ai.chooser.classic.classic_chooser;
import data.data_storage;
abstract class ClassicActionProcessing : ActionProcessing {
protected :
abstract string[] lead();
public:
this(DataSt... | D |
module gsb.core.uievents;
import gsb.core.log;
import gsb.core.pseudosignals;
import gsb.core.window;
import gsb.core.gamepad;
import gsb.core.frametime;
import gl3n.linalg;
import Derelict.glfw3.glfw3;
import std.traits: isSomeString;
import std.conv: to;
import std.variant;
// Events are ADTs (sum types). See std.... | D |
module StringStack;
import std.container;
/**
* String stack
* Represents a stack data structure that only contains strings.
*/
class StringStack {
/**
* The data is stored in an array called stack.
*/
private SList!string stack;
/*
* Constructor.
*/
this() {
stack = SList!string();
}
... | D |
module android.java.android.companion.AssociationRequest;
public import android.java.android.companion.AssociationRequest_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!AssociationRequest;
import import1 = android.java.java.lang.Class;
| D |
// URL: https://atcoder.jp/contests/abc133/tasks/abc133_e
import std.algorithm, std.container, std.math, std.range, std.typecons, std.string;
const mod = 10^^9+7;
alias mint = ModInt!mod;
version(unittest) {} else
void main()
{
int n, k; io.getV(n, k);
auto g = Graph(n);
foreach (i; 0..n-1) {
int u, v; io... | D |
/**
* Local optimizations of elem trees
*
* Compiler implementation of the
* $(LINK2 https://www.dlang.org, D programming language).
*
* Does strength reduction optimizations on the elem trees,
* i.e. rewriting trees to less expensive trees.
*
* Copyright: Copyright (C) 1985-1998 by Symantec
* ... | D |
module vh;
import bash;
import std.format : format;
import std.stdio;
/// Meta-information about the project
enum VHInfo
{
version_ = "0.5.2",
built = __TIMESTAMP__,
source = "https://github.com/zorael/vh"
}
enum numFilesToReserveFor = 32;
version(unittest)
void main()
{
writeln("All tests compl... | D |
/Users/go7hic/workspace/Github/Rust-in-action/grrs/target/debug/deps/strsim-3eaac72702bc0655.rmeta: /Users/go7hic/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/strsim-0.8.0/src/lib.rs
/Users/go7hic/workspace/Github/Rust-in-action/grrs/target/debug/deps/strsim-3eaac72702bc0655.d: /Users/go7hic/.cargo/registr... | D |
module openclD.compose.Reduce;
import std.string, std.stdio, std.conv;
import openclD._;
import std.functional;
import std.math;
immutable string reduceBody = q{
{
unsigned int t = get_local_id (0), start = 2 * get_group_id (0) * get_local_size (0);
if (start + t < count)
partialSum [t] = in_a [start + t];
... | D |
a refined quality of gracefulness and good taste
a quality of neatness and ingenious simplicity in the solution of a problem (especially in science or mathematics
| D |
module fdb.tuple.part;
import
std.uuid,
std.variant;
alias Part = Algebraic!(
typeof(null),
ubyte[],
string,
long,
float,
double,
UUID);
| D |
instance BDT_10028_Addon_Buddler(Npc_Default)
{
name[0] = NAME_Addon_Buddler;
guild = GIL_BDT;
id = 10028;
voice = 12;
flags = 0;
npcType = NPCTYPE_BL_MAIN;
B_SetAttributesToChapter(self,4);
fight_tactic = FAI_HUMAN_NORMAL;
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_B_ToughBald,B... | D |
/Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/target/release/deps/libp2p_floodsub-d2fb6057745c8010.rmeta: /Users/pacmac/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-floodsub-0.29.0/src/lib.rs /Users/pacmac/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-floodsub... | D |
import foo;
class pol: foo {}
| D |
/Users/ameeradamsika/Desktop/IOS/Demo/LoginWithRxSwift/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/TakeUntil.o : /Users/ameeradamsika/Desktop/IOS/Demo/LoginWithRxSwift/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/ameeradamsika/Desktop/IOS/Demo/LoginWithRxSwift/Pods/RxSwift/RxSwift/Ob... | D |
#! blah
static assert(__LINE__ == 3); // fails as __LINE__ is 2
import std.stdio;
import std.math : signbit, sqrt;
/************************************/
static assert(-(1) == -1);
static assert(-(6i) == -6i);
static assert(-(1 + 6i) == -1 - 6i);
static assert(!27 == 0);
static assert(!0 == 1);
static assert(!6.2... | D |
module godot.scrollcontainer;
import std.meta : AliasSeq, staticIndexOf;
import std.traits : Unqual;
import godot.d.meta;
import godot.core;
import godot.c;
import godot.object;
import godot.classdb;
import godot.container;
@GodotBaseClass struct ScrollContainer
{
static immutable string _GODOT_internal_name = "Scroll... | D |
/*
TEST_OUTPUT:
---
fail_compilation/ice15922.d(23): Error: function `ice15922.ValidSparseDataStore!int.ValidSparseDataStore.correctedInsert!false.correctedInsert` has no `return` statement, but is expected to return a value of type `int`
fail_compilation/ice15922.d(21): Error: template instance `ice15922.ValidSparseDa... | D |
/Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/postgresAPI/.build/debug/Core.build/Array.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/postgresAP... | D |
module kratos.ecs.component;
import std.container : Array;
import std.typecons : Flag;
import std.traits : ReturnType;
import vibe.data.json;
alias AllowDerived = Flag!"AllowDerived";
private alias DefaultAllowDerived = AllowDerived.yes;
struct Dependency
{
AllowDerived allowDerived = DefaultAllowDerived;
}
@pr... | D |
/*
* hunt-console eases the creation of beautiful and testable command line interfaces.
*
* Copyright (C) 2018-2019, HuntLabs
*
* Website: https://www.huntlabs.net
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.console.command;
public import hunt.console.command.Command;
public import hunt.cons... | D |
/*
RUN_OUTPUT:
---
Success
---
*/
//import core.stdc.stdio;
extern(C) int printf(const char*, ...);
template Tuple(A...)
{
alias A Tuple;
}
template eval(A...)
{
const typeof(A[0]) eval = A[0];
}
/************************************************/
int foo1()
{
int x;
foreach (i; 0 .. 10)
x +... | D |
/Users/ozgun/Desktop/IOSCase/build/IOSCase.build/Debug-iphonesimulator/IOSCase.build/Objects-normal/x86_64/ViewType.o : /Users/ozgun/Desktop/IOSCase/IOSCase/Utils/ViewModelType.swift /Users/ozgun/Desktop/IOSCase/IOSCase/Utils/ViewControllerType.swift /Users/ozgun/Desktop/IOSCase/IOSCase/Utils/ViewType.swift /Users/ozgu... | D |
// Written in the D programming language.
/**
This module contains FileDialog implementation.
Can show dialog for open / save.
Synopsis:
----
import dlangui.dialogs.filedlg;
UIString caption = "Open File"d;
auto dlg = new FileDialog(caption, window, FileDialogFlag.Open);
dlg.show();
----
Copyright: Vadim Lopati... | D |
module io.selector.Selector;
version (linux)
{
public import io.selector.EpollSelector;
alias EpollSelector Селектор;
}
else version(Posix)
{
public import io.selector.PollSelector;
alias PollSelector Селектор;
}
else
{
public import io.selector.SelectSelector;
alias Селек... | D |
INSTANCE Mod_10027_Orc_Warrior_MT(Mst_Default_OrcWarrior)
{
//----- Monster -----
name = "Ork Krieger";
guild = GIL_FRIENDLY_ORC;
id = 10027;
voice = 18;
level = 30;
Npctype = NPCTYPE_MAIN;
fight_tactic = FAI_ORC;
Mdl_SetVisual (self, "Orc.mds");
// Body-Mesh Body... | D |
a locally circumscribed place characterized by some distinctive features
any of the regions of the surface of the Earth loosely divided according to latitude or longitude
an area or region distinguished from adjacent parts by a distinctive feature or characteristic
(anatomy) any encircling or beltlike structure
regulat... | D |
/Users/kristoferhuang/Desktop/Worktide/build/Worktide.build/Debug-iphonesimulator/Worktide.build/Objects-normal/x86_64/UserServiceHeader.o : /Users/kristoferhuang/Desktop/Worktide/Worktide/Helper/HelperForUploadingData.swift /Users/kristoferhuang/Desktop/Worktide/Worktide/Extensions/UITextField.swift /Users/kristoferhu... | D |
/Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/postgresAPI/.build/debug/Socks.build/TCPClient.swift.o : /Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/postgresAPI/Packages/Socks-1.2.2/Sources/Socks/Socks.swift /Users/KyleBlazier/Documents/Development/Xcode/ServerSide/Postgres/pos... | D |
module vksdk.objects.users.CropPhoto;
import vibe.data.json;
/**
* CropPhoto object
*/
class CropPhoto {
@name("photo")
private Photo photo;
@name("crop")
private Json crop;
@name("rect")
private Json rect;
Photo getPhoto() {
return photo;
}
Json getCrop() {
... | D |
/*
* DSFML - The Simple and Fast Multimedia Library for D
*
* Copyright (c) 2013 - 2017 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.
... | D |
/*
* Client for IRBIS64 library system.
* Alexey Mironov, 2019.
* MIT License.
*/
module irbis.text;
import std.algorithm: canFind, remove;
import std.array;
import std.bitmanip;
import std.conv;
import std.encoding: transcode, Windows1251String;
import std.random: uniform;
import std.socket;
import std.stdio;
im... | D |
import cairo.cairo;
import std.math;
import cairo.example;
void main()
{
runExample(&sample17);
}
void sample17(Context context)
{
context.selectFontFace("Sans", FontSlant.CAIRO_FONT_SLANT_NORMAL,
FontWeight.CAIRO_FONT_WEIGHT_BOLD);
context.setFontSize(90);
context.... | D |
<?xml version="1.0" encoding="ASCII"?>
<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="ShowAppointmentOfTheDay.notation#_... | D |
// ************************************************************
// EXIT
// ************************************************************
INSTANCE DIA_Gritta_EXIT(C_INFO)
{
npc = VLK_418_Gritta;
nr = 999;
condition = DIA_Gritta_EXIT_Condition;
information = DIA_Gritta_EXIT_Info;
permanent = TRUE;
d... | D |
module iup.datetime;
import iup.control;
import iup.core;
import iup.c.core;
import iup.c.api;
import toolkit.event;
import std.string;
/**
Creates a date editing interface element, which can displays a calendar for selecting a date.
In Windows is a native element. In GTK and Motif is a custom element. In Motif ... | D |
/home/zbf/workspace/git/RTAP/target/debug/deps/constant_time_eq-ca6c7dbfd44ea7bc.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/constant_time_eq-0.1.4/src/lib.rs
/home/zbf/workspace/git/RTAP/target/debug/deps/libconstant_time_eq-ca6c7dbfd44ea7bc.rlib: /home/zbf/.cargo/registry/src/mirrors.us... | D |
module hunt.framework.auth.Identity;
import hunt.framework.auth.principal;
import hunt.logging.ConsoleLogger;
import hunt.shiro;
/**
* User Identity
*/
class Identity {
private Subject _subject;
this() {
_subject = SecurityUtils.getSubject();
}
ulong id() {
PrincipalCollection pCo... | D |
a person who uses flattery
| D |
/*
Copyright (c) 2016-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, dist... | D |
// Written in the D programming language.
module windows.directshow;
public import windows.core;
public import windows.audio : IDirectSound, IDirectSoundBuffer;
public import windows.automation : BSTR, IDispatch, IEnumVARIANT, IErrorLog,
IPropertyBag, SAFEARRAY, VARIANT;
public impo... | D |
module android.java.javax.crypto.KeyAgreement;
public import android.java.javax.crypto.KeyAgreement_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!KeyAgreement;
import import5 = android.java.javax.crypto.SecretKey;
import import6 = android.java.java.lang.Class;
import import0 = android.java.j... | D |
a nation in northern North America
| D |
module frontend.frontend;
import vibe.d;
import backend.idocs;
import backend.iusers;
import backend.mongo.docs;
import backend.mongo.users;
import frontend.blog;
import frontend.error;
import frontend.users;
class FrontEnd
{
private IDocsProvider docsProvider;
private IUsersProvider usersProvider;
private ... | D |
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.