code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
import std.stdint;
import weka.OH.AK;
struct NL {
uint16_t PL;
@property QL() {
return PL;
}
}
alias RL = DK!NL;
alias IL = RL.JK;
alias ZK = RL;
| D |
/*
* This file was automatically generated by sel-utils and
* released under the MIT License.
*
* License: https://github.com/sel-project/sel-utils/blob/master/LICENSE
* Repository: https://github.com/sel-project/sel-utils
* Generated from https://github.com/sel-project/sel-utils/blob/master/xml/metadata/java338... | D |
/Users/andrewburns/Desktop/Programming/swift/Bite/build/Bite.build/Release-iphoneos/Bite.build/Objects-normal/arm64/AppDelegate.o : /Users/andrewburns/Desktop/Programming/swift/Bite/TextBite+CoreDataProperties.swift /Users/andrewburns/Desktop/Programming/swift/Bite/Bite/NewTextBiteViewController.swift /Users/andrewburn... | D |
import std.stdio, std.random;
void main()
{
int[] a = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ];
/*
foreach (e; randomSample(a, 5))
{
writeln(e);
}
*/
writeln(randomSample(a, 5));
} | D |
/+
2013_06_07_19_51_01
+/
module dtools.util.d_funs;
import std.file;
import std.stdio;
import std.string;
import std.conv;
import std.traits;
import std.process;
@property getTmpFile(){
// return tmpDir~tmpfile~".txt";
return "/tmp/d_funs_mixin_insight.d"; //TEMP
}
template IdentityMixin(string s,alias val,string f... | D |
C:/Users/Matteo/Documents/QtProjects/TaskST/build-MainWindowProcess-Desktop_Qt_5_15_1_MSVC2015_64bit-Release/MainWindowProcess_autogen/EWIEGA46WW/moc_simpleswitch.cpp: C:/Users/Matteo/Documents/QtProjects/TaskST/MainWindowProcess/simpleswitch.h
| D |
module ScriptObjects.Vector;
//////////////////////////////////////////////////////////////////////
//
// Crytek Source code
// Copyright (c) Crytek 2001-2004
//
// File: ScriptObjectVector.h
//
// Description: interface for the CScriptObjectVector class.
//
// History:
// - File Created by Alberto Demichelis
// -... | D |
/home/iot_dev/Documents/Rust_prac/rust_web/simple_iot_api/target/release/deps/unicase-b2bd661a40c29031.rmeta: /home/iot_dev/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-1.4.2/src/lib.rs
/home/iot_dev/Documents/Rust_prac/rust_web/simple_iot_api/target/release/deps/libunicase-b2bd661a40c29031.rlib: /home/iot_... | D |
module anthropos.logic.resource.Plant;
import anthropos;
/**
* A structure which defines a plant
* Has a resource it yields, an ideal climate, and a climate threshhold
* of how much deviance it can tolerate
* TODO: Make a climate struct a thing
*/
struct Plant {
Resource produced; ///The resource produced ... | D |
module ac.client.gl.glscreentexture;
import bindbc.opengl;
import ac.client.gl.glresourcemanager;
import ac.client.graphicsettings;
import ac.client.gl.glstate;
import ac.client.gl.gltexture;
import ac.common.math.vector;
import ac.client.application;
/// Texture that is automatically adjusted to the screen size
fin... | D |
module UnrealScript.Core.Subsystem;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Core.UObject;
extern(C++) interface Subsystem : UObject
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class Co... | D |
void main() {
auto N = ri;
auto a = readAs!(int[]);
ulong cnt;
foreach(i; a) {
while(!(i & 1)) {
i /= 2;
cnt++;
}
}
cnt.writeln;
}
// ===================================
import std.stdio;
import std.string;
import std.conv;
import std.algorithm;
import std.range;
import std.traits;
import std.math;
im... | D |
version https://git-lfs.github.com/spec/v1
oid sha256:fea7229b6545eb9207df03ce490f0371b6de8fe939068b0c801e24f37a6bb3c4
size 530
| D |
instance DIA_HEROLD_INFO(C_INFO)
{
npc = vlk_406_herold;
nr = 10;
condition = dia_herold_info_condition;
information = dia_herold_info_info;
permanent = TRUE;
important = TRUE;
};
func int dia_herold_info_condition()
{
if(Npc_IsInState(self,zs_talk))
{
return TRUE;
};
};
func void dia_herold_info_info()
... | D |
/Users/RyanLiao/Desktop/XCodeWorkspace/Flix/Build/Intermediates.noindex/Flix.build/Debug-iphonesimulator/Flix.build/Objects-normal/x86_64/AppDelegate.o : /Users/RyanLiao/Desktop/XCodeWorkspace/Flix/Flix/AppDelegate.swift /Users/RyanLiao/Desktop/XCodeWorkspace/Flix/Flix/MovieCell.swift /Users/RyanLiao/Desktop/XCodeWorks... | D |
// Copyright Ferdinand Majerech 2011.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
module dyaml.test.resolver;
@safe unittest
{
import std.conv : text;
import std.file : readTex... | D |
func void potionalchemy_s1()
{
var C_NPC her;
her = Hlp_GetNpc(pc_hero);
if(Hlp_GetInstanceID(self) == Hlp_GetInstanceID(her))
{
self.aivar[AIV_INVINCIBLE] = TRUE;
PLAYER_MOBSI_PRODUCTION = MOBSI_POTIONALCHEMY;
AI_ProcessInfos(her);
};
};
instance PC_POTIONALCHEMY_END(C_INFO)
{
npc = pc_hero;
nr = 999;
... | D |
/*******************************************************************************
Consume request protocol.
Copyright:
Copyright (c) 2011-2017 sociomantic labs GmbH. All rights reserved.
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
****************************... | D |
import std.stdio;
import std.algorithm;
class Prime {
public:
bool[] prime_list;
bool is_prime(long n){
if (n < 0){
return false;
}
if (n < prime_list.length){
return prime_list[n];
} else {
update();
... | D |
instance NOV_1348_NOVIZE(NPC_DEFAULT)
{
name[0] = NAME_NOVIZE;
npctype = NPCTYPE_AMBIENT;
guild = GIL_NOV;
level = 3;
voice = 5;
id = 1348;
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 |
$(OBJDIR)/frontc.cmi $(OBJDIR)/: $(OBJDIR)/cil.cmi $(OBJDIR)/cabs.cmo
| D |
/Users/mac/Assignment/build/Assignment.build/Debug-iphonesimulator/Assignment.build/Objects-normal/x86_64/SetTimeAlarmVC.o : /Users/mac/Assignment/Assignment/Controller/AlarmPIC.swift /Users/mac/Assignment/Assignment/Controller/TicTacToeVC.swift /Users/mac/Assignment/Assignment/Controller/NoteVC.swift /Users/mac/Assign... | 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 foo.bar;
import core.vararg;
import std.stdio;
pragma(lib, "test");
pragma(msg, "Hello World");
static assert(true, "message");
alias double mydbl;
alias fl1 = function ()
in {}
in (true)
out (; true)
out (r; true)
out
{
}
out (r)
{
}
do
{
return 2;
... | D |
// REQUIRED_ARGS: -main -c
void foo() { }
| D |
/Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/FluentSQL.build/FluentSQLSchema.swift.o : /Users/Khanh/vapor/TILApp/.build/checkouts/fluent.git-6251908308727715749/Sources/FluentSQL/FluentSQLSchema.swift /Users/Khanh/vapor/TILApp/.build/checkouts/fluent.git-6251908308727715749/Sources/FluentSQL/SchemaBu... | D |
/**
* Math
* This module was copied temporarily from d2d, a graphics library which I contribute to
* I will remove it when d2d separates math and graphics
*/
module math;
public import math.Matrix;
public import math.Vector;
| D |
/Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/.build/x86_64-apple-macosx10.10/debug/JDCloudSDKCommon.build/Model/SimpleResponses.swift.o : /Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/Sources/JDCloudSDKCommon/Mode... | 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.840254879 sediments, sandstones, siltstones
310.200012 40.5999985 4.69999981 120.900002 56 59 -33.2000008 151.100006 241 8.60000038 8.60000038 0.895431109 extrusiv... | D |
/*
* main.d
*
* This module contains the boot and initialization logic
* for an architecture
*
*/
module architecture.main;
// import normal architecture dependencies
import kernel.arch.x86_64.core.gdt;
import kernel.arch.x86_64.core.tss;
import kernel.arch.x86_64.core.idt;
import kernel.arch.x86_64.core.paging... | D |
/**
Template support functions
*/
module opmix.traits;
public import std.traits;
// custom <dmodule traits public_section>
template DeepUnqual(T) {
static if(isAssociativeArray!T) {
alias Unqual!(Unqual!(ValueType!T)[Unqual!(KeyType!T)]) DeepUnqual;
} else static if(isDynamicArray!T) {
alias Unqu... | D |
INSTANCE Info_Mod_Landstreicher_Hi (C_INFO)
{
npc = Mod_7694_BDT_Bandit_NW;
nr = 1;
condition = Info_Mod_Landstreicher_Hi_Condition;
information = Info_Mod_Landstreicher_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Landstreicher_Hi_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Landstreicher_Hi... | D |
the remains of something that has been destroyed or broken up
any of various Chinese boats with a high poop and lugsails
dispose of (something useless or old
| D |
a girl or young woman who is unmarried
| D |
import std.stdio;
import std.algorithm : min, max, swap;
import std.math : sqrt, PI, tan, abs, atan2;
import std.parallelism : parallel;
import std.range : iota;
import ppmreader;
enum width = 1024;
enum height = 768;
enum filename = "./out.ppm";
enum fov = PI / 2.0; // 90
enum far = 1000.0f;
enum depth_limit = 4;
e... | D |
module foo.bar;
import core.vararg;
import std.stdio;
pragma (lib, "test");
pragma (msg, "Hello World");
static assert(true, "message");
alias mydbl = double;
alias fl = function ()
in
{
}
do
{
}
;
int testmain();
struct S
{
int m;
int n;
}
template Foo(T, int V)
{
void foo(...)
{
static if (is(Object _ : X!TL, a... | D |
/Users/fengshaohui/Desktop/swift/iOS/BasedLearningDemo/Build/Intermediates/BasedLearningDemo.build/Debug-iphoneos/BasedLearningDemo.build/Objects-normal/armv7/FengButtonViewController.o : /Users/fengshaohui/Desktop/swift/iOS/BasedLearningDemo/BasedLearningDemo/FengButtonViewController.swift /Users/fengshaohui/Desktop/s... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail18236.d(20): Error: cannot cast expression `V(12)` of type `V` to `int`
---
*/
struct V
{
int a;
}
struct S
{
enum A = V(12);
}
void main()
{
int b = cast(int)S.A;
}
| D |
module dkh.modint;
import dkh.numeric.primitive;
/**
int with mod, mod must be prime
*/
struct ModInt(uint MD) if (MD < int.max) {
import std.conv : to;
uint v;
this(int v) {this(long(v));}
this(long v) {this.v = (v%MD+MD)%MD;}
static auto normS(uint x) {return (x<MD)?x:x-MD;}
static auto mak... | D |
/Users/LuisSFU/Desktop/Derilearn/DeriLearn/DerivedData/DeriLearn/Build/Intermediates/DeriLearn.build/Debug-iphoneos/DeriLearn.build/Objects-normal/armv7/ViewControllerFormulario.o : /Users/LuisSFU/Desktop/Derilearn/DeriLearn/DeriLearn/ViewControllerFormulario2.swift /Users/LuisSFU/Desktop/Derilearn/DeriLearn/DeriLearn/... | D |
module android.java.android.system.Int64Ref;
public import android.java.android.system.Int64Ref_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Int64Ref;
import import0 = android.java.java.lang.Class;
| D |
/**
* Copyright © Novelate 2020
* License: MIT (https://github.com/Novelate/NovelateEngine/blob/master/LICENSE)
* Author: Jacob Jensen (bausshf)
* Website: https://novelate.com/
* ------
* Novelate is a free and open-source visual novel engine and framework written in the D programming language.
* It can be used freely... | D |
//Written in the D programming language
/++
Module containing core time functionality, such as $(LREF Duration) (which
represents a duration of time) or $(LREF MonoTime) (which represents a
timestamp of the system's monotonic clock).
Various functions take a string (or strings) to represent a unit of ... | D |
import std.file;
import std.stdio;
import std.string;
import std.exception;
import std.conv;
import std.algorithm;
import std.array;
import std.range;
import gfm.math;
static import scene;
struct Vec3
{
float x;
float y;
float z;
};
struct Vertex
{
Vec3 Position;
Vec3 Norm... | D |
# FIXED
Startup/osal_icall_ble.obj: C:/ti/simplelink/ble_sdk_2_02_01_18/src/examples/simple_peripheral/cc26xx/stack/osal_icall_ble.c
Startup/osal_icall_ble.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/icall/src/inc/icall.h
Startup/osal_icall_ble.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/s... | D |
/*
* Copyright (c) 2004-2009 Derelict Developers
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notic... | D |
// URL: https://atcoder.jp/contests/typical90/tasks/typical90_r
import std.algorithm, std.array, std.bitmanip, std.container, std.conv, std.format,
std.functional, std.math, std.range, std.traits, std.typecons, std.stdio, std.string;
version(unittest) {} else
void main()
{
double T; io.getV(T);
double L, X... | D |
D :
+-D.Module :
+-D.DeclDefs : void
+-D.DeclDef : void
+-D.Declaration : void
+-D.Decl : void
+-D.basicFunction : void
+-D.BasicType : void
| +-D.BasicTypeX : void
+-D.Declarator : void
| ... | D |
/Users/xinruiyang/Documents/WINTER_2017/EECS_441/sphere/CrowdQ/Sphere/DerivedData/Sphere/Build/Intermediates/Sphere.build/Debug-iphonesimulator/Sphere.build/Objects-normal/x86_64/ViewController.o : /Users/xinruiyang/Documents/WINTER_2017/EECS_441/sphere/CrowdQ/Sphere/Sphere/ViewController.swift /Users/xinruiyang/Docume... | D |
module mutils.meta;
import std.meta;
import std.traits;
template removeEven(Arr...) {
static if (Arr.length > 2) {
alias removeEven = AliasSeq!(Arr[1], removeEven!(Arr[2 .. $]));
} else static if (Arr.length == 2) {
alias removeEven = AliasSeq!(Arr[1]);
} else {
alias removeEven = AliasSeq!();
}
}
unittes... | D |
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Routing.build/RouteCollection.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Routing-1.0.1/Sources/Routing/Branch.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Routing-1.0.1/Sources/Routing/ParametersCont... | D |
/home/zbf/workspace/git/RTAP/target/debug/build/log-86de41fdbb5a8505/build_script_build-86de41fdbb5a8505: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/log-0.4.8/build.rs
/home/zbf/workspace/git/RTAP/target/debug/build/log-86de41fdbb5a8505/build_script_build-86de41fdbb5a8505.d: /home/zbf/.cargo/re... | D |
Short: b
Long: cookie
Arg: <data|filename>
Protocols: HTTP
Help: Send cookies from string/file
Category: http
Example: -b cookiefile $URL
Example: -b cookiefile -c cookiefile $URL
See-also: cookie-jar junk-session-cookies
Added: 4.9
---
Pass the data to the HTTP server in the Cookie header. It is supposedly
the data pr... | D |
// Written in the D programming language.
/**
Utilities for manipulating files and scanning directories. Functions
in this module handle files as a unit, e.g., read or write one _file
at a time. For opening files and manipulating them via handles refer
to module $(LINK2 std_stdio.html,$(D std.stdio)).
Macros:
WIKI = ... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range;
void main()
{
auto N = readln.chomp.to!int;
auto G = new int[][N];
auto M = readln.chomp.to!int;
foreach (_; 0..M) {
auto ab = readln.split.to!(int[]);
auto A... | D |
// REQUIRED_ARGS: -o-
// PERMUTE_ARGS:
nothrow /*extern(Windows) */export int GetModuleHandleA(const char* lpModuleName);
void main()
{
/*extern(Windows) */int function(const char*) f;
assert(f != &GetModuleHandleA);
}
| D |
/**
Necessary boilerplate for pyd.
To wrap all functions/return/parameter types and struct/class definitions from
a list of modules, write this in a "main" module and generate mylib.{so,dll}:
------
mixin wrapAll(LibraryName("mylib"), Modules("module1", "module2", ...));
------
*/
module autowrap.... | D |
/Users/DanielChang/Documents/Vapor/Hello/.build/debug/Jay.build/NullParser.swift.o : /Users/DanielChang/Documents/Vapor/Hello/Packages/Jay-1.0.1/Sources/Jay/ArrayParser.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Jay-1.0.1/Sources/Jay/BooleanParser.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Jay... | D |
/*******************************************************************************
* Copyright (c) 2000, 2007 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 |
/*
TEST_OUTPUT:
---
fail_compilation/ice9338.d(13): Error: value of `this` is not known at compile time
fail_compilation/ice9338.d(14): Error: value of `this` is not known at compile time
---
*/
class Foo
{
void test()
{
enum members1 = makeArray();
enum members2 = this.makeArray();
}
... | D |
module volt.visitor.nodereplace;
import volt.visitor.visitor;
import volt.ir.copy;
import ir = volt.ir.ir;
class ExpReferenceReplacer : NullVisitor
{
public:
this(ir.Declaration decl, ir.Exp exp)
in {
assert(decl !is null);
assert(exp !is null);
}
body {
this.fromDecl = decl;
this.toExp = exp;
}
public... | D |
E: c45, c30, c62, c88, c13, c36, c59, c54, c72, c46, c47, c66, c24, c14, c73, c22, c39, c11, c77, c5, c83, c55, c85, c23, c8, c52, c4, c0, c44, c29, c70, c32, c7, c80, c87, c2, c17, c71, c60, c64, c3, c84, c57, c9, c25, c43, c49, c28, c81, c68, c82.
p5(E,E)
c45,c30
c14,c47
c13,c22
c59,c24
c77,c5
c62,c4
c13,c17
c72,c72... | D |
/home/shepj/xaod/ROOTAnalysisTutorial/RootCoreBin/obj/x86_64-slc6-gcc49-opt/ElectronPhotonFourMomentumCorrection/obj/testLinearity_Electrons.o /home/shepj/xaod/ROOTAnalysisTutorial/RootCoreBin/obj/x86_64-slc6-gcc49-opt/ElectronPhotonFourMomentumCorrection/obj/testLinearity_Electrons.d : /cvmfs/atlas.cern.ch/repo/sw/ASG... | D |
/home/molok/projects/rust/simulation/target/debug/deps/float-af1f027b66e5222c.rmeta: /home/molok/.cargo/registry/src/github.com-1ecc6299db9ec823/piston-float-1.0.0/src/lib.rs
/home/molok/projects/rust/simulation/target/debug/deps/libfloat-af1f027b66e5222c.rlib: /home/molok/.cargo/registry/src/github.com-1ecc6299db9ec8... | D |
/******************************************************************
Для ПЛАВКИ нужно:
- выучить NPC_TALENT_FUSING у Шона и Ганса, проверка в DS_FUSING_COND
- форма для плавки (раньше назывался "Монетный штемпель") ITMI_DARKSAGA_STOCK, проверка в useWithItem
- подходящая руда:
золотая
серебряная
железо
м... | D |
/Users/okasho/serverProject/tryswift/get_post_patch_and_delate/swift/.build/debug/Fluent.build/SQL/SQL.swift.o : /Users/okasho/serverProject/tryswift/get_post_patch_and_delate/swift/Packages/Fluent-1.4.1/Sources/Fluent/Database/Database.swift /Users/okasho/serverProject/tryswift/get_post_patch_and_delate/swift/Packages... | D |
/Users/matthewashley/Documents/Xcode/MathChallenge/DerivedData/MathChallenge/Build/Intermediates/MathChallenge.build/Debug-iphonesimulator/MathChallenge.build/Objects-normal/x86_64/2SwiftData.o : /Users/matthewashley/Documents/Xcode/MathChallenge/MathChallenge/SecondViewController.swift /Users/matthewashley/Documents/X... | D |
/*
DIrrlicht - D Bindings for Irrlicht Engine
Copyright (C) 2014- Danyal Zia (catofdanyal@yahoo.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 gra... | D |
/*
* Copyright 2015-2018 HuntLabs.cn
*
* Licensed under the Apache License = SQLIntervalUnit(""); 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 req... | D |
instance NASZ_411_CzlonekBractwa (Npc_Default)
{
// ------ NSC ------
name = "Członek Bractwa";
guild = GIL_NONE;
id = 411;
voice = 19;
flags = 6;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 1);
Createinvitems (self, It... | D |
a member of the guerrilla force that opposed a left-wing government in Nicaragua
| D |
/Users/mwaly/Downloads/EventsVIPER/Build/Intermediates/Pods.build/Debug-iphonesimulator/SnapshotTesting.build/Objects-normal/x86_64/SceneKit.o : /Users/mwaly/Downloads/EventsVIPER/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/mwaly/Downloads/EventsVIPER/Pods/SnapshotTesting/Sources/Snapsho... | D |
/**
*
* Copyright: Copyright Digital Mars 2000 - 2012.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors: Walter Bright, Sean Kelly, Martin Nowak
* Source: $(DRUNTIMESRC src/rt/_sections.d)
*/
modu... | D |
module engine.framework.resources._json;
import engine.core.containers;
import engine.core.resource;
import engine.core.utils.ustruct;
import engine.core.log;
enum EJSONClass {
NULL,
OBJECT,
ARRAY,
STRING,
FLOAT,
INT,
BOOL,
}
class CJSONBackingData : CObject {
mixin( TRegisterClass!CJ... | 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... | D |
C:/Users/glutnix/Documents/Dropbox/__RapidProto/philrobokit_xc8/libraries/soft_serial/examples/.phr_out/lib/hal_gpio.d C:/Users/glutnix/Documents/Dropbox/__RapidProto/philrobokit_xc8/libraries/soft_serial/examples/.phr_out/lib/hal_gpio.p1: hardware/cores/lib/hal_gpio.c C:/Users/glutnix/Documents/Dropbox/__RapidProto... | D |
module gfm.math.funcs;
import std.math,
std.traits;
/// Returns: minimum of a and b.
T min(T)(T a, T b) pure nothrow
{
return a < b ? a : b;
}
/// Returns: maximum of a and b.
T max(T)(T a, T b) pure nothrow
{
return a > b ? a : b;
}
/// Convert from radians to degrees.
T degrees(T)(T x) pure if (!is... | D |
/*
Copyright (c) 2019 Ferhat Kurtulmuş
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,
exe... | D |
module collie.socket.tcpclient;
import std.socket;
import collie.socket.eventloop;
import collie.socket.common;
import collie.socket.tcpsocket;
alias ConnectCallBack = void delegate(bool connect);
final class TCPClient : TCPSocket
{
this(EventLoop loop, bool isIpV6 = false)
{
super(loop, isIpV6);
... | D |
module android.java.android.nfc.NfcAdapter_ReaderCallback_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.android.nfc.Tag_d_interface;
import import1 = android.java.java.lang.Cl... | D |
instance DIA_EMNOL_EXIT(C_Info)
{
npc = vlk_6004_emnol;
nr = 999;
condition = dia_emnol_exit_condition;
information = dia_emnol_exit_info;
permanent = TRUE;
description = Dialog_Ende;
};
func int dia_emnol_exit_condition()
{
return TRUE;
};
func void dia_emnol_exit_info()
{
AI_StopProcessInfos(self);
};
i... | D |
module builtin;
import std.typecons : Flag, Yes, No, scoped;
import more.alloc;
import more.builder;
import more.format : StringSink;
import typecons : Rebindable, rebindable;
import common : from, passfail, unconst, toImmutable, toConst, uarray, toUarray, singleton, quit;
import log;
import syntax : Synt... | D |
/***
* D compatible types that correspond to various basic types in associated
* C and C++ compilers.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors... | D |
/Users/cansoykarafakili/Desktop/Hello/build/Intermediates/Hello.build/Debug/Vapor.build/Objects-normal/x86_64/DateMiddleware.o : /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/vapor.gi... | D |
/**
* Contains the garbage collector implementation.
*
* Copyright: Copyright Digital Mars 2001 - 2013.
* License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright, David Friedman, Sean Kelly
*/
/* Copyright Digital Mars 2005 - 2013.
* Distributed under the Boost So... | D |
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.0
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ------------------------------... | D |
/**
Management of packages on the local computer.
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, Matthias Dondorff
*/
module dub.packagemanager;
import dub.dependency;
import dub.internal.utils;
imp... | D |
/home/sriharikapu/substrate-node-template/target/release/deps/slog_scope-36eadd57549155b8.rmeta: /home/sriharikapu/.cargo/registry/src/github.com-1ecc6299db9ec823/slog-scope-4.3.0/lib.rs
/home/sriharikapu/substrate-node-template/target/release/deps/libslog_scope-36eadd57549155b8.rlib: /home/sriharikapu/.cargo/registry... | D |
module imports.a314;
static import imports.c314;
import renamed = imports.c314;
import imports.c314 : bug;
| D |
import std.stdio;
import std.string;
void main(){
auto array = new int[100];
auto copy = array.dup;
assert(array !is copy);
assert(array == copy);
//配列が必ずしも空とは限らない
string a[] = new string[2];
//a = new string[2];
assert(a !is null);
a = a[0 .. 0];
assert(a !is null);
//配列長の取得
auto sarr = new short[55];
... | D |
/home/timon/Documents/git/amethyst-server/amethyst-server/target/debug/build/expat-sys-353c8f8b6067adca/build_script_build-353c8f8b6067adca: /home/timon/.cargo/registry/src/github.com-1ecc6299db9ec823/expat-sys-2.1.6/build.rs
/home/timon/Documents/git/amethyst-server/amethyst-server/target/debug/build/expat-sys-353c8f... | D |
module wx.wxObject;
public import wx.common;
//! \cond STD
version (Tango)
import tango.core.Version;
//! \endcond
//! \cond EXTERN
extern (C)
{
alias void function(IntPtr ptr) Virtual_Dispose;
}
static extern (C) IntPtr wxObject_GetTypeName(IntPtr obj);
static extern (C) void wxObject_dtor(IntPtr self);
//! \... | D |
/** uiribbon.d
Converted from 'uiribbon.h'.
Version: V7.1
Authors: Koji Kishita
*/
module c.windows.uiribbon;
import c.windows.windef;
import c.windows.wtypes;
import c.windows.guiddef;
import c.windows.unknwn;
import c.windows.objidl;
import c.windows.propkeydef;
import c.windows.propidl;
import c.windows.uiribbon... | D |
/**
* Copyright: Copyright (c) 2010-2011 Jacob Carlborg. All rights reserved.
* Authors: Jacob Carlborg
* Version: Initial created: Nov 8, 2010
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
*/
module dvm.dvm._;
public:
import dvm.dvm.Application;
import dvm.dvm.CommandManag... | D |
// Written in the D programming language.
/**
This module contains common Dialog implementation.
Use to create custom dialogs.
Synopsis:
----
import dlangui.dialogs.dialog;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopatin, coolreader.org@gmail.com
*/
module dlangui.dialog... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
329.5 49.5 11.6000004 23.6000004 100 120 -23 150.5 8586 19.7000008 21.3999996 0.510277774 extrusives
322.399994 60.7000008 8.19999981 35.2999992 90 110 -33.7999992 150.899994 85 13.3999996 13.3999996 0.714480207 intrusives, dolerite
328.700012 4... | D |
# FIXED
i2c_lcd.obj: C:/ti/CC3200SDK_1.3.0/cc3200-sdk/driverlib/i2c_lcd.c
i2c_lcd.obj: C:/ti/ccs800/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/include/stdarg.h
i2c_lcd.obj: C:/ti/ccs800/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/include/sys/_types.h
i2c_lcd.obj: C:/ti/ccs800/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/... | D |
module quartz_core.layer;
import core_graphics.color;
import foundation.geometry;
extern (Objective-C):
interface CALayer
{
CGFloat borderWidth() @selector("borderWidth");
void borderWidth(CGFloat value) @selector("setBorderWidth:");
CGColorRef borderColor() @selector("borderColor");
void borderColo... | D |
module launcher.main;
import
core.thread,
std.algorithm,
std.conv,
std.process,
std.parallelism,
std.stdio,
std.math,
std.string,
ws.wm,
ws.gui.point,
ws.gui.input,
ws.time,
common.screens,
common.configLoader,
launcher.config;
import x11.Xlib: XGra... | D |
#!/usr/bin/env rdmd
/**
DMD builder
Usage:
./build.d dmd
TODO:
- add all posix.mak Makefile targets
- support 32-bit builds
- test on OSX
- test on Windows
- allow appending DFLAGS via the environment
- test the script with LDC or GDC as host compiler
*/
version(CoreDdoc) {} else:
import std.algorithm, std.conv, ... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.