code
stringlengths
3
10M
language
stringclasses
31 values
module m3.Array; private: static import m3.m3; debug(m3) { static import core.stdc.stdio; alias printf = core.stdc.stdio.printf; } static import std.traits; alias isArray = std.traits.isArray; public: /* Static Array */ @safe @nogc T[n] s(T, size_t n)(auto ref T[n] values) pure nothrow if (!isArray!(T)) ...
D
/// module stdx.allocator.building_blocks.segregator; import stdx.allocator.common; /** Dispatches allocations (and deallocations) between two allocators ($(D SmallAllocator) and $(D LargeAllocator)) depending on the size allocated, as follows. All allocations smaller than or equal to $(D threshold) will be dispatche...
D
a unit of instruction punishment intended as a warning to others the significance of a story or event a task assigned for individual study
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1994-1998 by Symantec * Copyright (C) 2000-2018 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: ...
D
import std.stdio; import hunt.minihttp.HttpParser; import hunt.minihttp.HttpMessage; import hunt.minihttp.Define; void main() { string requestString = "GET / HTTP/1.1\r\nHost: example.com\r\nUser-Agent: Test Agent\r\nConnection: keep-alive\r\n\r\nHello world!"; auto parser = new HttpParser; auto request = parse...
D
/home/juliobrz/Git/PixelCanvas/.build/x86_64-unknown-linux/debug/Core.build/MediaType.swift.o : /home/juliobrz/Git/PixelCanvas/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /home/juliobrz/Git/PixelCanvas/.build/checkouts/core/Sources/Core/NestedData.swift /home/juliobrz/Git/PixelCanvas/.build/checkouts/core/S...
D
/* * MsgTrans - Message Transport Framework for DLang. Based on TCP, WebSocket, UDP transmission protocol. * * Copyright (C) 2019 HuntLabs * * Website: https://www.msgtrans.org * * Licensed under the Apache-2.0 License. * */ module msgtrans.channel.ServerChannel; import msgtrans.MessageTransport; // import m...
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
/** * D header file for POSIX. * * Copyright: Copyright Sociomantic Labs GmbH. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Leandro Lucarella */ /* Copyright Sociomantic Labs GmbH. * Distributed under the Boost Software License, Version 1.0. * (See a...
D
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/TurnstileCrypto.build/Objects-normal/x86_64/BCrypt.o : /Users/Yowa/WorkSpace/Pokedex/Packages/Turnstile-1.0.3/Sources/TurnstileCrypto/BCrypt.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Turnstile-1.0.3/Sources/TurnstileCrypto/Random.swift /Users/Yowa...
D
/* REQUIRED_ARGS: -betterC PERMUTE_ARGS: */ void test(int ij) { assert(ij); #line 100 "anotherfile" assert(ij,"it is not zero"); } /*******************************************/ // https://issues.dlang.org/show_bug.cgi?id=17843 struct S { double d = 0.0; int[] x; } /*****************************...
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
a native or inhabitant of Taiwan any of the forms of Chinese spoken in Fukien province of or relating to or characteristic of the island republic on Taiwan or its residents or their language
D
/** * Windows API header module * * Translated from MinGW Windows headers * * Authors: Stewart Gordon * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_winnetwk.d) */ module core.sys.windows.winnetwk; version (Windows): version (ANSI) {} e...
D
module android.java.android.hardware.biometrics.BiometricPrompt_CryptoObject_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import1 = android.java.javax.crypto.Cipher_d_interface; import import2 = an...
D
import vibe.d, std.algorithm, std.datetime, std.exception, std.file, std.path, std.process, std.range; import core.stdc.errno, core.sys.posix.fcntl, core.sys.posix.unistd, core.sys.posix.signal : SIGINT, SIGKILL; shared static this() { string bindAddress = "127.0.0.1"; getOption("bindAddress|bind", &bindAddres...
D
module modes.latency; import core.stdc.stdio : puts, printf, FILE, fopen, fseek, ftell, fread, SEEK_END, SEEK_SET; import ddcput, os.io, mm, stopwatch, cpuid, misc; __gshared: extern (C): /* * They're not imported (e.g. import binaries) because I don't feel like * messing with that. */ version (X86) { version ...
D
United States minimalist painter (born in 1936)
D
import std.stdio, std.conv, std.array, std.string, std.algorithm, std.container, std.range, core.stdc.stdlib, std.math, std.typecons; T[][] combinations(T)(T[] s, in int m) { if (!m) return [[]]; if (s.empty) return []; return s[1 .. $].combinations(m - 1).map!(x => s[0] ~ x).array ~ s[1 .. $].combinations(m); } ...
D
/Users/junanqu/Desktop/SPEED_Interven/DerivedData/SPEED_Interven/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/MapboxCoreNavigation.build/Objects-normal/x86_64/RouteOptions.o : /Users/junanqu/Desktop/SPEED_Interven/Pods/MapboxCoreNavigation/MapboxCoreNavigation/UIDevice.swift /Users/junanqu/Desktop/SPEED...
D
struct S { } // S has postblit or destructor S s; // default construction of s S t = s; // t is copy-constructed from s unittest { t = s; // t is assigned from s t.opAssign(s); } ref S opAssign(S s) { S tmp = this; // bitcopy this into tmp this = s; // bitcopy s into this tmp.__d...
D
// Written in the D programming language. module wrapper.sodium.crypto_auth; import wrapper.sodium.core; // assure sodium got initialized public import deimos.sodium.crypto_auth : crypto_auth_BYTES, crypto_auth_bytes, crypto_auth_KEYBYTES, ...
D
/* * main.d * * This file implements the main routines for the Linux system. * This file is the entry point for a Linux application. * * Author: Dave Wilkinson * */ module platform.unix.main; import platform.unix.common; import platform.application; import scaffold.console; import scaffold.directory; import...
D
/** * A scope as defined by curly braces `{}`. * * Not to be confused with the `scope` storage class. * * Copyright: Copyright (C) 1999-2022 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://www.boost.org/LICENSE_...
D
/** * Most of the logic to implement scoped pointers and scoped references is here. * * Copyright: Copyright (C) 1999-2020 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, Boost License...
D
module src.ray; import src.vector; struct ray { this( ref const(ray) r ) { o = r.o; d = r.d.normal; } this( ref vector a, ref vector b ) { o = a; d = b.normal; } this( ref const(vector) a, ref const(vector) b ) { o = a; d = b.normal; ...
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 gdrive.models.channel; import std.json; import std.datetime : SysTime; import common.common; import vibe.data.json : optional; public struct Channel { /** A bool value to indicate whether payload is wanted. Optional.*/ private static const string PAYLOAD = "payload"; @optional bool _payload; mixin(GetterSe...
D
/// Extensible Sieve of Eratosthenes. struct Prime { uint[] a = [2]; private void grow() pure nothrow @safe { immutable p0 = a[$ - 1] + 1; auto b = new bool[p0]; foreach (immutable di; a) { immutable uint i0 = p0 / di * di; uint i = (i0 < p0) ? i0 + di - p0 : i0...
D
unittest { import unit_threaded: shouldThrowWithMessage; import nogc: NoGcException; fun.shouldThrowWithMessage!NoGcException("why hello there"); } void fun() { import nogc: enforce; enforce(false, "why hello there"); } void main() {}
D
/Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationDelegate.o : /Users/hanykaram/Desktop/MVP/Pods/NVActivityIndicatorView/Sources/Base/Animation...
D
module ext.core.plugin; import purr.io; import purr.base; import purr.dynamic; import purr.plugin.plugin; import purr.plugin.plugins; import ext.core.lib.io; import ext.core.lib.sys; import ext.core.lib.str; import ext.core.lib.arr; import ext.core.lib.tab; import ext.core.lib.math; shared static this() { thisPlu...
D
/Users/l.b.do.nascimento/GITHUB/Common/.build/x86_64-apple-macosx/debug/Common.build/UIImageView+Cache.swift.o : /Users/l.b.do.nascimento/GITHUB/Common/Common/Core/LayoutKit/LayoutViewConstraintSafeArea.swift /Users/l.b.do.nascimento/GITHUB/Common/Common/Core/TableFactory/DataSource.swift /Users/l.b.do.nascimento/GITHU...
D
/// optionally configure qcheck module qcheck.config; import std.bitmanip; /// struct Config { enum Ctors { Any, DefaultOnly, } Ctors ctors; /// restrict usage of constructors bool randomizeFields = true; /// random initialize test data bool keepGoing; /// continue on test error size_t maxSuccess...
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 Colours; import allegro5.allegro; auto black() { return al_map_rgb(0,0,0); } auto white() { return al_map_rgb(255,255,255); } //I've tuned this green against the grass sprites. auto green() { return al_map_rgb(91,169,76); }
D
/home/andy/source/rust/learn_rust/learn_htype2/target/debug/deps/rand_hc-89a4e35b6c7b70ff.rmeta: /home/andy/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_hc-0.1.0/src/lib.rs /home/andy/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_hc-0.1.0/src/hc128.rs /home/andy/source/rust/learn_rust/...
D
/* REQUIRED_ARGS: -preview=dip1000 TEST_OUTPUT: --- fail_compilation/test16589.d(26): Error: returning `&this.data` escapes a reference to parameter `this`, perhaps annotate with `return` fail_compilation/test16589.d(31): Error: returning `&this` escapes a reference to parameter `this`, perhaps annotate with `return` f...
D
/** winver.d Converted from 'winver.h'. Version: V7.0 Authors: Koji Kishita */ module c.windows.winver; import c.windows.windef; extern(C){ export extern(Windows){ DWORD VerFindFileA(DWORD uFlags, LPCSTR szFileName, LPCSTR szWinDir, LPCSTR szAppDir, LPSTR szCurDir, PUINT lpuCurDirLen, LPSTR szDestDir, PUINT lpu...
D
/// 二分探索を行う関数 /// 渡す関数は「左側に入る条件」 /// 返り値は「境界の左側の index 」 /// 空配列を渡した場合、全て右側に入る場合は -1 を返す /// 全て左側に入る場合は配列の最後の要素の添字を返す template bsearch(alias fun) { import std.functional: unaryFun; alias f = unaryFun!fun; int bsearch(T)(T[] arr) { if (arr.empty) return -1; if (!f(arr[0])) return -1; ...
D
/* Copyright © 2019 Clipsey & Anego Studios Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following dis...
D
import std.stdio; import std.string; import std.conv; import std.algorithm; import std.range; import std.traits; import std.math; import std.conv; void main() { import std.bigint; auto ip = readAs!(BigInt[]); auto A = ip[0], B = ip[1], C = ip[2]; ((A * B * C) % BigInt(1000000007)).writeln; } // ==================...
D
module schemed.parser; import pegged.grammar; import schemed.object; mixin(grammar(` LispParser: Body < (Value / Comment)* Comment <: ';' (!endOfLine .)* endOfLine Value < Number / True / False / Atom / String / DottedList / SExpr / QuotedValue QuotedValue <- quote Value SExpr < :'(' List :')'...
D
/* EXTRA_SOURCES: extra-files/header2.d REQUIRED_ARGS: -o- -H -Hf${RESULTS_DIR}/compilable/testheader2.di PERMUTE_ARGS: OUTPUT_FILES: ${RESULTS_DIR}/compilable/testheader2.di TEST_OUTPUT_FILE: extra-files/header2.di */ void main() {}
D
// **************************** // Nahkampf - AI Demon (6) // **************************** /* CONST INT MOVE_RUN = 1; // Gegner in meinem Fokus + steht wer dazwischen? (G) CONST INT MOVE_JUMPBACK = 3; // löst t_ParadeJumpB aus (Attacke wird nur pariert, wenn man schnell genug aus der W-Reichweite kommt! CONST INT...
D
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/Validation.build/Validator.swift.o : /Users/mu/Hello/.build/checkouts/validation/Sources/Validation/Validatable.swift /Users/mu/Hello/.build/checkouts/validation/Sources/Validation/ValidatorType.swift /Users/mu/Hello/.build/checkouts/validation/Sources/Validation/Validat...
D
/******************************************************************************* * Copyright (c) 2000, 2009 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
/Users/alejandroaas/Documents/CMPSC475A/CampusWalk/Build/Intermediates.noindex/CampusWalk.build/Debug-iphonesimulator/CampusWalk.build/Objects-normal/x86_64/BuldingsTableViewController.o : /Users/alejandroaas/Documents/CMPSC475A/CampusWalk/CampusWalk/AppDelegate.swift /Users/alejandroaas/Documents/CMPSC475A/CampusWalk/...
D
/Users/vince.yu/Desktop/iOSProject/LearnSwift_AppCoda/FoodPin/build/FoodPin.build/Debug-iphoneos/FoodPin.build/Objects-normal/arm64/RestaurantTableViewCell.o : /Users/vince.yu/Desktop/iOSProject/LearnSwift_AppCoda/FoodPin/FoodPin/Restaurant.swift /Users/vince.yu/Desktop/iOSProject/LearnSwift_AppCoda/FoodPin/FoodPin/Res...
D
Generated_Code/Cpu_c.obj: \ C:/Users/LPerezBustos/Downloads/P2_1210764_1010545_MPU/Project_Headers/../Generated_Code/Cpu.c \ C:/Users/LPerezBustos/Downloads/P2_1210764_1010545_MPU/Generated_Code/AS1.h \ C:/Users/LPerezBustos/Downloads/P2_1210764_1010545_MPU/Generated_Code/Cpu.h \ C:/Users/LPerezBustos/Downloa...
D
/** * This module defines Pebble's Dictionary types, and operations on them. */ module pebble.dictionary; import pebble.tuple; @nogc: nothrow: /// Return values for dictionary write/conversion functions. enum DictionaryResult { /// The operation returned successfully ok = 0, /// There was not enough ba...
D
a decorated bier on which a coffin rests in state during a funeral
D
module dcv.multiview.stereo; public { import dcv.multiview.stereo.matching; }
D
/** * DDBC - D DataBase Connector - abstraction layer for RDBMS access, with interface similar to JDBC. * * Source file ddbc/drivers/pgsqlddbc.d. * * DDBC library attempts to provide implementation independent interface to different databases. * * Set of supported RDBMSs can be extended by writing Drivers for...
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Fluent.build/Relations/Children.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/fluent/Sources/...
D
/* -------------------- CZ CHANGELOG -------------------- */ /* v1.01: (2x) TOPIC_ORcGREATWAR - TOPIC_ORCGREATWAR (cyrilice -> latinka) */ instance DIA_Lee_EXIT(C_Info) { npc = SLD_800_Lee; nr = 999; condition = DIA_Lee_EXIT_Condition; information = DIA_Lee_EXIT_Info; permanent = TRUE; description = Dialog...
D
/Users/xiaohongwei/projects/for_offer/target/release/deps/smallvec-303f2b39fcaddb82.rmeta: /Users/xiaohongwei/.cargo/registry/src/mirrors.ustc.edu.cn-b63e9dae659fc205/smallvec-0.6.13/lib.rs /Users/xiaohongwei/projects/for_offer/target/release/deps/smallvec-303f2b39fcaddb82.d: /Users/xiaohongwei/.cargo/registry/src/mir...
D
// This source code is in the public domain. // ComboBoxText example #3 - ComboxBoxText with an Entry import std.stdio; import gtk.MainWindow; import gtk.Main; import gtk.Box; import gtk.Widget; import gtk.ComboBoxText; import gtk.Entry; // because we have an Entry in this ComboBoxText import gtk.Bin; // needed for ...
D
module soup.Multipart; private import glib.ConstructionException; private import glib.Str; private import gobject.ObjectG; private import soup.Buffer; private import soup.MessageBody; private import soup.MessageHeaders; private import soup.c.functions; public import soup.c.types; /** * Represents a multipart HTTP ...
D
module org.serviio.library.local.service.SearchService; import java.lang; import java.util.List; import org.serviio.library.entities.Image; import org.serviio.library.entities.MusicTrack; import org.serviio.library.entities.OnlineRepository; import org.serviio.library.entities.Repository; import org.serviio.library.en...
D
import data.color; import data.vector; class VOctree { private VOctreeNode root_; private Vector size_; this(Vector size, VOctreeNode root = new VOctreeNode()) { this.size_ = size; this.root_ = root; } @property public VOctreeNode root() { return this.root_; } @property pu...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1999-2019 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
/* ---------------------------------------------------------------------------- * 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
/Users/azimin/Downloads/Hello2/.build/debug/Console.build/Bar/Progress/Console+ProgressBar.swift.o : /Users/azimin/Downloads/Hello2/.build/checkouts/console.git--2431895819212044213/Sources/Console/Terminal/String+ANSI.swift /Users/azimin/Downloads/Hello2/.build/checkouts/console.git--2431895819212044213/Sources/Consol...
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
/** Postgres authentication interface and basic implementations. Copyright: Boris-Barboris 2017-2020. License: MIT Authors: Boris-Barboris */ module dpeq.authentication; import std.conv: to; import std.exception: enforce; import dpeq.constants; import dpeq.exceptions; import dpeq.messages; import dpeq.serialization...
D
/Users/martinjaroszewiczCOSMOS/Desktop/2014_05-New-Vocoder/Pitch²/DerivedData/PitchSquared/Build/Intermediates/PitchSquared.build/Debug-iphonesimulator/PitchSquared.build/Objects-normal/i386/GameModeViewController.o : /Users/martinjaroszewiczCOSMOS/Desktop/2014_05-New-Vocoder/Pitch²/Pitch²/ScoreTableViewController.swif...
D
/Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/target/release/deps/libctor-2ef9b7b301d698df.dylib: /Users/pacmac/.cargo/registry/src/github.com-1ecc6299db9ec823/ctor-0.1.20/src/lib.rs /Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/target/r...
D
/+ node + (c) 2007 John Ohno + Licensed under the GNU LGPL + Part of Project XANA +/ import std.stdint; import trans; import doc; import xu_db; private import Memory; import enfilade; import kernel_assert; /+ struct XuHeap { uint size=0; Heap heap; uint start=0; void allocate(uint size) { heap.allocate(size);...
D
module served.filereader; import core.thread; import core.sync.mutex; import std.algorithm; import std.stdio; class StdFileReader : FileReader { this(File file) { super(); this.file = file; } override void stop() { file.close(); } override void run() { ubyte[1] buffer; while (!file.eof) { au...
D
unittest { assert(isPalindrome("racecar")); assert(isPalindrome("bob")); assert(!isPalindrome("alice")); }
D
module qrcode; public import qrcode.common.bitarray; public import qrcode.common.bitmatrix; public import qrcode.common.bitutils; public import qrcode.common.characterseteci; public import qrcode.common.ecblocks; public import qrcode.common.errorcorrectionlevel; public import qrcode.common.formatinformation; public im...
D
/** * The entry point for CTFE. * * Specification: ($LINK2 https://dlang.org/spec/function.html#interpretation, Compile Time Function Execution (CTFE)) * * Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * Li...
D
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/FluentSQL.build/SQL+SchemaSupporting.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/fluent.git-6251908308727715749/Sources/FluentSQL/FluentSQLSchema.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/fluent.git-62519083087277...
D
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxRelay.build/Objects-normal/x86_64/Utils.o : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxRelay/RxRelay/Observable+Bind.swift /Users/nalousnguyen/Documents/Fin...
D
instance RuneSword_Sleep(Npc_Default) { /* var string name; var string slot;//vfxname var string spawnPoint;//sfxname var int id; var int flags;//chargecost var int voice;//damage var int npctype;//damagetype var int lp;//runetype 0-NEUTRAL 1-DARK 2-FIRE 3-LIGHT 4-WATER 5-WIND */ // Rune is no longer... ...
D
/* * Copyright (C) 2016 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 app...
D
/home/syx/SYXrepo/vacation_homework/percolation/target/debug/deps/scopeguard-b143db8ede213a5e.rmeta: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/scopeguard-0.3.3/src/lib.rs /home/syx/SYXrepo/vacation_homework/percolation/target/debug/deps/scopeguard-b143db8ede213a5e.d: /home/syx/.cargo/registry/...
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 engine.render.commands.shutdown; struct SRenderShutdown {}
D
/Users/hernaniruegasvillarreal/Documents/github/swift/CoreData-AdvancedWebContent-JsonData-Webviews/Whats-The-Weather-APIVersion/Build/Intermediates/API\ Demo.build/Debug-iphonesimulator/API\ Demo.build/Objects-normal/x86_64/ViewController.o : /Users/hernaniruegasvillarreal/Documents/github/swift/CoreData-AdvancedWebCo...
D
/Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationLineScalePulseOut.o : /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/NVActivityIndi...
D
void main() { runSolver(); } void problem() { auto S = scan; auto solve() { enum CHOKUDAI = "chokudai"; enum long MOD = 10L ^^ 9 + 7; auto cs = new long[][](CHOKUDAI.length, S.length + 1); foreach(i, c; S) { foreach(xi, z; "chokudai") { if (xi == 0) { cs[xi][i + 1] = cs[x...
D
located, suited for, or taking place within a building within doors
D
/Users/lukenewman/Developer/Plutonium/PlayToPay/Build/Intermediates/PlayToPay.build/Debug-iphoneos/PlayToPay.build/Objects-normal/arm64/BustItViewController.o : /Users/lukenewman/Developer/Plutonium/PlayToPay/PlayToPay/SwitchUp.swift /Users/lukenewman/Developer/Plutonium/PlayToPay/PlayToPay/BustIt.swift /Users/lukenewm...
D
module android.java.android.provider.CalendarContract_Colors; public import android.java.android.provider.CalendarContract_Colors_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!CalendarContract_Colors; import import0 = android.java.java.lang.Class;
D
/Users/mli/Desktop/Develope/Swift/LBE_Demo/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/BubbleChartView.o : /Users/mli/Desktop/Develope/Swift/LBE_Demo/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/mli/Desktop/Develope/Swift/LBE_Demo/Pods/Charts/Sour...
D
/Users/mac/Documents/Personal/Rust/react-rust-tutorial/websocket/target/debug/deps/httpdate-aa243f0269b59870.rmeta: /Users/mac/.cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-0.3.2/src/lib.rs /Users/mac/.cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-0.3.2/src/httpdate.rs /Users/mac/Documents/Persona...
D
// REQUIRED_ARGS: -o- /* TEST_OUTPUT: --- fail_compilation/diag13787.d(12): Error: cannot slice function pointer `& main` fail_compilation/diag13787.d(13): Error: cannot index function pointer `& main` --- */ void main() { auto a = (&main)[0..1]; auto x = (&main)[0]; }
D
the cardinal number that is the sum of eighteen and one being one more than eighteen
D
build/app.dill.track.dill: /home/shivani7n7/AndroidStudioProjects/flash-chat-flutter/lib/main.dart /home/shivani7n7/Downloads/flutter/flutter/packages/flutter/lib/material.dart /home/shivani7n7/AndroidStudioProjects/flash-chat-flutter/lib/screens/welcome_screen.dart /home/shivani7n7/AndroidStudioProjects/flash-chat-flu...
D
func void B_AssessQuietSound() { if(!Hlp_IsValidNpc(other)) { return; }; if(Npc_GetHeightToNpc(self,other) > PERC_DIST_HEIGHT) { return; }; if((Wld_GetPlayerPortalGuild() >= GIL_NONE) && (Npc_GetHeightToNpc(self,other) > PERC_DIST_INDOOR_HEIGHT)) { return; }; if(B_AssessEnterRoom()) { return; }; i...
D
module android.java.java.util.ConcurrentModificationException; public import android.java.java.util.ConcurrentModificationException_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ConcurrentModificationException; import import4 = android.java.java.lang.Class; import import3 = android.java.java...
D
/* TEST_OUTPUT: --- fail_compilation/fail247.d-mixin-9(9): Error: identifier expected, not EOF fail_compilation/fail247.d-mixin-9(9): Error: ';' expected after mixin --- */ mixin(`mixin`);
D
/** * Copyright: Copyright (c) 2011-2012 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: Apr 3, 2011 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module mambo.arguments.Arguments; import std.conv; import tango.util.container.Ha...
D
feel remorse for feel sad about the loss or absence of decline formally or politely express with regret
D
instance DIA_Halvor_EXIT(C_Info) { npc = VLK_469_Halvor; nr = 999; condition = DIA_Halvor_EXIT_Condition; information = DIA_Halvor_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Halvor_EXIT_Condition() { return TRUE; }; func void DIA_Halvor_EXIT_Info() { B_EquipTr...
D
/Users/freebird/Desktop/Work/wokinprogress/Bump/Bump/build/Pods.build/Debug-iphonesimulator/Gemini.build/Objects-normal/x86_64/EasingFunction.o : /Users/freebird/Desktop/Work/wokinprogress/Bump/Bump/Pods/Gemini/Gemini/CubeAnimatable.swift /Users/freebird/Desktop/Work/wokinprogress/Bump/Bump/Pods/Gemini/Gemini/UIAppeara...
D
.build_1i2o2_lin33_48k_usbctl_farenddsp/_l_dsp/src/dsp_tables.c.d .build_1i2o2_lin33_48k_usbctl_farenddsp/_l_dsp/src/dsp_tables.c.o .build_1i2o2_lin33_48k_usbctl_farenddsp/_l_dsp/src/dsp_tables.c.pca.xml: C:/Users/user/workspace/lib_dsp/src/dsp_tables.c
D
/Users/kenjou/Documents/SimpleToDo/SingleTodo/Build/Intermediates/SimpleTodo.build/Debug-iphonesimulator/SimpleTodo.build/Objects-normal/x86_64/Log+CoreDataProperties.o : /Users/kenjou/Documents/SimpleToDo/SingleTodo/SimpleTodo/PurchaseViewController.swift /Users/kenjou/Documents/SimpleToDo/SingleTodo/SimpleTodo/ColorV...
D