code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/**
Low level mongodb protocol.
Copyright: © 2012-2014 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.db.mongo.connection;
public import vibe.data.bson;
import vibe.core.log;
import vibe.core.net;
import vi... | D |
void main()
{
real x = 1;
real y = x / 0;
assert(y is real.infinity);
}
| D |
/Users/nicolas.linard/Projects/ios/pulsewaveanalyser/PulwaveAnalyser/Build/Intermediates/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChartRendererBase.o : /Users/nicolas.linard/Projects/ios/pulsewaveanalyser/PulwaveAnalyser/Pods/Charts/Charts/Classes/Data/BarChartData.swift /Users/nicolas.linard... | D |
/Users/yingyuhang/Desktop/学习/Rust-numerical-library/Numerical-Lib/target/release/deps/synstructure-a9e9b28b8745c1af.rmeta: /Users/yingyuhang/.cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.4/src/lib.rs /Users/yingyuhang/.cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.4/src/macros.rs
... | D |
/Users/Fklemke/swiftbenchmarkproject/vaporJSON/.build/debug/HTTP.build/FoundationClient/Client+Foundation.swift.o : /Users/Fklemke/swiftbenchmarkproject/vaporJSON/.build/checkouts/engine.git-3311994267206676365/Sources/HTTP/Async/Response+Async.swift /Users/Fklemke/swiftbenchmarkproject/vaporJSON/.build/checkouts/engin... | D |
/***********************************************************************\
* sql.d *
* *
* Windows API header module *
* ... | D |
module arrayfire.statistics;
import arrayfire.defines;
extern ( C ) {
/+
C Interface for mean
\param[out] output will contain the mean of the input array along dimension \p dim
\param[in] input is the input array
\param[in] dim the dimension along which the mean is extracted
\return \ref A... | 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 |
module analysis;
import std.stdio;
import std.uni : toUpper;
import std.conv : to;
import core.sync.mutex : Mutex;
import dhtslib;
import dparasail;
import readstatus;
import util;
import std.stdio;
struct Align_Result
{
string alignment;
const(char)[] bq;
string stem_loop;
string stem_loop_rc;
}
///... | D |
// EXTRA_SOURCES: extra-files/header1.d
// REQUIRED_ARGS: -o- -H -Hf${RESULTS_DIR}/compilable/header1.di
// PERMUTE_ARGS: -d -dw
// POST_SCRIPT: compilable/extra-files/header-postscript.sh header1
void main() {}
| D |
module dlangide.ui.newfile;
import dlangui.core.types;
import dlangui.core.i18n;
import dlangui.platforms.common.platform;
import dlangui.dialogs.dialog;
import dlangui.dialogs.filedlg;
import dlangui.widgets.widget;
import dlangui.widgets.layouts;
import dlangui.widgets.editors;
import dlangui.widgets.controls;
impor... | D |
/*******************************************************************************
* Copyright (c) 2003, 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 |
/home/zbf/workspace/git/RTAP/target/debug/deps/nom-00f8b8fdffcb82a3.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/nom-4.2.3/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/nom-4.2.3/src/util.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/n... | D |
/Users/kimhyewon/Documents/Server/tennis/build/tennis.build/Debug/Console.build/Objects-normal/x86_64/ProgressBar.o : /Users/kimhyewon/Documents/Server/tennis/Packages/Console-1.0.1/Sources/Console/Bar/Bar.swift /Users/kimhyewon/Documents/Server/tennis/Packages/Console-1.0.1/Sources/Console/Command/Argument.swift /User... | D |
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Disposable.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.swi... | D |
/**
*
* THIS FILE IS AUTO-GENERATED BY ./parse_specs.d FOR MCU at90s4434 WITH ARCHITECTURE avr2
*
*/
module avr.specs.specs_at90s4434;
enum __AVR_ARCH__ = 2;
enum __AVR_ASM_ONLY__ = false;
enum __AVR_ENHANCED__ = false;
enum __AVR_HAVE_MUL__ = false;
enum __AVR_HAVE_JMP_CALL__ = false;
enum __AVR_MEGA__ = false;... | D |
bool[][] g;
bool[] visited;
int N;
int dfs(int v) {
bool all_visited = true;
foreach(i; visited) if(!i) all_visited = false;
if(all_visited) return 1;
int res;
foreach(i; 0..N) {
if(!g[v][i]) continue; // つながってないです
if(visited[i]) continue; // もう通ったよ??通れませんが??
visited[i] = true; // 通ってみよう
res += dfs(i);... | D |
/*
TEST_OUTPUT:
---
tuple((A), (B))
tuple((A), (B), 0)
tuple((A), (B), (A))
tuple((A), (B), (A), (B))
tuple((A), (B), (A), (B))
tuple((A), (B), (A), (B), (A), (B), (A), (B))
tuple((Attr))
---
*/
// Issue 19728
enum A; enum B; enum Dummy = 0;
alias Seq(T...) = T;
@Seq!(A,B) struct Foo1 {}
@Seq!(A,B, Dummy) struct Foo... | D |
instance BAU_912_Jeremiah(Npc_Default)
{
name[0] = "Jeremiasz";
npcType = npctype_main;
guild = GIL_BAU;
level = 7;
voice = 4;
id = 912;
attribute[ATR_STRENGTH] = 35;
attribute[ATR_DEXTERITY] = 13;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 124;
attribute[ATR_HITPO... | D |
a building having a circular plan and a dome
a large circular room
| D |
/*******************************************************************************
* Copyright (c) 2007, 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, a... | D |
/*
* Copyright (c) 2012-2020 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
module antlr.v4.runtime.atn.EpsilonTransition;
import antlr.v4.runtime.atn.ATNState;
import antlr.v4.runtime.atn.Trans... | D |
the group that gathers together for a particular occasion
a part of a road that has been widened to allow cars to pass or park
a short stretch of railroad track used to store rolling stock or enable trains on the same line to pass
what is produced in a given time period
a set of clothing (with accessories
attendance fo... | D |
a card game for 2 players
| D |
/home/zbf/workspace/git/RTAP/target/debug/deps/getrandom-b265380c21d676df.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/getrandom-0.1.12/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/getrandom-0.1.12/src/error.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.... | D |
/Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/WKInterfaceImage+Kingfisher.o : /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ozgun/Desktop/IOSC... | D |
instance Mod_7803_TPL_GorNaKosh_OM (Npc_Default)
{
//-------- primary data --------
name = "Na Kosh";
npctype = npctype_Main;
guild = GIL_OUT;
level = 17;
flags = 0;
voice = 0;
id = 7803;
//-------- abilities --------
B_SetAttributesToChapter (self, 5);
//-------- vi... | D |
module wx.KeyEvent;
public import wx.common;
public import wx.Event;
//! \cond EXTERN
static extern (C) IntPtr wxKeyEvent_ctor(int type);
static extern (C) bool wxKeyEvent_ControlDown(IntPtr self);
static extern (C) bool wxKeyEvent_ShiftDown(IntPtr self);
static extern (C) bool wxKeyEvent_AltDown(IntPtr self);
... | D |
instance SEK_8046_BALAM(Npc_Default)
{
name[0] = "Балам";
guild = GIL_SEK;
id = 8046;
voice = 13;
flags = 0;
npcType = npctype_main;
B_SetAttributesToChapter(self,4);
level = 1;
fight_tactic = FAI_HUMAN_NORMAL;
EquipItem(self,ItMw_Steinbrecher);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_... | D |
/++
This module contans extern C++ wrappers for $(MREF mir, numeric).
+/
module mir.cpp_export.numeric;
import mir.numeric: findRootImpl, mir_find_root_result;
private alias CFunction(T) = extern(C++) T function(scope const(void)* ctx, T) @safe pure nothrow @nogc;
private alias CTolerance(T) = extern(C++) bool funct... | D |
/**
* Written in the D programming language.
* This module provides ELF-specific support for sections with shared libraries.
*
* Copyright: Copyright Martin Nowak 2012-2013.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Martin Nowak
* Source: $(DRUNTIMESRC rt/_sections_linux... | D |
module imports.imp2c;
void baz() {}
| D |
/*
A cellular automaton visualized with SDL2.
When running this, pass the rule (0-255) you want it to show.
*/
import std.conv : to;
import std.bitmanip : BitArray;
import derelict.sdl2.sdl;
immutable int width = 1000;
immutable int height = 1000;
void main(string[] args) {
import std.format : format;
impo... | D |
import scone;
void main()
{
bool loop = true;
window.title = "Example 3";
window.resize(40,10);
while(loop)
{
foreach(input; window.getInputs())
{
if((input.key == SK.c && input.hasControlKey(SCK.ctrl)) || input.key == SK.escape)
{
lo... | D |
// Generated by gnome-h2d.rb <http://github.com/ddude/gnome.d>.
module gobject.signal;
public import core.stdc.stdarg;
/* GObject - GLib Type, Object, Parameter and Signal Library
* Copyright (C) 2000-2001 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms ... | D |
/Users/obuchiyuki/Desktop/SaftyDrive/Build/Intermediates/SafetyDrive.build/Debug-iphoneos/SaftyDrive.build/Objects-normal/arm64/MKEmbedMainControllerSegue.o : /Users/obuchiyuki/Desktop/SaftyDrive/SaftyDrive/MK/MKSnackbar.swift /Users/obuchiyuki/Desktop/SaftyDrive/SaftyDrive/RMMenu.swift /Users/obuchiyuki/Desktop/SaftyD... | D |
/Users/bernardo.tolosa/Documents/workspace/iosworks/basicmvvm/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/GroupedObservable.o : /Users/bernardo.tolosa/Documents/workspace/iosworks/basicmvvm/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bernardo.tolosa/Documents/workspace... | D |
// REQUIRED_ARGS: -m32
/*
TEST_OUTPUT:
---
fail_compilation/fail37_m32.d(9): Error: `cast(float)4u / cast(float)8u - cast(float)2147483647` is not of integral type, it is a `float`
---
*/
ulong[cast(uint)((cast(float)int.sizeof/ulong.sizeof)-int.max>>2)+int.max>>2] hexarray;
| D |
INSTANCE Monster_11073_Leprechaun_AW (Mst_Default_Gobbo_Green)
{
name = "Leprechaun";
guild = GIL_SHEEP;
aivar[AIV_MM_REAL_ID] = ID_KOBOLD;
id = 11073;
voice = 20;
level = 10;
//----- Attribute ----
attribute [ATR_STRENGTH] = 100;
attribute [ATR_DEXTERITY] = 100;
attribute [ATR_HITPOINTS... | D |
/*
* Copyright (c) 2006-2012 Erin Catto http://www.box2d.org
*
* 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 granted to anyone to use this software for any purpos... | 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 |
instance BDT_10027_Addon_Buddler(Npc_Default)
{
name[0] = NAME_Addon_Buddler;
guild = GIL_BDT;
id = 10027;
voice = 11;
flags = 0;
npcType = NPCTYPE_BL_MAIN;
B_SetAttributesToChapter(self,4);
fight_tactic = FAI_HUMAN_STRONG;
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_N_NormalBart0... | D |
/home/thodges/Workspace/Rust/the_rust_programming_language/chapter02/guessing_game/target/debug/deps/guessing_game-aa56b7f74938ef83: src/main.rs
/home/thodges/Workspace/Rust/the_rust_programming_language/chapter02/guessing_game/target/debug/deps/guessing_game-aa56b7f74938ef83.d: src/main.rs
src/main.rs:
| D |
//
//------------------------------------------------------------------------------
// Copyright 2012-2019 Coverify Systems Technology
// All Rights Reserved Worldwide
//
// Licensed under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in
// compliance with the License. ... | D |
/home/tyler/Documents/AdventOfCode/Rust/day_14_2/target/debug/deps/day_14_2-7e50b6940287e471: src/main.rs
/home/tyler/Documents/AdventOfCode/Rust/day_14_2/target/debug/deps/day_14_2-7e50b6940287e471.d: src/main.rs
src/main.rs:
| D |
/* $OpenBSD: ssl.h,v 1.230 2022/12/26 07:31:44 jmc Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This librar... | D |
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/FluentSQL.build/Objects-normal/x86_64/FluentSQLQuery.o : /Users/petercernak/vapor/TILApp/.build/checkouts/fluent.git-8387737201324173519/Sources/FluentSQL/FluentSQLSchema.swift /Users/petercernak/vapor/TILApp/.build/checkouts/fluent.git-8387... | D |
/Users/anton/Desktop/WeatherApp/DerivedData/WeatherApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Result.o : /Users/anton/Desktop/WeatherApp/Pods/Alamofire/Source/MultipartFormData.swift /Users/anton/Desktop/WeatherApp/Pods/Alamofire/Source/Timeline.swift /Users/a... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/MultipartSerializer.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/multipart/Sources/Multipart/MultipartPartConvertible.swift /Users/panartem/Developer/Study/Micro... | D |
module dwig.parser;
import dwig.tokenstream;
import dwig.token;
import dwig.node;
import dwig.nodes.text;
import std.experimental.logger;
interface ParserInterface
{
void parse(TokenStream stream);
}
class Parser : ParserInterface
{
private
{
TokenStream stream;
}
this()
{
// Constr... | D |
/Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Build/Intermediates/WanAndroid_IOS.build/Debug-iphonesimulator/WanAndroid_IOS.build/Objects-normal/x86_64/AppDelegate.o : /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/WanAndroid_IOS/tabVC/HotTabVC.swift /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/WanAndroid_IOS/... | D |
<?xml version="1.0" encoding="UTF-8"?>
<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="GoogleAppEngineDeployment.nota... | D |
// Copyright 2018 - 2022 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.sdl.bind.sdlsystem;
import bindbc.sdl.config;
import bindbc.sdl.bind.sdlrender : SD... | D |
module cloud;
import resourcemanager;
import dsfml.graphics;
static this() {
assert(resource_manager.register!Texture("assets/cloud.png", "cloud"));
}
/// Drawable, slowly moving cloud
class Cloud : Drawable {
private static float speed = 100;
private float horizontal_offset;
private float height;
/// Con... | D |
import std.typecons;
void main()
{
auto i = wrap!FooBarInterface(new class
{
string foo()
{
return "foo";
}
int bar(int a)
{
return a * a;
}
});
assert(i.foo() == "foo");
assert(i.bar(4... | D |
module graphic.torbit.torbit;
import std.math; // fmod, abs
import std.algorithm; // minPos
import basics.alleg5;
import basics.help; // positiveMod
import basics.topology;
import graphic.color; // drawing dark, to analyze transparency
import file.filename;
import hardware.display;
public import basics.rect;
/* Tor... | D |
/**
Copyright 2018 Mark Fisher
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublic... | D |
void main() { runSolver(); }
void problem() {
auto N = scan!int;
auto solve() {
if (N == 1) return "0";
if (N % 2 == 1) return "-1";
int[] ans = [0, N - 1];
int mod = N - 1;
foreach(i; 1..N / 2) {
auto p = (N - mod) + i;
ans ~= p;
ans ~= (N - p - 1);
mod = (mod + N - 1... | D |
refusing to bind oneself to a particular course of action or view or the like
| D |
/Users/admin/Desktop/StarifiedSampleProject/ios/build/StarifiedSampleProject/Build/Intermediates.noindex/StarifiedSampleProject.build/Debug-iphonesimulator/StarifySDK.build/Objects-normal/x86_64/MultiArray.o : /Users/admin/Desktop/StarifiedSampleProject/ios/build/StarifiedSampleProject/Build/Intermediates.noindex/Stari... | D |
module tests.valley.service.client;
import fluent.asserts;
import trial.discovery.spec;
import valley.service.client;
import valley.storage.base;
import valley.uri;
import std.file;
import std.conv;
import std.datetime;
class MockConnection : Connection {
string result;
private {
void delegate(string) event... | D |
var int Lutero_ItemsGiven_Chapter_1;
var int Lutero_ItemsGiven_Chapter_2;
var int Lutero_ItemsGiven_Chapter_3;
var int Lutero_ItemsGiven_Chapter_4;
var int Lutero_ItemsGiven_Chapter_5;
FUNC VOID B_GiveTradeInv_Mod_Lutero_NW (var C_NPC slf)
{
if ((Kapitel >= 1)
&& (Lutero_ItemsGiven_Chapter_1 == FALSE))
{
CreateIn... | D |
/Users/MohamedNawar/Desktop/weatherTask/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Validation.o : /Users/MohamedNawar/Desktop/weatherTask/Pods/Alamofire/Source/MultipartFormData.swift /Users/MohamedNawar/Desktop/weatherTask/Pods/Alamofire/Source/MultipartUpload.swift /Users/MohamedNawa... | D |
instance Mil_332_Stadtwache(Npc_Default)
{
name[0] = NAME_Stadtwache;
guild = GIL_MIL;
id = 332;
voice = 4;
flags = NPC_FLAG_IMMORTAL;
npcType = npctype_main;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_1h_Mil_Sword);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,M... | 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
... | D |
/**************************************************************************
ДОБИТЬ ПОВЕРЖЕННОГО
B_FinishingMove (slf, oth)
Персонаж slf наносит смертельный удар бессознательному oth.
Вызывается из ZS_Attack вместо непосредственного вызова AI_FinishingMove.
При необходимости переводит slf в режим боя и воор... | D |
module UnrealScript.TribesGame.TrDmgType_ArxShotgun;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.TribesGame.TrDmgType_Explosive;
extern(C++) interface TrDmgType_ArxShotgun : TrDmgType_Explosive
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property fina... | D |
import std.conv : to;
import std.format : format;
import std.stdio : writefln, writeln;
import systeminfo;
void main()
{
auto processorInfo = new ProcessorInfo();
writeln("CPU情報: ", processorInfo.processor);
writefln("CPUコア数: %d", processorInfo.totalCPUs);
writefln("メモリ容量: %d (kB)", getTotalRAM());
... | D |
module anthropos.logic.world.Tile;
import anthropos;
import std.traits;
/**
* A class which contains various sets of data
* for representation on a map
* TO BE DONE:
* - Government owning the tile
*/
class Tile {
Population population; ///The population on this tile
int[Resource] stockpiles; ///How mu... | D |
/*******************************************************************************
Custom exception types which can be thrown inside a DLS client.
Copyright:
Copyright (c) 2011-2017 sociomantic labs GmbH. All rights reserved.
License:
Boost Software License Version 1.0. See LICENSE.txt for ... | 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 |
module sys.WinProcess;
import cidrus, tpl.stream;
extern(D) class ППоток : Поток
{
this(ткст команда);
override т_мера читайБлок(ук буфер, т_мера размер);
override т_мера пишиБлок(ук буфер, т_мера размер);
override бдол сместись(дол смещение, ППозКурсора кгды);
проц закрой();
бцел зна... | D |
import std.stdio, std.array, std.container, std.algorithm, std.typecons, core.exception, std.math, std.conv;
import BaseAI, Tile;
alias point = Tuple!(int, "x", int, "y");
////
//A* Stuff
////
const static int[] xChange = [-1, 1, 0, 0];
const static int[] yChange = [ 0, 0, -1, 1];
point[] getPath(point start... | D |
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxCocoa.build/Objects-normal/x86_64/UISearchBar+Rx.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxCocoa/RxCocoa/RxCocoa.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxCocoa/RxCocoa/Deprecated.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxCocoa/... | D |
module examples.main;
import std.algorithm, std.datetime, std.stdio, std.typecons;
import examples.circles, examples.zrusin_path;
Tuple!(ulong, ulong) measure()
{
Tuple!(ulong, ulong) res;
auto sw = StopWatch(AutoStart.yes);
circles("circles.png");
res[0] = sw.peek.usecs;
sw.reset();
zrusin_... | D |
import derelict.opengl3.gl3;
import derelict.sdl2.sdl;
import std.stdio;
static import AOD;
import Menu_Manager;
// This is the "standard" way to initialize the engine. My thought process is
// to immediately set up the console so we can receive errors as we initialize
// the AOD engine. Then afterwards we adjust the ... | D |
module artemisd.componentmanager;
import std.bitmanip;
import artemisd.utils.bag;
import artemisd.manager;
import artemisd.component;
import artemisd.entity;
import artemisd.utils.ext;
import artemisd.utils.type;
class ComponentManager : Manager
{
mixin TypeDecl;
private Bag!(Bag!Component) componentsByType... | D |
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/JWT.build/Exports.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/jwt/Sources/JWT/JWT.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/jwt/Sources/JWT/JWTPayload.swift /Users/... | D |
/Users/thodges/Workspace/Rust/projects/chapter5/youTube/pattern_matching_switch/target/debug/deps/pattern_matching_switch-0e44b0294bd901a3: src/main.rs
/Users/thodges/Workspace/Rust/projects/chapter5/youTube/pattern_matching_switch/target/debug/deps/pattern_matching_switch-0e44b0294bd901a3.d: src/main.rs
src/main.rs:... | D |
module ivy.ast.iface.statement;
import ivy.ast.iface.node: IvyNode;
import ivy.ast.iface.node_range: IvyNodeRange;
import ivy.ast.iface.expr: IExpression;
interface IStatement: IvyNode
{
@property {
bool isCompoundStatement();
ICompoundStatement asCompoundStatement();
bool isDirectiveStatement();
IDirectiveS... | D |
/**
Application
Copyright: (c) Enalye 2017
License: Zlib
Authors: Enalye
*/
module magia.common.application;
import bindbc.sdl;
import core.thread;
import std.datetime;
import grimoire;
import magia.core, magia.render, magia.script;
import magia.common.event;
import magia.common.settings;
import ... | 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_preac... | D |
void main() {
int[string] x;
static if (is(typeof(x) S : T[U], T, U)) { }
pragma(msg, S, " ", T, " ", U);
}
| D |
/**
* Identify the characteristics of the host CPU.
*
* Implemented according to:
- AP-485 Intel(C) Processor Identification and the CPUID Instruction
$(LINK http://www.intel.com/design/xeon/applnots/241618.htm)
- Intel(R) 64 and IA-32 Architectures Software Developer's Manual, Volume 2A: Instruction Set Referenc... | D |
/**
* Copyright: Enalye
* License: Zlib
* Authors: Enalye
*/
module grimoire.runtime.indexedarray;
import std.parallelism;
import std.range;
/**
Defragmenting array with referencable value by index.
For optimisation purposes, the index returned by the foreach statement
is the internal one : \
- Do not attempt ... | D |
module owlchain.xdr.accountMergeResultCode;
enum AccountMergeResultCode
{
ACCOUNT_MERGE_SUCCESS = 0,// codes considered as "success" for the operation
// codes considered as "failure" for the operation
ACCOUNT_MERGE_MALFORMED = -1,// can't merge onto itself
ACCOUNT_MERGE_NO_ACCOUNT = -2,// destination ... | D |
/*******************************************************************************
PerPixel map used for per pixel collision detection. Loads an image and
creates a collision map for it. Not recommended to use by itself, use
PixFrame instead.
Date: (2005): initial version
(2009): Updated ve... | D |
/Users/yq/Project/Swift/SwiftGroup/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ToArray.o : /Users/yq/Project/Swift/SwiftGroup/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/yq/Project/Swift/SwiftGroup/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/yq/Pr... | D |
/Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Random.build/RandomProtocol.swift.o : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/crypto.git-7980259129511365902/Sources/Random/RandomProtocol.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/crypto.git-... | D |
#include <stdio.h>
#include <stddef.h>
#include <unistd.h>
#include <math.h>
#include <time.h>
#include "ldev.h"
#include "../labTools/lcode.h"
#include "../labTools/toys.h"
#include "../labTools/matlab.h"
#include "../labTools/timer.h"
#include "../labTools/udpmsg.h"
#include "../labTools/dio_lab.h"
/* signal number... | D |
module intervaltree;
/// Interval with zero-based, half-open coordinates
/// Any other Interval struct (or class?) OK
/// as long as it contains "start" and "end"
struct BasicInterval(T)
{
T start; /// zero-based half-open
T end; /// zero-based half-open
/// override the <, <=, >, >= operators; we'll ... | D |
any factual evidence that helps to establish the truth of something
a formal series of statements showing that if one thing is true something else necessarily follows from it
a measure of alcoholic strength expressed as an integer twice the percentage of alcohol present (by volume)
(printing) an impression made to chec... | D |
fdmlc (1) --- interface to Prime DBMS Fortran DML preprocessor 08/27/84
| _U_s_a_g_e
fdmlc <input file>
[-b [<output file>]]
[-l [<listing file>]]
[-z <FDML option>]
_D_e_s_c... | 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, and... | D |
/// a simple file stream, at the moment it builds on tango file interface
/// should probably be reimplemented directly on the OS (using aio or just libev?)
///
/// The functions typically used are outfileStr, outfileStrSync, outfileBin, outfileBinSync
///
/// author: fawzi
//
// Copyright 2008-2010 the blip developer ... | D |
/* -------------------- CZ CHANGELOG -------------------- */
/*
v1.00:
func int DIA_Orc_8551_Leitenent_DeadHead_condition - upraveny podmínky dialogu
*/
instance DIA_ORC_8551_LEITENENT_EXIT(C_Info)
{
npc = orc_8551_leitenent;
condition = dia_orc_8551_leitenent_exit_condition;
information = dia_orc_8551_leite... | D |
/Users/sean/Documents/GitHub/r-gen/r-gen-macro/target/package/r-gen-macro-0.1.0/target/debug/deps/either-91ab0839b8b57cb9.rmeta: /Users/sean/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs
/Users/sean/Documents/GitHub/r-gen/r-gen-macro/target/package/r-gen-macro-0.1.0/target/debug/deps/libeithe... | D |
module allegro5.fixed;
import allegro5.error;
version (Tango)
{
import tango.stdc.errno;
}
else
{
version(D_Version2)
{
import core.stdc.errno;
}
else
{
import std.c.stdlib;
// Phobos doesn't define EDOM
enum { EDOM = 33 }
}
}
extern (C)
{
alias int al_fixed;
const al_fixed al_fixtorad_r = cast(a... | D |
/Users/kawaharakeisuke/Desktop/OneDayCalendarApp/DerivedData/OneDayCalendarApp/Build/Intermediates/OneDayCalendarApp.build/Debug-iphonesimulator/OneDayCalendarApp.build/Objects-normal/x86_64/AppDelegate.o : /Users/kawaharakeisuke/Desktop/OneDayCalendarApp/OneDayCalendarApp/_SettingTableViewController.swift /Users/kawah... | D |
/root/Documents/Dev/ProgrammingPractice/Rust/hello-rocket/target/debug/deps/safemem-3b2e37650a09ce29.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/safemem-0.3.3/src/lib.rs
/root/Documents/Dev/ProgrammingPractice/Rust/hello-rocket/target/debug/deps/libsafemem-3b2e37650a09ce29.rlib: /root/.cargo/registry/... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.