code
stringlengths
3
10M
language
stringclasses
31 values
module org.serviio.upnp.service.contentdirectory.command.video.ListSeasonsForSeriesCommand; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Map : Entry; import java.util.Set; import org.serviio.library.entities.AccessGroup; im...
D
/* * ti_double.d * * This module implements the TypeInfo for the double type. * */ module dyndrt.typeinfos.ti_double; int isnan(real e) { ushort* pe = cast(ushort *)&e; ulong* ps = cast(ulong *)&e; return (pe[4] & 0x7FFF) == 0x7FFF && *ps & 0x7FFFFFFFFFFFFFFF; } class TypeInfo_d : TypeInfo { ...
D
// SYNTAX TEST "Packages/D/D.sublime-syntax" module foo.a.b1_3; // <- meta.namespace.d keyword.declaration.namespace.d // <- meta.namespace.d keyword.declaration.namespace.d //^^^^ keyword.declaration.namespace.d //^^^^^^^^^^^^^^^^ meta.namespace.d // ^^^^^^^^^^ meta.path.d // ^^^ variable.other.d // ^...
D
import std.stdio; import std.file;// : readText; import std.getopt; import std.path : stripExtension; import tokenize; import eval; // import std.utf; // import state; void main(string[] args) { string filename; bool tokFile; auto info = getopt(args, std.getopt.config.bundling, "f|f...
D
/* REQUIRED_ARGS: -H -Hd${RESULTS_DIR}/compilable PERMUTE_ARGS: -d -dw OUTPUT_FILES: ${RESULTS_DIR}/compilable/test7754.di TEST_OUTPUT: --- === ${RESULTS_DIR}/compilable/test7754.di // D import file generated from 'compilable/test7754.d' struct Foo(T) { shared static this() { } static this() { } } --- */ struct...
D
/** * This is a low-level messaging API upon which more structured or restrictive * APIs may be built. The general idea is that every messageable entity is * represented by a common handle type (called a Cid in this implementation), * which allows messages to be sent to in-process threads, on-host processes, * an...
D
/******************************************************************************* * Copyright (c) 2000, 2005 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 PIR_1390_Addon_InExtremo_DrPymonte(Npc_Default) { name[0] = "Паймон"; npcType = npctype_main; guild = GIL_VLK; voice = 12; id = 1390; flags = 0; aivar[AIV_DropDeadAndKill] = TRUE; aivar[AIV_ToughGuy] = TRUE; aivar[AIV_IGNORE_Murder] = TRUE; aivar[AIV_IGNORE_Theft] = TRUE; aivar[AIV_IGNORE_Sheepkill...
D
int f(int i) { if (i == 0) return 1; return i * f(i - 1); } pragma(msg, 120);
D
module arrow.Int64Array; private import arrow.Buffer; private import arrow.NumericArray; private import arrow.c.functions; public import arrow.c.types; private import glib.ConstructionException; private import glib.ErrorG; private import glib.GException; private import gobject.ObjectG; /** */ public class Int64Arra...
D
import std.file; import std.stdio; import std.algorithm; import std.path; import std.array; import std.range; import std.conv; int main(string[] args) { if (args.length < 2) { writeln("Usage: " ~ args[0] ~ " <folder>"); return 0; } enum header = "%% "; if (stdin.size == 0) { ...
D
/** * Authors: Frank Benoit <keinfarbton@googlemail.com> */ module java.io.InputStream; import java.lang.all; public abstract class InputStream { public this (){ } public abstract int read(); public int read( byte[] b ){ foreach( uint idx, ref byte val; b ){ int c = read(); ...
D
module cybuf; import std.algorithm; import std.range; import std.stdio; struct Cybuf(T){ alias Handler = void delegate(T value); private T[] buf; private size_t place; private size_t size; private Handler handler; @disable public this(); public this(size_t length, Handler handler = n...
D
[cc]mc | .hd at$swt "Subsystem interlude to Primos ATCH$$" 08/30/84 [cc]mc subroutine at$swt (name, namel, ldisk, passwd, key, code) character name (MAXPATH) packed_char passwd (3) integer namel, ldisk, key, code .sp Library: vswtlb (standard Subsystem library) .fs 'At$swt' is the Subsystem interlude to the Primos ATC...
D
/** Provide a 2^N-bit integer type. Guaranteed to never allocate and expected binary layout Recursive implementation with very slow division. <b>Supports all operations that builtin integers support.</b> Bugs: it's not sure if the unsigned operand would take precedence in a comparison/division. TODO: add ...
D
a learner who is enrolled in an educational institution a learned person (especially in the humanities
D
/Users/Dominik/Documents/Programmieren/Libraries/DYAlertController/DYAlertControllerExample3/Build/Intermediates.noindex/DYAlertControllerExample3.build/Debug-iphonesimulator/DYAlertControllerExample3.build/Objects-normal/x86_64/AppDelegate.o : /Users/Dominik/Documents/Programmieren/Libraries/DYAlertController/DYAlertC...
D
module aura.controllers.elasticsearch; import vibe.http.router; import vibe.web.web; import aura.data.json; import elasticsearch.parameters; enum pagination = before!paginationPred("_pagination"); struct PaginationMeta { import std.math; int page = 1; int perPage = 20; int pages; // Returns the result offs...
D
// REQUIRED_ARGS: -de /* TEST_OUTPUT: --- fail_compilation/b19691.d(12): Error: forward reference to template `this` --- */ // https://issues.dlang.org/show_bug.cgi?id=19691 module b19691; struct S1 { this(T...)(T) { S2(42, ""); } } struct S2 { this(int a, string) {} this(int a, S1 s = null) {...
D
/* * This file is part of gtkD. * * gtkD is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * gtkD is distribut...
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, B...
D
module dwt.ole.all; public import dwt.ole.win32.OLE; public import dwt.ole.win32.OleAutomation; public import dwt.ole.win32.OleClientSite; public import dwt.ole.win32.OleControlSite; public import dwt.ole.win32.OleEvent; public import dwt.ole.win32.OleEventSink; public import dwt.ole.win32.OleEventTable; public import...
D
points.d ! name of output file containing points 0.26234526 ! random number 500 ! number of points in scatterer (subvolume 1) 2 ! type of scatterer (subvolume 1) 20 ! dimensions (subvolume 1) 100 ! dimensions (...
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/lidiomarfernandomachado/dev/swift/f1Project/DerivedData/f1Project/Build/Intermediates.noindex/f1Project.build/Debug-iphonesimulator/f1Project.build/Objects-normal/x86_64/DriverStandingsViewController.o : /Users/lidiomarfernandomachado/dev/swift/f1Project/f1Project/AppDelegate.swift /Users/lidiomarfernandomachado...
D
/Users/apple/Desktop/iOS/Buddy/build/Buddy.build/Debug-iphonesimulator/Buddy.build/Objects-normal/x86_64/AcceptedRequestsTableViewCell.o : /Users/apple/Desktop/iOS/Buddy/Buddy/DirectionViewController.swift /Users/apple/Desktop/iOS/Buddy/Buddy/BuddiesWithHealthGoingTableViewController.swift /Users/apple/Desktop/iOS/Budd...
D
/* Copyright (c) 2014 Martin Cejp 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, execu...
D
/home/julio/projects/coding/learn-rust/gtk-rs/gtk-rs-app/target/release/build/gio-sys-b290f3a8dda759fc/build_script_build-b290f3a8dda759fc: /home/julio/.cargo/registry/src/github.com-1ecc6299db9ec823/gio-sys-0.10.1/build.rs /home/julio/projects/coding/learn-rust/gtk-rs/gtk-rs-app/target/release/build/gio-sys-b290f3a8d...
D
/+ Copyright (c) 2005-2006 Lars Ivar Igesund 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, modi...
D
Long: aws-sigv4 Arg: <provider1[:provider2]> Help: provides AWS V4 signature authentication Category: auth http Added: 7.75.0 --- provides AWS V4 signature authentication on HTTPS header: The provider argument is a string that is used by the algorithm when creating outgoing authentication headers.
D
a terrorist organization that seeks to overthrow the government dominated by Tutsi and to institute Hutu control again located at a great distance in time or space or degree being of a considerable distance or length being the animal or vehicle on the right or being on the right side of an animal or vehicle beyond a no...
D
// Written in the D programming language. /** * Builtin SIMD intrinsics * * Source: $(DRUNTIMESRC core/_simd.d) * * Copyright: Copyright Digital Mars 2012. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: $(WEB digitalmars.com, Walter Bright), */ module core.simd...
D
/Users/luoguochun/privt/proj/coding-blog/.demo/rust-lib/mini-redis/target/debug/deps/bitflags-45e083fbab0f3738.rmeta: /Users/luoguochun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bitflags-1.2.1/src/lib.rs /Users/luoguochun/privt/proj/coding-blog/.demo/rust-lib/mini-redis/target/debug/deps/bitflags-45e083...
D
// PERMUTE_ARGS: extern(C) int printf(const char*, ...); int testswitch(string h) { int x; switch (h) { case "abc": printf("abc\n"); x = 4; break; case "foo": printf("foo\n"); x = 1; break; case "bar": printf("bar\n"); x = 2; break; default: printf("d...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010-2011 by Rainer Schuetze, All Rights Reserved // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICE...
D
module demu.emulator.machine; import demu.rommanager.romdatabase; import demu.rommanager.game; import demu.emulator.display; import demu.emulator.executor; import demu.emulator.parts.part; import demu.emulator.parts.processor; import demu.emulator.debugger; import std.algorithm; import std.stdio; vers...
D
.hd moot "teleconference manager" 01/15/83 moot [-a <user>] .ds 'Moot' is a teleconference management program. It allows users to send messages to one another or to a group of users participating in a "conference". Messages may then be received automatically and reviewed at will. Authorized users may create and destroy...
D
/Users/lizw/Downloads/shoesleuth/ShoeSleuth/build/VisionSample.build/Debug-iphonesimulator/VisionSample.build/Objects-normal/x86_64/ImageView.o : /Users/lizw/Downloads/shoesleuth/ShoeSleuth/VisionSample/Models/GalleryImage.swift /Users/lizw/Downloads/shoesleuth/ShoeSleuth/VisionSample/AppDelegate.swift /Users/lizw/Down...
D
/** * D header file for C99. * * Copyright: Copyright Digital Mars 2000 - 2009. * License: Distributed under the * <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License 1.0</a>. * (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) * Authors: Walter Bright, H...
D
// BulletD - a D binding for the Bullet Physics engine // written in the D programming language // // Copyright: Ben Merritt 2012 - 2013, // MeinMein 2013 - 2014. // License: Boost License 1.0 // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.tx...
D
import std.stdio; import noted.textarea; import noted.config; import noted.menubox; import gtk.MainWindow; import gtk.Main; import gtk.Widget; import gtk.ScrolledWindow; void main(string[] args) { Main.init(args); auto notedWindow = new MainWindow(windowName); notedWindow.addOnDestroy(delegate void(Widget w) {Ma...
D
/Users/Amna/Desktop/hwrust copy/code/target/debug/build/num-rational-4fb5a3a0cba5e9eb/build_script_build-4fb5a3a0cba5e9eb: /Users/Amna/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.3.2/build.rs /Users/Amna/Desktop/hwrust copy/code/target/debug/build/num-rational-4fb5a3a0cba5e9eb/build_script_build-4fb...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; alias A = Tuple!(long, "a", long, "b"); void main() { auto N = readln.chomp.to!int; A[] as; foreach (_; 0..N) { auto ab = readln.split.to!(long[]); as ~= A(ab[0]...
D
a salt or ester of pyrophosphoric acid
D
import libtest; int main(string[] args) { print_hello(); return 0; }
D
/Users/hazuki/Desktop/13/la/lifeistech/Gacha/DerivedData/Gacha/Build/Intermediates.noindex/Gacha.build/Debug-iphonesimulator/Gacha.build/Objects-normal/x86_64/SceneDelegate.o : /Users/hazuki/Desktop/13/la/lifeistech/Gacha/Gacha/SceneDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/Gacha/Gacha/AppDelegate.swift /Us...
D
module godot.camera.all; public import godot.camera, godot.arvrcamera, godot.interpolatedcamera;
D
module std.experimental.allocator.building_blocks.bitmapped_block; import std.experimental.allocator.common; import std.experimental.allocator.building_blocks.null_allocator; /** $(D BitmappedBlock) implements a simple heap consisting of one contiguous area of memory organized in blocks, each of size $(D theBlockSiz...
D
// Written in the D programming language. /** This module defines the notion of a range. Ranges generalize the concept of arrays, lists, or anything that involves sequential access. This abstraction enables the same set of algorithms (see $(MREF std, algorithm)) to be used with a vast variety of different concrete typ...
D
/******************************************************************************* Fiber-based client socket connection holding request handler instances copyright: Copyright (c) 2011-2017 dunnhumby Germany GmbH. All rights reserved License: Boost Software License Version 1.0. See LICENSE.txt ...
D
/Users/christianburdea/Documents/Studium/Master/Masterarbeit/vsp_rl_impl/vsp_custom_env/target/release/build/inventory-1b177983f8c65189/build_script_build-1b177983f8c65189: /Users/christianburdea/.cargo/registry/src/github.com-1ecc6299db9ec823/inventory-0.1.10/build.rs /Users/christianburdea/Documents/Studium/Master/M...
D
/Users/admin/Desktop/CuckooTest/Pods/Cuckoo/Generator/.build/debug/Stencil.build/IfTag.swift.o : /Users/admin/Desktop/CuckooTest/Pods/Cuckoo/Generator/Packages/Stencil-0.8.0/Sources/Context.swift /Users/admin/Desktop/CuckooTest/Pods/Cuckoo/Generator/Packages/Stencil-0.8.0/Sources/Environment.swift /Users/admin/Desktop/...
D
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.build/KeyedCache/KeyedCacheSupporting.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/database-kit/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/panartem/...
D
module xf.omg.mesh.TangentSpaceCalc; private { import xf.omg.core.LinearAlgebra; import xf.omg.mesh.Mesh : OmgMesh = Mesh, vertexI, faceI, Face, HEdge; import xf.omg.mesh.Log; import xf.omg.geom.AABB; import xf.omg.geom.OCTree; } /** Controls vertex merging done for adjacency calculation. Ver...
D
import std.algorithm; import std.stdio; import std.string; import std.conv; import std.array; // Title // 右折を禁止されても大丈夫? // Description // 直進か左折のみで目的地に到達する方法を考える。 // 6マスx4マスの場合、何通りの道順があるかを求める。 int main(string[] args) { writeln(calculate(6, 4)); return 0; } int calculate(int x, int y) { assert(x > 0 ...
D
// Written in the D programming language. /** This module contains FileDialog implementation. Can show dialog for open / save. Synopsis: ---- import dlangui.dialogs.filedlg; UIString caption = "Open File"d; auto dlg = new FileDialog(caption, window, FileDialogFlag.Open); dlg.show(); ---- Copyright: Vadim Lopati...
D
// PERMUTE_ARGS: class C12543; static assert(C12543.sizeof == (void*).sizeof); static assert(C12543.alignof == (void*).sizeof); static assert(C12543.mangleof == "C11fwdref125436C12543"); /***************************************************/ // 13564 enum E14010; static assert(E14010.mangleof == "E11fwdref125436E1401...
D
instance MENU_OPT_CONTROLS(C_MENU_DEF) { backpic = MENU_BACK_PIC; items[1] = "MENU_ITEM_KEY_UP"; items[2] = "MENU_ITEM_KEY_DOWN"; items[3] = "MENU_ITEM_KEY_LEFT"; items[4] = "MENU_ITEM_KEY_RIGHT"; items[5] = "MENU_ITEM_KEY_STRAFE_LEFT"; items[6] = "MENU_ITEM_KEY_STRAFE_RIGHT"; items[7] = "MENU_ITEM_KEY_JUMPCLI...
D
/Users/davalcato/Desktop/FullScreenMediaBrowser/Build/Intermediates/SwiftMigration/FullScreenMediaBrowser/Intermediates.noindex/FullScreenMediaBrowser.build/Debug-iphonesimulator/FullScreenMediaBrowser.build/Objects-normal/x86_64/MediaItem.o : /Users/davalcato/Desktop/FullScreenMediaBrowser/FullScreenMediaBrowser/AppDe...
D
/** * A DHCP testing tool. * * License: * Boost Software License 1.0: * http://www.boost.org/LICENSE_1_0.txt * * Authors: * Vladimir Panteleev <vladimir@thecybershadow.net> */ module dhcptest; import core.thread; import std.algorithm; import std.array; import std.bitmanip; import std.conv; import std....
D
marked by continuous or uninterrupted extension in space or time or sequence not subdued or trained for service or use (of farmland) not plowed (especially of promises or contracts) not violated or disregarded not broken
D
import std.algorithm, std.conv, std.range; import jmodel; jBoard simpleBoard() { auto rows = 9, cols = 9, nc = 9; auto cands = (1 << nc) - 1; jHouse[] houses; foreach (r; rows.iota) { auto house = new jHouse(houses.length.to!int, "row", []); foreach (c; cols.iota) house.cells ~= r * cols + c; ...
D
/** * ... * * Copyright: Copyright Benjamin Thaut 2010 - 2011. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Benjamin Thaut, Sean Kelly * Source: $(DRUNTIMESRC core/sys/windows/_dbghelp_type...
D
E: c12, c71, c20, c60, c15, c34, c51, c58, c65, c24, c46, c3, c19, c37, c30, c42, c0, c28, c26, c47, c21, c61, c40, c7, c55, c43, c49, c8, c52, c5, c32, c9, c18, c68. p1(E,E) c12,c71 c65,c15 c65,c46 c12,c58 c61,c12 c58,c51 c32,c3 c12,c26 c26,c51 c3,c19 c60,c20 c15,c21 . p6(E,E) c20,c60 c51,c58 c51,c42 c71,c12 c19,c3 c...
D
/// Vulkan device module module gfx.vulkan.device; package: import core.time : Duration; import gfx.bindings.vulkan; import gfx.core.rc; import gfx.graal; import gfx.graal.cmd; import gfx.graal.device; import gfx.graal.image; import gfx.graal.memory; import gfx.graal.presentation; import gfx.graal.queue; import gfx...
D
module universal.extras.errors; import universal.core.product; import universal.core.coproduct; import universal.core.apply; import universal.meta; import std.typetuple; import std.typecons; import std.format; import std.conv; import std.array; /* For executing code in nothrow, multithreaded, or failsafe contexts */...
D
/** Arbitrary precision arithmetic ('bignum') for processors with no asm support * * All functions operate on arrays of uints, stored LSB first. * If there is a destination array, it will be the first parameter. * Currently, all of these functions are subject to change, and are * intended for internal use only. *...
D
/* REPL plan: easy movement to/from a real editor can edit a specific function repl is a different set of globals maybe ctrl+enter to execute vs insert another line write state to file read state from file state consists of all variables and source to functions Steal Ruby's [regex, capture] maybe */ ...
D
/Users/setiyadi/Projects/Xcode/CodeTest-303Software/Build/Intermediates/CodeTest-303Software.build/Debug-iphonesimulator/CodeTest-303Software.build/Objects-normal/x86_64/ListTableViewController.o : /Users/setiyadi/Projects/Xcode/CodeTest-303Software/CodeTest-303Software/Person.swift /Users/setiyadi/Projects/Xcode/CodeT...
D
bug (3) --- report a bug with system software 02/23/82 _U_s_a_g_e bug _D_e_s_c_r_i_p_t_i_o_n 'Bug' allows users to report any problems they may encounter with system commands or libraries. It cr...
D
/* * Hunt - a framework for web and console application based on Collie using Dlang development * * Copyright (C) 2015-2016 Shanghai Putao Technology Co., Ltd * * Developer: putao's Dlang team * * Licensed under the BSD License. * */ module application.controllers.index; import hunt.web.http; class IndexCo...
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
module ddata.jwt.sign; import std.format; import deimos.openssl.pem; import deimos.openssl.rsa; import deimos.openssl.hmac; import deimos.openssl.sha; import deimos.openssl.err; import ddata.common; import ddata.jwt.algorithm; // These functions are added to the bindings post version 2.0, but vibe-d seems to // imp...
D
/** * Copyright: Enalye * License: Zlib * Authors: Enalye */ module magia.render.font.truetype; import std.conv : to; import std.string : toStringz, fromStringz; import bindbc.sdl, bindbc.sdl.ttf; import magia.core; import magia.render.texture; import magia.render.font.font, magia.render.font.glyph; /// Font tha...
D
// Written in the D programming language. /** This module implements support for normalized integers. Authors: Manu Evans Copyright: Copyright (c) 2015-2019, Manu Evans. License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0) */ module wg.util.normint; import wg.util.traits : isSigned, isFloatingPoint; imp...
D
module dinu.loader.talkProcess; import dinu; __gshared: class TalkProcessLoader: ChoiceLoader { override void run(){ foreach(d; "/proc".dirContent){ if((getAttributes(d) & S_IRUSR) && d.isDir && (d ~ "/comm").exists && d.chompPrefix("/proc/").isNumeric){ add(new CommandTalkProcess(d.chompPrefix("/proc/...
D
/* File: LinkMap.d Originally written by Doug Lea and released into the public domain. Thanks for the assistance and support of Sun Microsystems Labs, Agorics Inc, Loral, and everyone contributing, testing, and using this code. History: Date Who What 24Sep95 dl@cs.oswego.edu C...
D
var int hero_2h_max_bonus; func void equip_2h_01() { if(Npc_IsPlayer(self)) { if((self.hitchance[NPC_TALENT_2H] + WAFFENBONUS_01) > 100) { HERO_2H_MAX_BONUS = 100 - self.hitchance[NPC_TALENT_2H]; b_addfightskill(self,NPC_TALENT_2H,HERO_2H_MAX_BONUS); b_meleeweaponchange(0,HERO_2H_MAX_BONUS,0); } el...
D
standard formulations uniformly found in certain types of legal documents or news stories thick plate iron used in the production of boilers
D
import DownloadApp; import Controller; int main(string[] args) { auto app = new DownloadApp(); return app.run(args); }
D
// Written in the D programming language. /** Authors: Kazuki Komatsu License: Kazuki Komatsu - NYSL */ module sdrconfig; import core.time; import std.typecons; import sdr; /** STEREOのL1の中間周波数。 CTFEable */ real f_if_STEREO_L1() @property { real n = 0b000000000111100; real r = 0b01010111110100111110; re...
D
module godot.core.rect2; import godot.core.defs; import godot.core.vector2, godot.core.transform2d; import std.algorithm.comparison; import std.algorithm.mutation : swap; struct Rect2 { @nogc nothrow: Vector2 pos; Vector2 size; this( real_t p_x, real_t p_y, real_t p_width, real_t p_height) { pos=Vector2(p...
D
import imports.fail356 : bar; int bar; // collides with selective import
D
/+ Copyright (c) 2005 Lars Ivar Igesund, J Duncan, Eric Anderton 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 t...
D
module mscorlib.System.Diagnostics.SymbolStore; // Keep D Symbols inside the __d struct to prevent symbol conflicts struct __d { import cstring : CString, CStringLiteral; static import clr; static import clrbridge; import clrbridge.global : globalClrBridge; alias ObjectArray = clrbridge.Ar...
D
// 0.113s vs 0.133s for core.internal.traits template anySatisfy(alias F, T...) { static if (T.length == 0) enum anySatisfy = false; else static if (F!(T[0])) enum anySatisfy = true; else static if (T.length > 1) { static if (F!(T[1])) enum anySatisfy = true; else static if (T.length > 2) { static i...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; void main() { auto cs = "13579".to!(dchar[]); auto S = readln.chomp.to!(char[]); do { int[char] map; char[] s; int i; foreach (ref c; S) { if (c !in map) { ...
D
module masters.ga.utils; import std.datetime; import std.stdio; import std.conv; import core.memory; import masters.ga.framework; class SingleSpecimenMutation(S): Mutation!S { override S[] mutate(S s) { return [ mutateOne(s) ]; } abstract S mutateOne(S s); } void inheritRandomGender(S: Specimen)(S chil...
D
/Users/nitisha/Documents/My_Task/DemoApplication/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/SessionManager.o : /Users/nitisha/Documents/My_Task/DemoApplication/Pods/Alamofire/Source/MultipartFormData.swift /Users/nitisha/Documents/My_Task/DemoApplication/Pods/Alamofire/So...
D
/++ License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: $(HTTP erdani.com, Andrei Alexandrescu), Ilya Yaroshenko +/ module glas.internal.memory; enum uint platformAlignment = double.alignof > real.alignof ? double.alignof : real.alignof; @nogc nothrow pragma(inline, true): @safe pure package bool...
D
/Users/ogorbachenko/projects/lisnr-point-sdk-ios-1.0.0/samples/Point-Sample/app/Build/Intermediates.noindex/Point-Sample.build/Debug-iphonesimulator/Point-Sample.build/Objects-normal/x86_64/MoveCloserToTerminal.o : /Users/ogorbachenko/projects/lisnr-point-sdk-ios-1.0.0/samples/Point-Sample/Point-Sample/ClientScreens/Tr...
D
module android.java.java.util.concurrent.locks.ReadWriteLock; public import android.java.java.util.concurrent.locks.ReadWriteLock_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ReadWriteLock; import import0 = android.java.java.util.concurrent.locks.Lock; import import1 = android.java.java.lan...
D
/Users/netnorimingconception/utils/GeoFence/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Cancelable.o : /Users/netnorimingconception/utils/GeoFence/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/netnorimingconception/utils/GeoFence/Pods/RxSwift/RxSwift/O...
D
/home/tim/Documents/projects/proj_euler/pr_1/target/release/build/rayon-core-97dcde0f761732b5/build_script_build-97dcde0f761732b5: /home/tim/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.0/build.rs /home/tim/Documents/projects/proj_euler/pr_1/target/release/build/rayon-core-97dcde0f761732b5/build_scri...
D
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/URLEncodedForm.build/Objects-normal/x86_64/URLEncodedFormDecoder.o : /Users/petercernak/vapor/TILApp/.build/checkouts/url-encoded-form.git--2196920833335892082/Sources/URLEncodedForm/Data/URLEncodedFormData.swift /Users/petercernak/vapor/TIL...
D
module UnrealScript.Engine.SkelControlLimb; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Core.UObject; import UnrealScript.Engine.SkelControlBase; extern(C++) interface SkelControlLimb : SkelControlBase { public extern(D): private static __gshared ScriptClass mStaticClass; @prop...
D
// EXTRA_OBJC_SOURCES: // REQUIRED_ARGS: -L-lobjc // This file verifies that Objective-C protocols are put in the correct segments // and sections in the binary. If not, functions from the Objective-C runtime // won't find the protocol data and the below functions will return `null`. import core.attribute : selector,...
D
void main() { import std.range : iota, take; import std.algorithm : equal; assert(equal(iota(51).take(20), iota(20))); }
D
/Users/natasilva/repositories/algoritmos/atividade-21/target/rls/debug/deps/atividade_21-fd457b2b063f5b0b.rmeta: src/main.rs /Users/natasilva/repositories/algoritmos/atividade-21/target/rls/debug/deps/atividade_21-fd457b2b063f5b0b.d: src/main.rs src/main.rs:
D
/******************************************************************************* * Copyright (c) 2000, 2004 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