code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/Users/Star/Documents/GitHub/StarConsoleLink-Xcode8+/Build/Intermediates/StarConsoleLink.build/Debug/StarConsoleLink.build/Objects-normal/x86_64/PluginHelper.o : /Users/Star/Documents/GitHub/StarConsoleLink-Xcode8+/StarConsoleLink/Extensions/NSColor-Extension.swift /Users/Star/Documents/GitHub/StarConsoleLink-Xcode8+/S... | D |
/**
Generator for SublimeText project files
Copyright: © 2014 Nicholas Londey
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Nicholas Londey
*/
module dub.generators.sublimetext;
import dub.compilers.compiler;
import dub.generators.generator;
import dub.interna... | D |
////////////////
// SPECIES.D //
//////////////
// ACHTUNG! die Turn-Speed ist durch einen "hack" im kampfmodus auf die doppelte geschwindigkeit gesetzt.
// deshalb ist die Turn-Speed der Monster im Spiel doppelt so schnell wie hier angegeben, da sie immer im Kampfmode sind!
INSTANCE Gil_Values(C_GILVALUES)
{
... | D |
module widget.views;
package import widget.views.widgets;
| D |
module sambamba.sort;
import bamfile;
import bamoutput;
import samheader;
import alignment;
import std.range;
import std.algorithm;
import std.traits;
import std.array;
import std.ascii;
import std.numeric;
import std.parallelism;
import std.getopt;
import std.path;
import std.file;
import std.stream;
import std.stdi... | D |
/Users/anton/Developer/PlasmaCashHistorySnark-iOS/cargo/target/x86_64-apple-ios/release/deps/libbit_vec-83a85052b4f0f81f.rlib: /Users/anton/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.4.4/src/lib.rs
/Users/anton/Developer/PlasmaCashHistorySnark-iOS/cargo/target/x86_64-apple-ios/release/deps/bit_vec-83a85... | D |
/Users/kelvintan/Desktop/MVP/Build/Intermediates.noindex/MVP.build/Debug-iphonesimulator/MVP.build/Objects-normal/x86_64/View_Ext.o : /Users/kelvintan/Desktop/MVP/MVP/SceneDelegate.swift /Users/kelvintan/Desktop/MVP/MVP/AppDelegate.swift /Users/kelvintan/Desktop/MVP/MVP/View/Home/HomeTableViewCell.swift /Users/kelvinta... | D |
/root/Unit-Network/target/release/build/names-8b30bf24066591a4/build_script_build-8b30bf24066591a4: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/names-0.11.0/build.rs
/root/Unit-Network/target/release/build/names-8b30bf24066591a4/build_script_build-8b30bf24066591a4.d: /root/.cargo/registry/src/github.com-1ecc... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
enum A = "AKIHABARA";
void main()
{
auto S = readln.chomp;
size_t i, j;
while (i < S.length && j < A.length) {
if (S[i] == A[j]) {
++i; ++j;
} else if (A[j] == 'A') {
... | D |
a group's refusal to work in protest against low pay or bad work conditions
an attack that is intended to seize or inflict damage on or destroy an objective
a gentle blow
a score in tenpins: knocking down all ten with the first ball
(baseball) a pitch that the batter swings at and misses, or that the batter hits into f... | D |
module stm32.startup;
extern(C):
@nogc:
nothrow:
pragma(LDC_no_moduleinfo);
// variables defined on LinkerScript.ld
extern(C) void _estack();
extern(C) int _sidata;
extern(C) int _sdata;
extern(C) int _edata;
extern(C) int _sbss;
extern(C) int _ebss;
void main();
/*
* estack: the end point of stack
* .isr_vector: t... | D |
module gsb.text.textrendertest;
import gsb.text.textrenderer;
import std.file;
import std.utf;
import std.container.rbtree;
import std.math;
import std.format;
import std.algorithm.mutation;
import gsb.core.window;
import gsb.core.log;
import gsb.core.errors;
import gsb.coregl.gl;
import dglsl;
import stb.truetype;
... | D |
resembling a tiger in fierceness and lack of mercy
| D |
/Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/AFError.o : /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Pods/Alamofire/Source/MultipartFormData.swift /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Pods/Alamofire/Source/Mu... | D |
/**
DMD compiler support.
Copyright: © 2013-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
*/
module dub.compilers.dmd;
import dub.compilers.compiler;
import dub.compilers.utils;
import dub.internal.utils;
import dub.... | D |
import std.stdio;
import std.container.array;
import std.array;
void main()
{
uint[] b;
b = [ 1, 2, 3, 4, 5 ];
b.replaceInPlace( 1, 2, [ 0, 1, 1, 1, 1 ] );
writeln( b );
//
Array!uint a;
a.insertBack( 1 );
a.insertBack( 2 );
a.insertBack( 3 );
a.Range r;
writeln( a );
... | D |
import raylib;
import draygui.raygui;
import draygui.iconsdata;
import std.format : format;
import std.stdio;
void main(string[] args) {
int screenWidth = 690;
int screenHeight = 560;
InitWindow(screenWidth, screenHeight, "raygui - button");
SetExitKey(0);
bool exitWindow;
size_t step = 0;
while ... | D |
/*
* This file is part of serpent.
*
* Copyright © 2019-2020 Lispy Snake, Ltd.
*
* 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 s... | D |
/*
Copyright Chris Jones 2020.
Distributed under the Boost Software License, Version 1.0.
See accompanying file Licence.txt or copy at...
https://www.boost.org/LICENSE_1_0.txt
*/
module win32;
version(Windows):
import window;
import std.stdio;
import core.sys.windows.windows;
import std.string;
import std.c... | D |
module gui.engine;
import
std.parallelism,
std.datetime,
std.conv,
ws.math,
ws.gui.base,
ws.gl.render,
ws.gl.model,
ws.time,
ws.io,
gui.console,
gui.menu.menu,
gui.worldPerspective,
game.editor.editor,
game.entity.player,
game.entity.entity,
game.entity.earth,
game.entity.skybox,
game.physics.bull... | D |
module deimos.cbor.ints;
import deimos.cbor.data;
/*
* Copyright (c) 2014-2019 Pavel Kalvoda <me@pavelkalvoda.com>
*
* libcbor is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
extern (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_10_banking-815... | D |
/**
*用到的技术有 md5 byte转long 位移操作
*匿名函数,函数变量, lambda表达式
*可变数组,关联数组(键值对)非hash的
*数组排序,数组反转
*
*/
import std.stdio;
import std.digest.md;
import std.math;
import std.conv;
import std.algorithm;
class HashRing{
string[] nodes;
long[] _sorted_keys;
int[string] weights;
string[long] ... | D |
/Volumes/Lexar/backup-imac/source/MyStyleHorizontalScrollView/sampleScorllViewInSwift/build/sampleScorllViewInSwift.build/Debug-iphonesimulator/sampleScorllViewInSwift.build/Objects-normal/x86_64/AppDelegate.o : /Volumes/Lexar/backup-imac/source/MyStyleHorizontalScrollView/sampleScorllViewInSwift/sampleScorllViewInSwif... | D |
import std.stdio;
import core.thread;
import derelict.sdl2.sdl;
import derelict.sdl2.mixer;
import derelict.opengl3.gl;
SDL_Window* window;
SDL_GLContext glContext;
bool isgamerunning = true;
// Example vars
float POS_X,
POS_Y;
float ANGLE;
const float speed = 10.0f;
const float c_acc = 5.0f;
const float ha... | D |
// ********
// ZS_Ghost //quarhodron
// ********
func void ZS_Ghost ()
{
Npc_PercEnable (self, PERC_ASSESSDAMAGE , B_AssessDamage );
B_ResetAll (self);
// ------ PercTime überschreiben ------
Npc_SetPercTime (self, 0.1);
AI_StandUp (self);
AI_SetWalkmode (self,NPC_WALK); // Walkmode für... | D |
// Copyright © 2011, Jakob Bornecrantz. All rights reserved.
// See copyright notice in src/charge/charge.d (GPLv2 only).
module charge.platform.windows;
version(Windows):
import std.c.windows.windows;
const uint CF_TEXT = 1;
extern(Windows) BOOL IsClipboardFormatAvailable(
UINT uFormat
);
extern(Windows) BOO... | D |
/Users/sven/Documents/XCodeProjects/SurfLogbook/build/SurfLogbook.build/Debug-iphonesimulator/SurfLogbook.build/Objects-normal/x86_64/Wetsuits.o : /Users/sven/Documents/XCodeProjects/SurfLogbook/SurfLogbook/Wetsuits.swift /Users/sven/Documents/XCodeProjects/SurfLogbook/SurfLogbook/EnumSkyConditions.swift /Users/sven/Do... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1985-1998 by Symantec
* Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: ... | D |
# FIXED
csl_dma.obj: C:/ti/c55_lp/c55_csl_3.08.01/src/csl_dma.c
csl_dma.obj: C:/ti/c55_lp/c55_csl_3.08.01/inc/csl_dma.h
csl_dma.obj: C:/ti/c55_lp/c55_csl_3.08.01/inc/cslr.h
csl_dma.obj: C:/ti/c55_lp/c55_csl_3.08.01/inc/csl_general.h
csl_dma.obj: C:/ti/c55_lp/c55_csl_3.08.01/inc/soc.h
csl_dma.obj: C:/ti/bios_5_42_02_10... | D |
/Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/DerivedData/XYiOS/Build/Intermediates/XYiOS.build/Debug-iphonesimulator/XYiOS.build/Objects-normal/x86_64/View+KeyValues.o : /Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/XYiOS/Sepia.swift /Users/tom.power/Developer/MusicTechProjects/XY... | D |
// Author: Ivan Kazmenko (gassa@mail.ru)
module display;
import std.algorithm;
import std.range;
import std.stdio;
import language;
import parser;
void display (Expression e)
{
{
auto cur = cast (CallExpression) (e);
if (cur !is null)
{
write (cur.name, " (");
foreach (i, r; cur.argumentLis... | D |
module de.math;
public import std.math;
import std.stream;
alias Vec4 Vector;
alias Vec4 float4;
struct Vec4
{
float x = 0, y = 0, z = 0, w = 0;
static Vec4 zero()
{
auto v = Vec4.create();
return v;
}
static Vec4 create(float x=0., float y=0., float z=0., float w=0.)
{
... | D |
# FIXED
2806x_examples_setup.obj: C:/Users/a0272561/Repositories/cs30_controlsuite/libs/math/CLAmath/CLAMATH_VERSION/examples/common/2806x_examples_setup.c
2806x_examples_setup.obj: C:/ti/ccsv6/tools/compiler/ti-cgt-c2000_15.12.1.LTS/include/stdint.h
2806x_examples_setup.obj: C:/Users/a0272561/Repositories/cs30_contro... | 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 |
deprecated void foo()
{
if (a) b();
if (a) b(); else c();
if (auto a = i == 10) b();
if (int i = a < 100) b();
switch (x) {}
switch (x) { case 10: break; }
switch (x) { case 10: break; default: break; }
label: switch (x) {
case 1: break label;
case 2: goto default;
case 3: goto label2;
case 4: goto case 3;
... | D |
INSTANCE Mod_7361_OUT_Setta_TUG (Npc_Default)
{
name = "Setta";
guild = GIL_OUT;
id = 7361;
voice = 16;
flags = 2;
npctype = NPCTYPE_MAIN;
B_SetAttributesToChapter (self, 4);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem (self, ItMw_1H_quantarie_Schwert_01);
B_SetNpcVisual (self, FEMALE,... | D |
/**
* Shaders
*
* Use this only if you need some custom shaders
*
* Copyright: © 2014 kuviman
* License: MIT
* Authors: kuviman
*/
module vpe.shader;
import vpe.internal;
import vpe.shader.internal;
/// Shader
class Shader {
/// Compile code into a shader
this(string code) {
program = new RawProgram(basic... | D |
/****************************************************************************
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy ... | D |
# Location of the config file.
PRIVOXY_CONF='/etc/privoxy/config'
# User and group that privoxy will be run as.
PRIVOXY_USER='privoxy'
PRIVOXY_GROUP='privoxy'
# Additional arguments.
PRIVOXY_ARGS="--pidfile /var/run/privoxy.pid"
| D |
// Copyright Michael D. Parker 2018.
// 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.sdlkeyboard;
import bindbc.sdl.config;
import bindbc.sdl.bind.sdlkeycode : SDL_K... | D |
/*******************************************************************************
@file Pool.d
Copyright (c) 2006 John Demme
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for damages
of any kind a... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range;
void get(Args...)(ref Args args)
{
import std.traits, std.meta, std.typecons;
static if (Args.length == 1) {
alias Arg = Args[0];
static if (isArray!Arg) {
... | D |
module bindbc.raylib;
public {
// order is same of https://www.raylib.com/cheatsheet/cheatsheet.html
import bindbc.raylib.bind.core;
import bindbc.raylib.bind.shapes;
import bindbc.raylib.bind.texture;
import bindbc.raylib.bind.text;
import bindbc.raylib.bind.models;
import bindbc.raylib.bind.shad... | D |
/*
* Hunt - A refined core library for D programming language.
*
* Copyright (C) 2018-2019 HuntLabs
*
* Website: https://www.huntlabs.net/
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.io.Buffer;
import hunt.Exceptions;
import std.conv;
import std.format;
abstract class Buffer
{
// Invari... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
alias T = Tuple!(int, "i", int, "a");
void main()
{
auto N = readln.chomp.to!int;
auto ts = new T[](N);
int max_a;
foreach (i, a; readln.split.to!(int[])) {
ts[i] = T(i.to!int, a);
ma... | D |
a biter who takes dainty repeated bites
| D |
/Users/WenNiao/myproject/iosprojects/HackerNews/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Notifications.o : /Users/WenNiao/myproject/iosprojects/HackerNews/Pods/Alamofire/Source/Alamofire.swift /Users/WenNiao/myproject/iosprojects/HackerNews/Pods/Alamofire/Source/Download.swift /Users... | D |
module DMath.Vec;
private{
import std.array,std.math;
}
alias gl_float float
const float M_PI = 3.14159265;
const float M_PI180 = 0.0174532925;
const float M_180PI = 57.2957795785;
public Vec3 cross(Vec3 A, Vec3 B)
{
Vec3 temp = new Vec3();
temp.x(A.y*B.z-A.z*B.y);
temp.y(A.z*B.x-A.x*B.z);
temp.z(A.x*B.y-A.y*... | D |
/**
* For any future extension of the keysyms with characters already
* found in ISO 10646 / Unicode, the following algorithm shall be
* used. The new keysym code position will simply be the character's
* Unicode number plus 0x01000000. The keysym values in the range
* 0x01000100 to 0x0110ffff are reserved to rep... | D |
//
//------------------------------------------------------------------------------
// Copyright 2007-2011 Mentor Graphics Corporation
// Copyright 2007-2011 Cadence Design Systems, Inc.
// Copyright 2010 Synopsys, Inc.
// Copyright 2014 Coverify Systems Technology
// All Rights Reserved Worldwide
//
// Lic... | D |
program example();
type foo = record
a: integer;
b: real;
end;
var a: foo;
begin
a.a := 0;
a.b := 0
end.
| D |
/Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Leaf.build/Tag/Models/Raw.swift.o : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Leaf-1.0.2/Sources/Leaf/Argument.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Leaf-1.0.2/Sources/Leaf/Byte+Leaf.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Leaf-1.0.... | D |
import sumtype;
struct T0 {}
struct T1 {}
struct T2 {}
struct T3 {}
struct T4 {}
struct T5 {}
struct T6 {}
struct T7 {}
struct T8 {}
struct T9 {}
alias ExampleSumType = SumType!(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9);
int do_visit(ExampleSumType s)
{
return s.match!(
(T0 val) => 3,
(T1 val) => 5,
(T2 val) =>... | D |
/Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/SessionManager.o : /Users/Fares/Documents/Projects/TransitApp/Pods/Alamofire/Source/AFError.swift /Users/Fares/Documents/Projects/TransitApp/Pods/Alamofire/Source/Alamofire.swift /Users/Fares/Document... | D |
/+
+ Copyright 2023 Aya Partridge
+ Copyright 2019 - 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 ft.tttags;
import bindbc.freetype.codegen;... | D |
module gtkD.gtk.ActivatableT;
public import gtkD.gtkc.gtktypes;
public import gtkD.gtkc.gtk;
public import gtkD.glib.ConstructionException;
public import gtkD.gtk.Action;
/**
* Description
* Activatable widgets can be connected to a GtkAction and reflects
* the state of its action. A GtkActivatable can also... | D |
import dython;
mixin(dythonizeFile!"geometry.dy");
| D |
module android.java.android.util.Base64OutputStream;
public import android.java.android.util.Base64OutputStream_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Base64OutputStream;
import import1 = android.java.java.lang.Class;
| D |
/Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Middleware/Middleware.swift.o : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/FileIO.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/vapor... | D |
/home/hustccc/OS_Tutorial_Summer_of_Code/rCore_Labs/Lab6/user/target/debug/deps/quote-f7ea4c9bef36e8af.rmeta: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/quote-1.0.7/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/quote-1.0.7/src/ext.rs /home/hustccc/.cargo/r... | D |
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/deps/byteorder-3b225bbaef0c1e6e.rmeta: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/src/lib.rs /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299... | D |
/*
* Copyright (C) 2019, HuntLabs
*
* 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... | D |
module hunt.wechat.bean.message.message.ImageMessage;
class ImageMessage : Message {
public this() {
}
public this(string touser, string mediaId) {
super(touser, "image");
this.image = new Image();
this.image.setMedia_id(mediaId);
}
private Image image;
... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Vapor.build/Commands/ServeCommand.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/panartem/Developer/Study/Microservices-vap... | 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_2_MobileMedia-... | D |
#!/usr/bin/dmd -run
import std.stdio, std.file, std.path, std.conv, std.math, std.container, std.algorithm;
string filesize(double size){
import std.format : format;
string units = "KMGT";
double left = size.fabs();
int unit = -1;
while(left > 1100 && unit < 3){
left /=1024;
unit ... | D |
/Users/unaisainz/EHU/RUST/tetris/target/debug/build/num-traits-242cd99942b1681a/build_script_build-242cd99942b1681a: /Users/unaisainz/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.4/build.rs
/Users/unaisainz/EHU/RUST/tetris/target/debug/build/num-traits-242cd99942b1681a/build_script_build-242cd99942b1... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range;
void get(Args...)(ref Args args)
{
import std.traits, std.meta, std.typecons;
static if (Args.length == 1) {
alias Arg = Args[0];
static if (isArray!Arg) {
... | D |
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Command.build/Run/Output+Help.swift.o : /Users/nice/HelloWord/.build/checkouts/console.git-2755603573940926646/Sources/Command/Command/Command.swift /Users/nice/HelloWord/.build/checkouts/console.git-2755603573940926646/Sources/Command/Base/CommandRunnable.swi... | D |
import std.stdio;
import std.string;
import std.conv;
import std.algorithm;
import std.math;
import std.regex;
void main() {
auto ip = readln.split.to!(int[]), A = ip[0], B = ip[1];
auto S = readln.chomp;
if(S[A] != '-') {
writeln("No");
return;
}
auto regex_a = regex(format("^[0-9]{%d}", A));
if(matchFirst(... | D |
module EncoGL3.GLMaterial;
import EncoGL3;
import std.json;
import std.stdio;
import std.conv;
class GLMaterialManager : IMaterialManager
{
private:
GL3Renderer m_renderer;
public:
this(GL3Renderer renderer)
{
assert(renderer !is null, "Passed null as renderer");
m_renderer = renderer;
}
/// Loads JSON M... | D |
module tests.pass.fixtures;
import unit_threaded;
class Fixture: TestCase
{
override void setup()
{
// do initialization common for test1 and test2
}
}
class Test1: Fixture
{
override void test()
{
// testing feature #1
}
}
class Test2: Fixture
{
override void test()
... | D |
module guistuffq;
import base;
struct GuiStuff {
void setup() {
}
}
| D |
/*
REQUIRED_ARGS: -Jfail_compilation
DISABLED: linux osx freebsd dragonflybsd netbsd openbsd
TEST_OUTPUT:
---
fail_compilation\fail21227_win.d(2): Error: absolute path is not allowed in import expression: `"\\\\UNC\\path\\to\\file.txt"`
fail_compilation\fail21227_win.d(3): Error: absolute path is not allowed in import ... | D |
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/AES.o : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/P... | D |
/Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/build/Ingenium.build/Release-iphonesimulator/Ingenium.build/Objects-normal/x86_64/ProfileVC.o : /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/TutorDetailVC.swift /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/Spring... | D |
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.build/Bytes+Percent.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Base64.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts... | D |
module android.java.java.util.Spliterator_OfInt_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.util.Spliterator_OfInt_d_interface;
import import3 = android.java.java.util.... | D |
/afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/QuickAna/obj/TauTool.o /afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/QuickAna/obj/TauTool.d : /cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.1.29/QuickAna/Root/TauTool.cxx /cv... | D |
/home/mifour/Documents/Algorithms/mastermind/master_mind_rust/target/debug/deps/super_master_mind-df9a413675f1b34c: src/main.rs
/home/mifour/Documents/Algorithms/mastermind/master_mind_rust/target/debug/deps/super_master_mind-df9a413675f1b34c.d: src/main.rs
src/main.rs:
| D |
module cucumber.formatter;
public import cucumber.formatter.base;
public import cucumber.formatter.json;
public import cucumber.formatter.pretty;
public import cucumber.formatter.progress;
| D |
/*
Written in the D programming language.
For git maintenance (ensure at least one congruent line with originating C header):
#define crypto_generichash_H
*/
module deimos.sodium.crypto_generichash;
import deimos.sodium.crypto_generichash_blake2b : crypto_generichash_blake2b_state,
... | D |
module android.java.android.mtp.MtpDeviceInfo_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
final class MtpDeviceInfo : IJavaObject {
static imm... | D |
public import std.socket;
import deimos.openssl.ssl;
static this() {
SSL_library_init();
OpenSSL_add_all_algorithms();
SSL_load_error_strings();
}
pragma(lib, "crypto");
pragma(lib, "ssl");
class OpenSslSocket : Socket {
private SSL* ssl;
private SSL_CTX* ctx;
private void initSsl() {
ctx = SSL_CTX_new(SSLv... | D |
module neton.lease.LeaseQueue;
import neton.lease.Lessor;
// LeaseWithTime contains lease object with a time.
// For the lessor's lease heap, time identifies the lease expiration time.
// For the lessor's lease checkpoint heap, the time identifies the next lease checkpoint time.
struct LeaseWithTime
{
long ... | D |
/*
* All COM APIs required by SWT, all APIs prototype copied from MSDN 2003
* don't import this module directly, import std.internal.ole.win32.com instead
*
* author : Shawn Liu
*/
module org.eclipse.swt.internal.ole.win32.COMAPI;
//private import std.c.windows.windows;
//private import std.c.windows.com;
impo... | D |
/**
* Implementation of the gamma and beta functions, and their integrals.
*
* License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Copyright: Based on the CEPHES math library, which is
* Copyright (C) 1994 Stephen L. Moshier (moshier@world.std.com).
* Authors: Stephen L. Moshier (origina... | D |
the main land mass of a country or continent
| D |
/Users/desheng/Desktop/game-of-life/game-of-life/game-of-life/build/game-of-life.build/Debug-iphonesimulator/game-of-life.build/Objects-normal/x86_64/ColonyList.o : /Users/desheng/Desktop/game-of-life/game-of-life/game-of-life/game-of-life/DetailViewController.swift /Users/desheng/Desktop/game-of-life/game-of-life/game... | D |
module dnes.cpumemory;
import dnes;
import std.stdio;
import std.conv;
class CpuMemory {
private ubyte[65536] memory;
private Nes nes;
private bool pageCrossed = false;
this(Nes nes) {
this.nes = nes;
}
public ubyte read(Mode accessMode, ubyte immediate, ushort address) {
... | D |
@property bool isFunctionType()
{
with (CXTypeKind)
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
||
func.resultType.isValid;
}
@property bool isFunctionPointerType()
{
with (CXTypeKind)
return kind == CXType_Pointer && pointeeType.isFunctionType;
}
| D |
/Users/chiaweizhengterry/Desktop/TicTacToe/DerivedData/Build/Intermediates/TicTacToe.build/Debug-iphoneos/TicTacToe.build/Objects-normal/armv7/Utility.o : /Users/chiaweizhengterry/Desktop/TicTacToe/TicTacToe/Common/Debug.swift /Users/chiaweizhengterry/Desktop/TicTacToe/TicTacToe/Manager/TicTacToeManager.swift /Users/ch... | 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-56276191... | D |
/home/ukasha/Desktop/Quarter-1_3.30-6.30/week_10_29th-September,2019/part1/target/debug/part1: /home/ukasha/Desktop/Quarter-1_3.30-6.30/week_10_29th-September,2019/part1/src/main.rs
| D |
var int guardsumtime_1;
var int guardsumtime_2;
instance Spell_SummonGuardian(C_Spell_Proto)
{
time_per_mana = 0;
targetCollectAlgo = TARGET_COLLECT_NONE;
};
func int Spell_Logic_SummonGuardian(var int manaInvested)
{
if(CurrentLevel == LOSTVALLEY_ZEN)
{
AI_Print("Něco mi brání to udělat...");
//B_Say(self,... | D |
module dquick.algorithms.scheduler;
import dquick.algorithms.weak;
import std.container;
import core.thread;
import core.time;
import core.atomic;
import core.sync.condition;
class Scheduler
{
/** Delegate called every time a task is executed.
* Params:
* time = Time since first execution of this task;
* s... | D |
/Users/ryanmcwhorter/Documents/_GIT/rust_basics/web/target/debug/build/rand-bfc70f10aa8400a9/build_script_build-bfc70f10aa8400a9: /Users/ryanmcwhorter/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs
/Users/ryanmcwhorter/Documents/_GIT/rust_basics/web/target/debug/build/rand-bfc70f10aa8400a9/build_s... | D |
/**
Copyright: Copyright (c) 2013-2014 Andrey Penechko.
License: a$(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
module emulator.dcpu.dcpu;
import std.algorithm : fill;
import emulator.dcpu.devices.idevice;
import emulator.dcpu.updatequeue;
import emulator.utils.ringbuffer;
import... | D |
module LinkedListDemo;
import common;
import hunt.collection.AbstractList;
import hunt.collection.ArrayList;
import hunt.collection.LinkedList;
import hunt.collection.Collections;
import hunt.collection.List;
import std.stdio;
import std.conv;
import std.range;
// http://www.java2novice.com/java-collections-and-uti... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.