code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/home/hustccc/OS_Tutorial_Summer_of_Code/rCore_Labs/Lab2/os/target/riscv64imac-unknown-none-elf/debug/deps/spin-62f2a4f37690434c.rmeta: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/spin-0.5.2/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/spin-0.5.2/src/mutex... | D |
/Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Box.o : /Users/hanykaram/Desktop/MVP/Pods/Kingfisher/Sources/String+MD5.swift /Users/hanykaram/Desktop/MVP/Pods/Kingfisher/Sources/Res... | D |
module android.java.android.widget.MediaController_MediaPlayerControl_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
@JavaName("MediaController$Me... | D |
// c06ex05.d
import std.stdio;
import std.string;
void main()
{
int I;
string NOME[10];
// Entrada dos nomes
writeln("Leitura e apresentacao de nomes.\n");
for (I = 0; I <= 9; I++)
{
writef("Informe o %2do. nome: ", I + 1);
NOME[I] = chomp(readln());
}
writeln()... | D |
module ${TM_NEW_FILE_BASENAME};
/**
* @author ${TM_FULLNAME}
* @copyright Copyright (c) ${TM_YEAR} ${TM_ORGANIZATION_NAME}. All rights reserved.
* @version $Rev$
*/
class ${TM_NEW_FILE_BASENAME} {
this() {
}
}
| D |
module dmagick.c.image;
import core.stdc.stdio;
import core.stdc.time;
import dmagick.c.cacheView;
import dmagick.c.color;
import dmagick.c.colorspace;
import dmagick.c.composite;
import dmagick.c.compress;
import dmagick.c.compress;
import dmagick.c.effect;
import dmagick.c.exception;
import dmagick.c.geometry;
impo... | D |
module qvm.fcnot;
import vibe.d;
import std.bitmanip;
struct BBParams {
size_t in_bits;
size_t out_bits;
}
class FcnotWrapper {
// ushort port;
// string url;
// TCPConnection conn;
// this(string url, ushort port) {
// this.url = url;
// this.port = port;
// conn = ... | D |
../Linux.x86_64-gcc-ltcl8.4-NX/featurePLP.o ../Linux.x86_64-gcc-ltcl8.4-NX/featurePLP.d : featurePLP.c ../base/common.h ../itf/error.h featurePLP.h
| D |
module qiditu.wrapper;
import core.sys.windows.psapi;
import core.sys.windows.winbase;
import core.sys.windows.windef;
import core.sys.windows.winuser;
import std.conv;
import std.stdio;
import std.string;
import std.traits;
import std.utf;
version (X86)
{
pragma(lib, "public\\x86\\MinHook.lib");
}
else
{
ver... | D |
/*******************************************************************************
Fiber-suspending request performing plugin.
The code inside the Extension template (see below) is mixed into the client.
copyright: Copyright (c) 2012-2017 sociomantic labs GmbH. All rights reserved
License:
... | D |
/*
* Copyright 2015-2018 HuntLabs.cn
*
* 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 la... | D |
/Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Build/Intermediates.noindex/AlchemintProject.build/Debug-iphonesimulator/AlchemintProject.build/Objects-normal/x86_64/Token.o : /Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/AlchemintProject/Sources/External/NeoSwift/Crypto/RIPEMD16... | D |
the act of discontinuing or breaking off
| D |
module quarkhttp.utils;
import std.array;
import std.string;
shared immutable string
CRLF = "\r\n";
S1 skip(S1, S2)(S1 s, in S2 pattern)
{
if (!s.empty && !pattern.empty)
{
size_t i = 0;
while (i < s.length && indexOf(pattern, s[i]) >= 0)
++i;
return s[i .. $];
... | D |
#!/usr/bin/rdmd
module life;
import metus.dncurses.dncurses;
import std.algorithm;
class Cellular {
private:
// Data
enum Change {Kill, Birth=1<<0, Survive=1<<1};
ubyte[9] m_rules;
bool[] m_data;
uint m_rows, m_cols;
uint getIndex(uint row, uint col) {
return (row*m_cols+col);
}
ubyte countSurrounding(ui... | D |
/Users/brendanguegan/Library/Developer/Xcode/DerivedData/TestCoverage-dlcxaavmtcsidsearcolrmcjltsc/Build/Intermediates.noindex/TestCoverage.build/Debug-iphonesimulator/TestCoverage.build/Objects-normal/x86_64/NotCovered.o : /Users/brendanguegan/Projects/TestCoverage/TestCoverage/Covered.swift /Users/brendanguegan/Proje... | D |
instance DIA_Hyglas_Kap1_EXIT(C_Info)
{
npc = KDF_510_Hyglas;
nr = 999;
condition = DIA_Hyglas_Kap1_EXIT_Condition;
information = DIA_Hyglas_Kap1_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Hyglas_Kap1_EXIT_Condition()
{
return TRUE;
};
func void DIA_Hyglas_Kap1_EXIT_Info()
{
AI_... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1984-1998 by Symantec
* Copyright (C) 2000-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: ... | D |
module graphql;
import std.json : JSONValue;
import requests : Response, Request;
import config : Config;
struct GraphQLRequest
{
string operationName;
string query;
JSONValue variables;
Config configuration;
JSONValue toJson() const
{
return JSONValue([
"operationName": J... | D |
module mordor.common.stringutils;
import mordor.common.containers.redblacktree;
alias char[] string;
alias wchar[] wstring;
version (Windows) {
alias wchar tchar;
} else {
alias char tchar;
}
alias tchar[] tstring;
ubyte[] hexstringToData(string str)
in
{
assert(str.length % 2 == 0);
assert(isHexSt... | D |
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/HTTP.build/Objects-normal/x86_64/HTTPClient.o : /Users/petercernak/vapor/TILApp/.build/checkouts/http.git-2142495880518576061/Sources/HTTP/Utilities/RFC1123.swift /Users/petercernak/vapor/TILApp/.build/checkouts/http.git-2142495880518576061/... | D |
/Users/nikhilsridhar/Desktop/Shopp/Shopp/Build/Intermediates/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/FromJSON.o : /Users/nikhilsridhar/Desktop/Shopp/Shopp/Pods/ObjectMapper/Sources/FromJSON.swift /Users/nikhilsridhar/Desktop/Shopp/Shopp/Pods/ObjectMapper/Sources/ToJSON.swift /Users/nik... | D |
/**
The entry point to dub
Copyright: © 2012 Matthias Dondorff
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Matthias Dondorff, Sönke Ludwig
*/
module app;
import dub.compilers.compiler;
import dub.dependency;
import dub.dub;
import dub.generators.generato... | D |
/Users/nazarkovalik/Downloads/MouseHunter/MouseHunter/DerivedData/MouseHunter/Build/Intermediates.noindex/I'm\ a\ thief!.build/Debug-iphonesimulator/MouseHunter.build/Objects-normal/x86_64/ViewController.o : /Users/nazarkovalik/Downloads/MouseHunter/MouseHunter/MouseHunter/Mouse.swift /Users/nazarkovalik/Downloads/Mous... | D |
RTE/Device/STM32F407VGTx/stm32f4xx_hal_rcc_ex.o: C:/Users/infin/AppData/Local/Arm/Packs/Keil/STM32F4xx_DFP/2.14.0/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c
RTE/Device/STM32F407VGTx/stm32f4xx_hal_rcc_ex.o: C:/Users/infin/AppData/Local/Arm/Packs/Keil/STM32F4xx_DFP/2.14.0/Drivers/STM32F4xx_HAL_Driver/Inc/stm... | D |
/*
* Empire, the Wargame of the Century (tm)
* Copyright (C) 1978-2004 by Walter Bright
* All Rights Reserved
*
* You may use this source for personal use only. To use it commercially
* or to distribute source or binaries of Empire, please contact
* www.digitalmars.com.
*
* Written by Walter Bright.
... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (c) 1999-2017 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 |
/* ----------------------------------------------------------------------------
* 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 |
import dmdscript.program;
import dmdscript.script;
import dmdscript.extending;
import std.stdio;
import std.typecons;
import std.stdio;
int func(int a,int b){ return a*b; }
int add2d(int a, int b){ return a+b; }
string sfunc(string s) { return "<" ~ s ~ ">"; }
struct A{
int magic;
this(int m... | D |
/Users/y.imuta/pj/rust_study/datafusion_test/target/debug/deps/foreign_types_shared-8c2b7b45f1a0c9a7.rmeta: /Users/y.imuta/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/src/lib.rs
/Users/y.imuta/pj/rust_study/datafusion_test/target/debug/deps/libforeign_types_shared-8c2b7b45f1a0c9a7.rlib: ... | D |
module misc.IQueue;
interface IQueue(DataType) {
public void insert(DataType Data);
public void peek(out bool Success, out DataType element);
public bool isEmpty();
public void flush();
}
| D |
instance DJG_709_Rethon(Npc_Default)
{
name[0] = "Rethon";
guild = GIL_DJG;
id = 709;
voice = 12;
flags = 0;
npcType = npctype_main;
B_SetAttributesToChapter(self,4);
fight_tactic = FAI_HUMAN_MASTER;
EquipItem(self,ItMw_1h_Sld_Sword_New);
B_CreateAmbientInv(self);
CreateInvItems(self,ItMi_Moleratlubric_MIS,... | D |
# FIXED
att.obj: C:/ti/BleToWifiGateway_1.0.0_20_oct_16/src/example/blefi/npi/att.c
att.obj: C:/ti/BleToWifiGateway_1.0.0_20_oct_16/src/example/blefi/npi/include/att.h
att.obj: C:/ti/BleToWifiGateway_1.0.0_20_oct_16/src/example/blefi/npi/include/hci.h
att.obj: C:/ti/BleToWifiGateway_1.0.0_20_oct_16/src/example/blefi/i... | D |
instance DIA_Lares_DI_EXIT(C_Info)
{
npc = VLK_449_Lares_DI;
nr = 999;
condition = DIA_Lares_DI_EXIT_Condition;
information = DIA_Lares_DI_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Lares_DI_EXIT_Condition()
{
return TRUE;
};
func void DIA_Lares_DI_EXIT_Info()
{
AI_StopProcessIn... | D |
/++
演算子オーバーロード
D言語では演算子オーバーロードを定義することができます。
例えばstd.bigintでは、BigIntに対して、整数型のような特徴を持たせるため、四則演算などの演算子オーバーロードを実装しています。
D言語では、演算子オーバーロードを定義する際には、もともとの演算子の意味を損なうような利用方法は非推奨としています。
例えばC++であるように、`std::cout << hogehoge << std::endl;`のような、ビットシフトのための演算子`<<`をストリーム操作のために使用するような利用方法は非推奨です。
See_Also:
- https://dlang.org/spec/... | D |
build/Debug/Cygwin-Windows/main.o: main.cpp Array2D.h
Array2D.h:
| D |
# FIXED
Starterware/emifa.obj: C:/ti/OMAPL138_StarterWare_1_10_04_01/drivers/emifa.c
Starterware/emifa.obj: C:/ti/OMAPL138_StarterWare_1_10_04_01/include/hw/hw_emifa2.h
Starterware/emifa.obj: C:/ti/OMAPL138_StarterWare_1_10_04_01/include/hw/hw_types.h
Starterware/emifa.obj: C:/ti/OMAPL138_StarterWare_1_10_04_01/includ... | D |
// Written in the D programming language.
/**
This module contains OpenGL access layer.
To enable OpenGL support, build with version(USE_OPENGL);
Synopsis:
----
import dlangui.graphics.glsupport;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopatin, coolreader.org@gmail.com
*/... | D |
module erupted.types;
alias uint8_t = ubyte;
alias uint16_t = ushort;
alias uint32_t = uint;
alias uint64_t = ulong;
alias int8_t = byte;
alias int16_t = short;
alias int32_t = int;
alias int64_t = long;
@nogc nothrow:
pure {
uint VK_MAKE_VERSION( uint major, uint minor, uint patch ) {
return ( major << 22 ) | ( m... | D |
/Users/martin/Documents/programovanie/bc/RuLife/DerivedData/RuLife/Build/Intermediates/RuLife.build/Debug-iphoneos/RuLife.build/Objects-normal/arm64/Workout.o : /Users/martin/Documents/programovanie/bc/RuLife/RuLife/AppDelegate.swift /Users/martin/Documents/programovanie/bc/RuLife/RuLife/Location.swift /Users/martin/Do... | D |
/Users/pavelkurilov/Library/Mobile\ Documents/com~apple~CloudDocs/TestProjectForSibersCompanyByKurilovP/build/TestProjectForSibersCompanyByKurilovP.build/Debug-iphoneos/TestProjectForSibersCompanyByKurilovP.build/Objects-normal/arm64/Origin.o : /Users/pavelkurilov/Library/Mobile\ Documents/com~apple~CloudDocs/TestProje... | D |
/Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/build/Pods.build/Debug-iphonesimulator/Differentiator.build/Objects-normal/x86_64/SectionModelType.o : /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/Differentiator/Sources/Differentiator/IdentifiableType.swift /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods... | D |
/**
Mirror import.h
Module definition and import interface
*/
module deimos.python.import_;
import deimos.python.pyport;
import deimos.python.object;
import core.stdc.stdio;
extern(C):
// Python-header-file: Include/import.h:
/// _
C_long PyImport_GetMagicNumber();
version(Python_3_0_Or_Later) {
/// Avail... | D |
import dlangui, dlangui.dialogs.dialog, dlangui.core.logger, dlangui.widgets.widget, dlangui.widgets.metadata;
import std.algorithm, std.string, std.array, std.conv, std.file, std.typecons, std.functional, std.json, std.path;
mixin APP_ENTRY_POINT;
enum Actions {
File = 1,
OpenGCT,
SaveGCT,
OpenDialogClose,
... | 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 |
module bookstore.products.infrastructure;
import bookstore.products.domain;
import std.typecons, std.stdio;
class InMemoryProductRepository : ProductRepository {
private Product[string] _products;
override Product[] getProducts() {
return _products.values;
}
override Nullable!Product getProduct(string produc... | D |
/Users/radibarq/developer/Chottky/build/Pods.build/Debug-iphonesimulator/ESTabBarController-swift.build/Objects-normal/x86_64/ESTabBar.o : /Users/radibarq/developer/Chottky/Pods/ESTabBarController-swift/Sources/ESTabBarItem.swift /Users/radibarq/developer/Chottky/Pods/ESTabBarController-swift/Sources/ESTabBar.swift /Us... | D |
module puzzles.puzzle2;
import std.conv, std.string, std.range, std.stdio, std.format, std.ascii;
import std.algorithm;
import core.stdc.string : strlen;
import utilities.inputparser;
struct password
{
int min,max;
char c;
char[] pwd;
}
///
void solve_2_1()
{
auto parser = new InputParser();
pas... | D |
module lib.graph.ford_fulkerson;
import std;
// :::::::::::::::::::: lib.graph.ford_fulkerson
import lib.graph.graph;
/**
** Ford-Fulkerson 法で指定された2頂点間の最大流を計算します.
**/
struct FordFulkerson(Graph)
{
alias Node = Graph.Node, Wt = Graph.Wt;
/**
** 計算に使用したグラフです.
**/
Graph g;
alias g this;
/**
** 指定された... | D |
module drowbar.parser.api;
import drowbar.ast;
import drowbar.parser.lexer;
import drowbar.parser.parser;
import drowbar.interpreter;
import std.stdio;
import std.string;
import std.variant;
void parseString(Interpreter machine, string source){
SemanticAction sa;
sa.interpreter = machine;
auto lexer = ne... | D |
import std.algorithm;
import std.array;
import std.bigint;
import std.conv;
import std.exception;
import std.math;
import std.numeric;
import std.random;
import std.range;
import std.stdio;
import std.string;
import std.typecons;
import core.bitop;
immutable int NA = -1;
void main ()
{
int n, p;
... | D |
pick out, select, or choose from a number of alternatives
chosen in preference to another
| D |
module main;
import std.path;
import std.stdio;
pragma(lib, "ZetaBoxCommon");
pragma(lib, "ZetaBoxGraphics");
pragma(lib, "ZetaBoxSound");
import ZetaBox.Common.Loader;
import ZetaBox.Graphics.Loader;
int main (string[] args) {
string title="ZetaBox.Graphics OpenGL test: using abstractions";
writeln(title);
... | D |
/+
+ Copyright 2023 Aya Partridge
+ 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 al;
import bindbc.openal.codegen;
public import
al.c,
al.efx;
alias Boolean = byte;
alia... | D |
import std.stdio;
import Exp, Nil, True, Env, Syntax;
class List : Exp {
protected:
Exp exp1;
Exp exp2;
private:
Exp make_evlist(Exp exp, Env env)
{
if (exp == Nil.Nil.gen)
return exp;
else
return new List(exp.car.eval(env), make_evlist(exp.cdr, env));
}
public:
this (Exp e1, Exp e2)... | D |
module java.beans.BeanDescriptor;
import java.beans.FeatureDescriptor;
import java.lang.all;
class BeanDescriptor : FeatureDescriptor {
this(Class beanClass){
implMissing(__FILE__, __LINE__);
}
this(Class beanClass, Class customizerClass){
implMissing(__FILE__, __LINE__);
}
Class ... | D |
/Users/Mavarius/Desktop/Xcode Playground/FoodTracker/DerivedData/FoodTracker/Build/Intermediates/FoodTracker.build/Debug-iphonesimulator/FoodTracker.build/Objects-normal/x86_64/MealViewController.o : /Users/Mavarius/Desktop/Xcode\ Playground/FoodTracker/FoodTracker/Meal.swift /Users/Mavarius/Desktop/Xcode\ Playground/F... | D |
module armagetronad_stats.routes;
import armagetronad_stats.controllers;
import vibe.vibe;
URLRouter routes()
{
auto router = new URLRouter;
router.registerWebInterface(new StaticController);
router.registerWebInterface(new LeaderboardController);
router.get("*", serveStaticFiles("./public"));
return ro... | D |
a native or inhabitant of Russia
the Slavic language that is the official language of Russia
of or pertaining to or characteristic of Russia or its people or culture or language
| D |
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/HTTP.build/Objects-normal/x86_64/HTTPClient.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/http.git-6906648727968998715/Sources/HTTP/Utilities/RFC1123.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/http... | D |
module app;
import dlangui;
import rx;
import std.conv;
//main of this sample
import event;
import model;
mixin APP_ENTRY_POINT;
/// entry point for dlangui based application
extern (C) int UIAppMain(string[] args)
{
auto window = createAppWindow();
auto appModel = new MyModel;
auto counter = window.ma... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
292.5 65.5 1.60000002 262.700012 34 39 -38.7999992 143.399994 7097 2.5 2.5 0.2 sediments, red-brown clays
264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 1206 10.3999996 18 0.0317460317 extrusives, intrusives
349.5 78.1999969 4.69999981 9... | D |
instance Vlk_424_Alwin(Npc_Default)
{
name[0] = "Alwin";
guild = GIL_VLK;
id = 424;
voice = 12;
flags = 0;
npcType = npctype_main;
aivar[AIV_ToughGuy] = TRUE;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,itmw_meatknife);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MAL... | D |
//********************
// Wolf Prototype
//********************
PROTOTYPE Mst_Default_Wolf(C_Npc)
{
//----- Monster ----
name = "Wolf";
guild = GIL_WOLF;
aivar[AIV_MM_REAL_ID] = ID_WOLF;
level = 6;
//----- Attribute ----
attribute [ATR_STRENGTH] = 30;
attribute [ATR_DEX... | D |
import gio.Application: GioApplication = Application;
import gtk.Application: GtkApplication = Application;
import gtk.ApplicationWindow;
import gtk.Builder;
import gtk.FlowBox;
import gtk.FlowBoxChild;
import gtk.Layout;
import widgets.output;
import std.stdio;
import std.format;
import core.stdc.stdlib;
/// Main ... | D |
import std.algorithm;
import std.stdio;
import std.file;
import std.array;
class Tape {
int pos;
int[] tape;
this() {
pos = 0;
tape ~= 0;
}
int get() { return tape[pos]; }
void inc() { tape[pos]++; }
void dec() { tape[pos]--; }
void advance() { pos++; if (tape.length <= pos) tape ~= 0; }
vo... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1999-2018 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, Bo... | D |
/*
TEST_OUTPUT:
---
fail_compilation/diag5385.d(27): Deprecation: `imports.fail5385.C.privX` is not visible from module `diag5385`
fail_compilation/diag5385.d(27): Error: class imports.fail5385.C member `privX` is not accessible
fail_compilation/diag5385.d(28): Deprecation: `imports.fail5385.C.packX` is not visible fro... | D |
// Written in the D programming language.
module yajl.yajl;
import yajl.common;
import yajl.decoder;
import yajl.encoder;
/**
* Short-cut for Decoder.decode.
*/
T decode(T = JSONValue)(in const(char)[] json, ref Decoder.Option opt)
{
Decoder decoder = Decoder(opt);
if (decoder.decode(json))
return... | D |
module mangareader.directory;
import dsfml.graphics;
import std.range;
import std.path;
import std.conv;
import std.algorithm.comparison;
import std.algorithm.iteration;
import std.algorithm.sorting;
import std.file;
import std.stdio;
import std.experimental.logger;
import mangareader.style;
import mangareader.helpers... | D |
/**********************************************
* This module implements integral arithmetic primitives that check
* for out-of-range results.
*
* Integral arithmetic operators operate on fixed width types.
* Results that are not representable in those fixed widths are silently
* truncated to fit.
* This module... | D |
/home/ankit/pandora/substrate-node-template/target/release/deps/crunchy-b73991b1d04dbdc5.rmeta: /home/ankit/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/src/lib.rs /home/ankit/pandora/substrate-node-template/target/release/build/crunchy-a52a84078753b704/out/lib.rs
/home/ankit/pandora/substrate-node-te... | D |
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/deps/liblibp2p_swarm_derive-c34ae74dd7a20af3.dylib: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-swarm-derive-0.24.0/src/lib.rs
/Users/edward.wangcrypto.com/study/substrat... | D |
/Users/marvinevins/Library/Autosave\ Information/movieReview/movieAppSearch3/DerivedData/movieAppSearch3/Build/Intermediates.noindex/movieAppSearch3.build/Debug-iphonesimulator/movieAppSearch3.build/Objects-normal/x86_64/ViewController.o : /Users/marvinevins/Library/Autosave\ Information/movieReview/movieAppSearch3/mov... | D |
/**
Copyright: Copyright (c) 2019, Joakim Brännström. All rights reserved.
License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
Author: Joakim Brännström (joakim.brannstrom@gmx.com)
*/
module dsnapshot.config;
import logger = std.experimental.logger;
import std.stdio : writeln;
import co... | D |
module cucumber.formatter.json;
import std.array : empty;
import std.stdio : write;
import std.json : toJSON, parseJSON;
import asdf : serializeToJson, serializeToJsonPretty;
import cucumber.formatter.base : Formatter;
import cucumber.formatter.color : colors, noColors;
import cucumber.result : Result, RunResult, Sc... | D |
module dracula.site.dependencies.films;
import std.typecons;
import std.uuid;
import dracula.site.dependencies.graphql;
import dracula.site.dto.countries;
import dracula.site.dto.films;
FilmListItemDto[] getFilms()
{
return query!(FilmsQuery, q{
query {
films {
id
... | D |
module bio.core.utils.stream;
public import std.stream;
import core.stdc.stdio;
import core.stdc.errno;
import core.stdc.string;
import core.sys.posix.sys.select;
import std.conv;
import std.string : toStringz;
version(Posix){
private import core.sys.posix.unistd;
}
version(Windows) {
private import std.file... | D |
/**
* D header file for C99.
*
* Copyright: Public Domain
* License: Public Domain
* Authors: Sean Kelly, Walter Bright
* Standards: ISO/IEC 9899:1999 (E)
*/
module tango.stdc.fenv;
extern (C):
version( Win32 )
{
struct fenv_t
{
ushort status;
ushort control;
ushort ... | 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 t... | D |
/home/gui/Projects/rustLearning/target/debug/deps/smallvec-b6e4af97a3b7e76a.rmeta: /home/gui/.asdf/installs/rust/1.48.0/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.14/lib.rs
/home/gui/Projects/rustLearning/target/debug/deps/libsmallvec-b6e4af97a3b7e76a.rlib: /home/gui/.asdf/installs/rust/1.48.0/registry/src/... | D |
// Written in the D programming language.
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;
mixin CreateBinderForDependent!("LookupImpl");
mixin CreateBinderForDependent!("LookupHer... | D |
/Users/ilya/Projects/Rust/Game/target/debug/build/num-traits-910f941617b2201c/build_script_build-910f941617b2201c: /Users/ilya/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs
/Users/ilya/Projects/Rust/Game/target/debug/build/num-traits-910f941617b2201c/build_script_build-910f941617b2201c.d: ... | D |
/* Converted to D from gsl_fft_real.h by htod
* and edited by daniel truemper <truemped.dsource <with> hence22.org>
*/
module auxc.gsl.gsl_fft_real;
/* fft/gsl_fft_real.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it und... | D |
/****************************************************************************
**
** Copyright (C) 2012 Denis Shienkov <denis.shienkov@gmail.com>
** Copyright (C) 2013 Laszlo Papp <lpapp@kde.org>
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtSerialPort module of the Qt Toolkit.
**
** $QT_B... | D |
/**
* The atomic module provides basic support for lock-free
* concurrent programming.
*
* Copyright: Copyright Sean Kelly 2005 - 2010.
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Authors: Sean Kelly, Alex Rønne Petersen
* Source: $(DRUNTIMESRC core/_atomic.d)
*/
/* ... | D |
template Foo2(T) { alias t = T; }
alias t1 = Foo2!(int);
alias t2 = Foo2!(int).t;
alias t3 = t1.t;
alias t4 = t2;
t1.t v1; // v1 is type int
t2 v2; // v2 is type int
t3 v3; // v3 is type int
t4 v4; // v4 is type int
| D |
/home/hellooo/Documents/rust/prac-algo/abc113/target/debug/deps/abc113-07b5b0673fdb572b: src/main.rs
/home/hellooo/Documents/rust/prac-algo/abc113/target/debug/deps/abc113-07b5b0673fdb572b.d: src/main.rs
src/main.rs:
| D |
/**
Event loop compatible task synchronization facilities.
This module provides replacement primitives for the modules in `core.sync`
that do not block vibe.d's event loop in their wait states. These should
always be preferred over the ones in Druntime under usual circumstances.
Using a standard `Mutex` is possi... | D |
instance BDT_1067_Bandit_L (Npc_Default)
{
// ------ NSC ------
name = NAME_BANDIT;
guild = GIL_BDT;
id = 1067;
voice = 10;
flags = 0;
npctype = NPCTYPE_AMBIENT;
//--------Aivars-----------
aivar[AIV_EnemyOverride] = TRUE;
// ------ Attribute ------
B_SetAttributesToChapter (sel... | D |
/Users/thendral/POC/vapor/Friends/.build/debug/Settings.build/Env/Env.swift.o : /Users/thendral/POC/vapor/Friends/Packages/Vapor-1.5.5/Sources/Settings/Config+Arguments.swift /Users/thendral/POC/vapor/Friends/Packages/Vapor-1.5.5/Sources/Settings/Config+Directory.swift /Users/thendral/POC/vapor/Friends/Packages/Vapor-1... | D |
/home/user/LukaTubic/PerfectTemplate/.build/x86_64-unknown-linux/debug/PerfectLib.build/PerfectError.swift.o : /home/user/LukaTubic/PerfectTemplate/.build/checkouts/PerfectLib.git--2275982516083364274/Sources/PerfectLib/JSONConvertible.swift /home/user/LukaTubic/PerfectTemplate/.build/checkouts/PerfectLib.git--22759825... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (c) 1999-2017 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 |
(if
(is (application_name) 'xsane')
(begin
(println "--[ Xsane ]--")
(above)
)
)
| D |
/**
* TypeInfo support code.
*
* Copyright: Copyright Digital Mars 2004 - 2009.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright
*/
/* Copyright Digital Mars 2004 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanyin... | D |
module xf.utils.Graph;
private {
import xf.mem.StackBuffer;
import xf.utils.Error : error = utilsError;
}
enum CycleHandlingMode {
Fail,
AnyOrder
}
/**
Topological sorting for graphs. Works for DAGs and generic directed graphs.
It's a bit smarter than the average topological sorting, as ... | D |
/******************************************************************//**
* \file dcode/structs/location.d
* \brief 3D location definition
*
* <i>Copyright (c) 2012</i> Danny Arends<br>
* Last modified Feb, 2012<br>
* First written Feb, 2012<br>
* Written in the D Programming Language (http://www.digitalmars.com/d... | D |
module dlp.commands.leaf_functions;
import dmd.func : FuncDeclaration;
import dmd.dmodule : Module;
import dmd.frontend : deinitializeDMD;
import dmd.visitor : SemanticTimeTransitiveVisitor;
import dlp.core.set;
import dlp.commands.utility;
const struct Config
{
mixin StandardConfig;
}
Set!FuncDeclaration leafF... | D |
module hunt.gossip.Common;
bool isNullOrEmpty(string str)
{
return (str is null) || (str.length == 0);
}
class InetSocketAddress
{
private{
string _ip;
int _port;
}
this(string ip ,int port)
{
_ip = ip;
_port = port;
}
string getIp()... | D |
/*
Copyright (c) 2011-2015 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... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.