code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
the number that is represented as a one followed by 24 zeros
the number that is represented as a one followed by 15 zeros
| D |
/*
* Copyright (C) 2007 Mario Kicherer (http://empanyc.net)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
... | D |
/**
* Interpreted values
*
* A value is a type symbol and a union of possible internal values
*
* Also contains a ValueSymbol for use with the symbol table when evaluating
*/
module exlang.interpreter.value;
/**
* Imports
*/
import exlang.symtab.symbol;
/**
* Value symbol class
*/
class ValueVar : Symbol... | D |
// COMPILE_SEPARATELY
// EXTRA_SOURCES: imports/test55a.d
// PERMUTE_ARGS: -dw
// REQUIRED_ARGS: -d
public import imports.test55a;
class Queue {
typedef int ListHead;
Arm a;
}
class MessageQueue : Queue {
}
class Queue2 {
typedef int ListHead;
Arm2 a;
}
| D |
/Users/zyang/SNGithub/Cosmos/Build/Intermediates/Cosmos.build/Debug-iphonesimulator/Cosmos.build/Objects-normal/x86_64/GaussianBlur.o : /Users/zyang/SNGithub/Cosmos/Cosmos/Curve.swift /Users/zyang/SNGithub/Cosmos/Cosmos/Shape+Creation.swift /Users/zyang/SNGithub/Cosmos/Cosmos/Wedge.swift /Users/zyang/SNGithub/Cosmos/Co... | D |
import std.ascii: lowercase;
void main() {}
| D |
/Users/akamatechayapiwat/Desktop/SwiftProject/Clima-iOS11-master/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/MultipartFormData.o : /Users/akamatechayapiwat/Desktop/SwiftProject/Clima-iOS11-master/Pods/Alamofire/Source/MultipartFormData.swift /Users/akamatechayapiwat/Desktop/SwiftProject... | D |
module hunt.wechat.bean.message.MessageSendResult;
import hunt.wechat.bean.BaseResult;
class MessageSendResult : BaseResult{
private string type;
private string msg_id;
private string msg_status;
private Long msg_data_id; //消息的数据ID,该字段只有在群发图文消息时,才会出现。可以用于在图文分析数据接口中,获取到对应的图文消息的数据,是图文分析数据接口中的msgid... | D |
/Users/okasho/serverProject/tryswift/get_and_post/swift/.build/debug/Console.build/Utilities/String+Trim.swift.o : /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Console-1.0.2/Sources/Console/Bar/Bar.swift /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Console-1.0.2/Sources/Console/C... | D |
/*
* DSFML - The Simple and Fast Multimedia Library for D
*
* Copyright (c) 2013 - 2018 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 |
module amigos.minid.arc_wrap.window;
import amigos.minid.api;
import amigos.minid.bind;
import arc.window;
void init(MDThread* t)
{
WrapModule!
(
"arc.window",
WrapFunc!(arc.window.open),
WrapFunc!(arc.window.close),
WrapFunc!(arc.window.getWidth),
WrapFunc!(arc.window.getHeight),
WrapF... | D |
import std.stdio;
import std.algorithm;
import std.traits;
import std.range;
import std.string: format;
import multi_index;
template Testsies(Allocator) {
unittest{
// sequenced index only
alias MultiIndexContainer!(int, IndexedBy!(Sequenced!()),Allocator) C1;
C1 c = C1.create();
c.insert(1);
c.in... | D |
United States singer and film actress (1922-1969)
a city in northeastern Texas (suburb of Dallas)
an anthology of short literary pieces and poems and ballads etc.
flower arrangement consisting of a circular band of foliage or flowers for ornamental purposes
adorn with bands of flowers or leaves
| D |
instance NOV_1337_Novize(Npc_Default)
{
name[0] = NAME_Novize;
npcType = npctype_ambient;
guild = GIL_NOV;
level = 3;
voice = 2;
id = 1337;
attribute[ATR_STRENGTH] = 20;
attribute[ATR_DEXTERITY] = 20;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 106;
attribute[ATR_HIT... | D |
/+
+ Copyright (c) Charles Petzold, 1998.
+ Ported to the D Programming Language by Andrej Mitrovic, 2011.
+/
module Bricks3;
import core.memory;
import core.runtime;
import core.thread;
import std.conv;
import std.math;
import std.range;
import std.string;
import std.utf;
auto toUTF16z(S)(S s)
{
return toUTF... | D |
module deepmagic.dom.elements.text_level.data_element;
import deepmagic.dom;
class DataElement : Html5Element!("data"){
mixin(ElementConstructorTemplate!());
mixin(AttributeTemplate!(typeof(this), "Value", "value"));
}
| D |
/// Problem 16: べき乗の数字和
///
/// 2^15 = 32768 であり、これの各桁の和は 3 + 2 + 7 + 6 + 8 = 26 となる。
/// 同様にして、2^1000 の数字和を求めよ。
module project_euler.problem016;
import std.bigint : BigInt, toDecimalString;
import system.linq : select, sum;
import project_euler.foundation : asDigit;
uint problem016(in uint exponent)
{
return toD... | 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 |
module draw.window;
static import des.flow;
alias des.flow.Event FEvent;
alias des.flow.SysEvData SysEvData;
alias des.flow.SignalBus SignalBus;
import des.app;
import des.util.stdext.algorithm;
import des.util.logsys;
import yamlset;
import code;
import client;
import draw.scene;
class MainWindow : DesWindow, de... | D |
// Copyright Ahmet Sait Koçak 2020.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
module bindbc.hb.bind.ot.shape;
import bindbc.hb.bind.buffer;
import bindbc.hb.bind.common;
import bind... | D |
/**
* Consoleur: a package for interaction with character-oriented terminal emulators
*
* Copyright: Maxim Freck, 2017.
* Authors: Maxim Freck <maxim@freck.pp.ru>
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
*/
module consoleur.input.util;
import consoleur.core;
import consoleu... | D |
module wx.Gauge;
public import wx.common;
public import wx.Control;
//! \cond EXTERN
extern (C) ЦелУкз wxGauge_ctor();
extern (C) проц wxGauge_dtor(ЦелУкз сам);
extern (C) бул wxGauge_Create(ЦелУкз сам, ЦелУкз родитель, цел ид, цел диапазон, inout Точка поз, inout Размер размер, бцел стиль, ЦелУкз оценщик, ткст им... | D |
module resources.algorithms.lzma.bittree_decoder;
import resources.all;
final class BitTreeDecoder {
private:
LZMARangeDecoder rangeDecoder;
ByteReader input;
int numBitLevels;
ushort[] models;
public:
this(LZMARangeDecoder rangeDecoder, ByteReader input, int numBitLevels) {
this.rangeDeco... | D |
/*
Written by Christopher E. Miller
Placed into public domain.
*/
// @@@DEPRECATED_2017-06@@@
/++
$(RED Deprecated. Use $(D core.sys.windows.winsock2 instead. This module
will be removed in June 2017.)
+/
deprecated("Import core.sys.windows.winsock2 instead")
module std.c.windows.winsock;
ver... | D |
module wx.PaletteChangedEvent;
public import wx.common;
public import wx.Event;
public import wx.Window;
//! \cond EXTERN
static extern (C) IntPtr wxPaletteChangedEvent_ctor(int winid);
static extern (C) void wxPaletteChangedEvent_SetChangedWindow(IntPtr self, IntPtr win);
static extern (C) IntPtr wxPalette... | D |
/*********************************************************
Copyright: (C) 2008-2010 by Steven Schveighoffer.
All rights reserved
License: Boost Software License version 1.0
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accomp... | D |
/Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Intermediates/CoreDataCallViewFRC.build/Debug-iphonesimulator/CoreDataCallViewFRC.build/Objects-normal/x86_64/Item+CoreDataClass.o : /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/WithInternalStorageVC.swift /Users/octoberhammer/Developer/... | D |
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.build/Migration/MigrationSupporting.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/... | D |
/*
* Copyright (c) 2004-2008 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
* notice... | D |
FUNC VOID B_DschinnBesetzteMine ()
{
AI_Output(self, hero, "Info_Mod_Dschinn_MineBesetzt_10_00"); //Diese Mine ist bereits besetzt.
};
INSTANCE Info_Mod_Dschinn_FM_Hi (C_INFO)
{
npc = Dschinn_11012_FM;
nr = 1;
condition = Info_Mod_Dschinn_FM_Hi_Condition;
information = Info_Mod_Dschinn_FM_Hi_Info;
permanent = ... | D |
/*
Copyright (c) 2013 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,
exe... | D |
/Users/brunodaluz/Desktop/project/Build/Intermediates/project.build/Debug/Routing.build/Objects-normal/x86_64/RoutingError.o : /Users/brunodaluz/Desktop/project/.build/checkouts/routing.git-5348454670205955628/Sources/Routing/Utilities/Deprecated.swift /Users/brunodaluz/Desktop/project/.build/checkouts/routing.git-5348... | D |
module org.serviio.upnp.protocol.soap.all;
public import org.serviio.upnp.protocol.soap.InvocationError;
public import org.serviio.upnp.protocol.soap.OperationResult;
public import org.serviio.upnp.protocol.soap.ServiceInvocationException;
public import org.serviio.upnp.protocol.soap.ServiceInvoker;
public import org.... | D |
module modules.variables;
int gInt;
immutable gDouble = 33.3;
struct Struct {}
Struct gStruct;
enum CONSTANT_INT = 42;
enum CONSTANT_STRING = "foobar";
immutable int gImmutableInt = 77;
// just to check that this doesn't cause problems
auto templateFunction(T...)(T stuff) {
ubyte[16] ret;
return ret;
}
| D |
func void ZS_Meditate()
{
PrintDebugNpc(PD_TA_FRAME,"ZS_Meditate");
B_SetPerception(self);
AI_SetWalkMode(self,NPC_WALK);
if(!Npc_IsOnFP(self,"MEDITATE"))
{
AI_GotoWP(self,self.wp);
};
if(Wld_IsFPAvailable(self,"MEDITATE"))
{
AI_GotoFP(self,"MEDITATE");
AI_AlignToFP(self);
};
Wld_DetectNpc(self,-1,ZS_T... | D |
// This file is part of CCBI - Conforming Concurrent Befunge-98 Interpreter
// Copyright (c) 2006-2010 Matti Niemenmaa
// See license.txt, which you should have received together with this file, for
// licensing information.
// File created: 2007-01-20 21:13:43
module ccbi.fingerprints.rcfunge98.dirf;
import ccbi.fi... | 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 |
/// Author: Aziz Köksal
/// License: GPL3
/// $(Maturity average)
module Settings;
import common;
/// Глобальные настройки приложения.
struct ГлобальныеНастройки
{
static:
/// Путь к папке с данными.
ткст папкаСДанными = "data/";
/// Предопределенные идентификаторы версии.
ткст[] идыВерсий;
/// Путь к файлу... | D |
instance Mod_1143_GRD_Gardist_MT (Npc_Default)
{
//-------- primary data --------
name = NAME_Gardist;
npctype = npctype_mt_gardist;
guild = GIL_OUT;
level = 10;
voice = 13;
id = 1143;
//-------- abilities --------
B_SetAttributesToChapter (self, 4);
EquipItem (self, ItMw_1H_quantarie_Schwe... | D |
instance TPL_1411_TEMPLER(NPC_DEFAULT)
{
name[0] = NAME_TEMPLER;
npctype = NPCTYPE_GUARD;
guild = GIL_TPL;
level = 12;
voice = 8;
id = 1411;
attribute[ATR_STRENGTH] = 70;
attribute[ATR_DEXTERITY] = 25;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 184;
attribute[ATR_H... | D |
module statement.return_fn_stmt;
import std.conv, std.string;
import pegged.grammar;
import language.statement, language.expression;
import program;
class Return_fn_stmt:Stmt
{
mixin StmtConstructor;
void process()
{
if(!this.program.in_procedure) {
this.program.error("Not in function... | D |
module evael.renderer.vertex;
import std.conv : to;
import evael.renderer.shader : ShaderAttribute, Yes, No;
import evael.renderer.enums : AttributeType;
import evael.utils.math;
import evael.utils.color;
alias Vertex2PositionColor = VertexPositionColor!2;
alias Vertex2PositionColorTexture = VertexPositionColorText... | 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 |
module evael.system.input;
/**
* Mouse buttons.
*/
enum MouseButton : int
{
Left = 0,
Right = 1,
}
/**
* Keys.
*/
enum Key : int
{
Unknown = -1,
Space = 32,
Apostrophe = 39 /* ' */,
Comma = 44 /* , */,
Minus = 45 /* - */,
Period = 46 /* . */,
Slash = 47 /* / */,
Num0 = 48,
... | D |
/Users/Vidyadhar/Desktop/Github/MapkitTutorial/build/MapkitTutorial.build/Debug-iphonesimulator/MapkitTutorial.build/Objects-normal/x86_64/ViewController.o : /Users/Vidyadhar/Desktop/Github/MapkitTutorial/MapkitTutorial/AppDelegate.swift /Users/Vidyadhar/Desktop/Github/MapkitTutorial/MapkitTutorial/ViewController.swift... | 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 |
/**
Implements a compile-time Diet template parser.
Diet templates are an more or less compatible incarnation of Jade templates but with
embedded D source instead of JavaScript. The Diet syntax reference is found at
$(LINK http://vibed.org/templates/diet).
Copyright: © 2012 RejectedSoftware e.K.
License: Subjec... | D |
the commonest protein in muscle
| D |
module Google.Apis.Drive.v3.DriveClient;
import std.file : read, readText, write, exists;
import cerealed;
import requests;
import std.stdio;
import std.json;
import std.conv : to;
import std.array : replace, split;
import std.datetime.systime;
import core.time : seconds;
import std.format : format;
import vibe.data.... | D |
module main;
import std.stdio;
import std.json;
import core.service;
import core.configuration;
import core.flappygame;
int main(string[] args)
{
setupServices();
FlappyGame fg = new FlappyGame();
fg.init();
fg.main();
return 0;
}
void setupServices()
{
Configuration c = setupConfiguration();
Servi... | D |
module graph.dijkstra;
import std.container : Array;
import graph.daryheap;
import graph.csr;
private enum infinity = size_t.max;
private size_t combine(size_t a, size_t b)
{
return (a > infinity - b) ? infinity : a + b;
}
/**
* Find shortest paths by Dijkstra method.
*/
void dijkstra(ali... | D |
/**
* String manipulation and comparison utilities.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Sean Kelly, Walter Bright
* Source: $(DRUNTIMESRC rt/util/_string.d)
*/
module core.internal.string;
pure:
nothrow:
@nogc:
al... | D |
/home/hustccc/OS_Tutorial_Summer_of_Code/rCore_Labs/Lab3/os/target/riscv64imac-unknown-none-elf/debug/deps/ahash-2e588a5ed0a0616b.rmeta: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/ahash-0.3.8/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/ahash-0.3.8/src/co... | D |
instance DIA_Joe_EXIT(C_Info)
{
npc = VLK_448_Joe;
nr = 999;
condition = DIA_Joe_EXIT_Condition;
information = DIA_Joe_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Joe_EXIT_Condition()
{
return TRUE;
};
func void DIA_Joe_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_J... | D |
/*
# What Is This: programming samples
# Author: Makoto Takeshita <takeshita.sample@gmail.com>
# URL: http://simplesandsamples.com
# Version: UNBORN
#
# Usage:
# 1. git clone https://github.com/takeshitamakoto/sss.git
# 2. change the directory name to easy-to-use name. (e.g. sss -> sample)
# 3. open sss/src/filenam... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1985-1998 by Symantec
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 h... | D |
/home/runner/work/econ/econ/server/target/x86_64-unknown-linux-gnu/release/deps/once_cell-e7645ece8b337a87.rmeta: /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/src/lib.rs /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/src/imp_std.rs
/home/runner/work/econ/ec... | D |
module mach.range.chunk;
private:
import mach.meta : varmin;
import mach.traits : hasNumericLength, isSlicingRange, isSavingRange;
import mach.range.asrange : asrange, validAsSlicingRange;
import mach.math.round : divceil;
/++ Docs
The `chunk` function returns a range for enumerating sequential chunks of an
input, ... | D |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ma... | D |
// https://issues.dlang.org/show_bug.cgi?id=20438
import core.stdc.stdio;
import core.memory;
void main()
{
auto used0 = GC.stats.usedSize;
void* z = GC.malloc(100);
GC.free(z);
GC.collect();
auto used1 = GC.stats.usedSize;
used1 <= used0 || assert(false);
}
| 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 |
module ecs.systems.handleadded;
import ecs.entities.component.registry;
import ecs.systems.system;
version(unittest) import fluent.asserts;
template HandleAddedSystem(ComponentModules...)
{
@safe
abstract class HandleAddedSystem(TComponent) : Updating
{
alias Components = ComponentRegistry!(ComponentModules);
... | D |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License")... | D |
/Users/apple-1/Documents/xCode/CoreDataSampleApp/Build/Intermediates/Pods.build/Release-iphonesimulator/TwicketSegmentedControl.build/Objects-normal-tsan/x86_64/Palette.o : /Users/apple-1/Documents/xCode/CoreDataSampleApp/Pods/TwicketSegmentedControl/TwicketSegmentedControl/Palette.swift /Users/apple-1/Documents/xCode/... | D |
module jmisc.subtitle;
/+
struct SubTitle {
string _date;
string _title;
string _subTitle;
string _sbody;
this(in string date, in string title, in string sbody) {
_date = date;
_title = title;
_subTitle = _subTitle;
_sbody = sbody;
}
auto toString() {
... | D |
Debug/main(1).cpp.o: main(1).cpp
| D |
/*******************************************************************************
Full-duplex client connection with authentication.
This class is not intended to be derived from (hence declared final). This
is a conscious design decision to avoid big class hierarchies using
inheritance for composition... | D |
module editor.calc;
import std.algorithm;
import std.format;
import std.range;
import basics.topology;
import basics.user; // hotkeys for movement
import editor.editor;
import editor.hover;
import editor.io;
import editor.select;
import file.language; // select grid
import gui;
import hardware.keyboard;
import hardwa... | D |
/Users/seandorian/Code/Dictation\ manager/Build/Intermediates/CodeCoverage/Intermediates/Dictation\ manager.build/Debug/Dictation\ manager.build/Objects-normal/x86_64/DictionaryExtensions.o : /Users/seandorian/Code/Dictation\ manager/Dictation\ manager/AppDelegate.swift /Users/seandorian/Code/Dictation\ manager/Dictati... | D |
/Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/.build/x86_64-apple-macosx10.10/debug/JDCloudSDKOss.build/API/DeleteBucketResponse.swift.o : /Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/Sources/JDCloudSDKOss/API/Lis... | 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="VAR_7_agm-54721927... | D |
module entity.database;
public import std.database.front;
public import std.typecons;
public import std.datetime;
abstract class DataBase
{
void connect(string url);
void connect();
Statement statement(string sql);
Statement query(string sql);
static DataBase create(string url)
{
import std.database.uri;... | D |
module scripts.S09DocumentOfTemplate;
private import tango.stdc.string;
private import Predicates;
private import Category;
private import trioplax.TripleStorage;
private import RightTypeDef;
private import Log;
private import trioplax.triple;
private import scripts.S11ACLRightsHierarhical;
public bool calculate(cha... | D |
module hunt.markdown.parser.block.AbstractBlockParser;
import hunt.markdown.node.Block;
import hunt.markdown.parser.InlineParser;
import hunt.markdown.parser.block.BlockParser;
abstract class AbstractBlockParser : BlockParser {
public bool isContainer() {
return false;
}
public bool canContain(B... | D |
# FIXED
PM_Sensorless-DevInit_F2803x.obj: ../PM_Sensorless-DevInit_F2803x.c
PM_Sensorless-DevInit_F2803x.obj: C:/Users/win10/workspace_v7/PM_Sensorless/include/F2803x/F2803x_headers/PeripheralHeaderIncludes.h
PM_Sensorless-DevInit_F2803x.obj: C:/Users/win10/workspace_v7/PM_Sensorless/include/F2803x/v124/DSP2803x_heade... | D |
module deadcode.gui.resources.material;
import std.exception : enforce;
import std.file;
static import deadcode.graphics.material;
static import deadcode.graphics.shaderprogram;
static import deadcode.graphics.texture;
import deadcode.core.uri;
import deadcode.gui.locations;
import deadcode.gui.resource... | D |
cmd_Release/obj.target/opencv.node := g++ -shared -pthread -rdynamic -m64 -Wl,-soname=opencv.node -o Release/obj.target/opencv.node -Wl,--start-group Release/obj.target/opencv/src/init.o Release/obj.target/opencv/src/Matrix.o Release/obj.target/opencv/src/OpenCV.o Release/obj.target/opencv/src/CascadeClassifierWrap.o ... | D |
/Users/sridattbhamidipati/Desktop/money20202015/build/money20202015.build/Debug-iphoneos/money20202015.build/Objects-normal/arm64/DisplayQRViewController.o : /Users/sridattbhamidipati/Desktop/money20202015/money20202015/JSONObject.swift /Users/sridattbhamidipati/Desktop/money20202015/money20202015/DisplayQRViewControll... | D |
module living_space;
// von Neumann == TLRB, Moore == 12346789, Serial=Left, Right, Wraparound +1/-1
typedef ubyte SpaceType;
const SpaceType Neumann=0, Moore=1;
void dumpESP() { void* res = void; asm { mov res, ESP; } writefln(res); }
import tools.mersenne, tools.array2d, tools.threads, qd, std.stdio, tools.base;
c... | D |
/*
Copyright (c) 2013 Andrey Penechko
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,
exec... | D |
someone making a search or inquiry
a missile equipped with a device that is attracted toward some kind of emission (heat or light or sound or radio waves)
| D |
// Written in the D programming language
/++
This implements a range-based
$(LINK2 https://en.wikipedia.org/wiki/StAX, StAX parser) for XML 1.0 (which
will work with XML 1.1 documents assuming that they don't use any
1.1-specific features). For the sake of simplicity, sanity, and efficiency,
the $(... | D |
module vibe.http.internal.http2.settings;
import vibe.http.internal.http2.multiplexing;
import vibe.http.internal.http2.frame;
import vibe.http.internal.http2.hpack.tables;
import vibe.http.internal.http2.error;
import vibe.http.server;
import vibe.core.log;
import vibe.core.net;
import vibe.core.task;
import vibe.in... | D |
/Users/ataiakishev/Desktop/ToDoList/DerivedData/ToDoList/Build/Intermediates.noindex/ToDoList.build/Debug-iphonesimulator/ToDoList.build/Objects-normal/x86_64/GroupItem.o : /Users/ataiakishev/Desktop/ToDoList/ToDoList/SceneDelegate.swift /Users/ataiakishev/Desktop/ToDoList/ToDoList/AppDelegate.swift /Users/ataiakishev/... | D |
import std.variant;
void main()
{
Variant a = true;
}
| D |
/**
* Hash Set
* Copyright: © 2015 Economic Modeling Specialists, Intl.
* Authors: Brian Schott
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
*/
module containers.hashset;
private import containers.internal.hash : generateHash, hashToIndex;
private import containers.internal.node : ... | D |
report or open letter giving informal or confidential news of interest to a special group
| D |
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Platform.Linux.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync... | D |
import std.stdio, std.datetime;
int identity(int x) {
return x;
}
int sum(int num) {
foreach (i; 0 .. 100_000_000)
num += i;
return num;
}
double timeIt(int function(int) func, int arg) {
StopWatch sw;
sw.start();
func(arg);
sw.stop();
return sw.peek().usecs / 1_000_000.0;
}
... | D |
module xf.hybrid.Math;
public {
version (OldMath) {
import xf.maths.Vec;
import xf.maths.Misc;
} else {
import xf.omg.core.LinearAlgebra : vec2, vec2i, vec3, vec4, Vector, cross, dot, mat4;
import xf.omg.core.Misc;
}
}
| D |
module and.cost.model.icostfunction;
/** Interface for computing the 'cost' or 'error' of the network */
interface ICostFunction
{
/** Parameters: expected ( outputs ), actual ( outputs ) */
real f(real [] expected , real [] actual );
}
/** Base CostFunction class with default errorThreshold and constructor */
c... | 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="VAR_24_banking-253... | D |
// PERMUTE_ARGS:
// EXTRA_SOURCES: imports/mangle10077.d
/***************************************************/
// 10077 - pragma(mangle)
pragma(mangle, "_test10077a_") int test10077a;
static assert(test10077a.mangleof == "_test10077a_");
__gshared pragma(mangle, "_test10077b_") ubyte test10077b;
static assert(test10... | D |
/home/seanc/Documents/mywasmi/executor-test/target/debug/build/libc-13b622e2280b58df/build_script_build-13b622e2280b58df: /home/seanc/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.66/build.rs
/home/seanc/Documents/mywasmi/executor-test/target/debug/build/libc-13b622e2280b58df/build_script_build-13b622e2280b... | D |
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Fluent.build/Schema/ForeignKey.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/fluent.git-6251908308727715749/Sources/Fluent/Utilities/UUID.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/... | D |
instance VLK_400_LARIUS(NPC_DEFAULT)
{
name[0] = "Ëàðèóñ";
guild = GIL_VLK;
id = 400;
voice = 1;
flags = NPC_FLAG_IMMORTAL;
npctype = NPCTYPE_MAIN;
b_setattributestochapter(self,1);
fight_tactic = FAI_HUMAN_COWARD;
b_createambientinv(self);
b_setnpcvisual(self,MALE,"Hum_Head_FatBald",FACE_N_WEAK_CIPHER_ALT,B... | D |
E: c402, c50, c128, c96, c332, c205, c287, c437, c275, c268, c289, c194, c277, c351, c88, c94, c65, c340, c407, c288, c26, c115, c54, c314, c446, c162, c61, c16, c73, c184, c252, c263, c241, c159, c380, c396, c450, c228, c297, c100, c388, c69, c397, c112, c400, c199, c77, c345, c213, c399, c132, c331, c431, c258, c438,... | D |
/**
* C preprocessor
* Copyright: 2013 by Digital Mars
* License: $(LINK2 http://boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright
*/
module stringlit;
import std.array;
import std.range;
import std.stdio;
import std.traits;
import std.utf;
import lexer;
import main;
import macros;
import... | D |
// Copyright: Coverify Systems Technology 2013 - 2014
// License: 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)
// Authors: Puneet Goel <puneet@coverify.com>
import std.stdio;
import esd... | D |
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Fluent.build/Model/SoftDeletable.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/fluent.git-6251908308727715749/Sources/Fluent/Model/ID.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/fluent.git-6251908308727715749/Sources/... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.