code
stringlengths
3
10M
language
stringclasses
31 values
/** * The D language investigations: * here life events except perhaps allocator stage () * # dmd -v -vgc -I/opt/local//libexec/dmd-bootstrap/include/druntime/import -I/opt/local/libexec/dmd-bootstrap/include/phobos -L-L/opt/local/libexec/dmd-bootstrap/lib lifetime.d * Expected output for * bash-3.2$ dmd --versio...
D
/* Problem 16: Write a program to print the number pattern using loop. 12345 1234 123 12 1 */ import std.stdio; int main(){ int row = 5; for(int y = row; y > 0; y--){ for(int x = 0; x < y; x++){ write(x + 1); } writeln(); } return 0; }
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
/****************************************************************************** * BEH * * Source Code * * * ...
D
/******************************************************************************* * Copyright (c) 2000, 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
/****************************************************************************** Tests the reading of the buckets with parity check with errors inside. Copyright: (c) 2016 Sociomantic Labs. All rights reserved. ******************************************************************************/ module test.versio...
D
// A simple web server module dwttool.server; import dwttool.messages; import handy_httpd; import handy_httpd.handlers.file_resolving_handler; import std.stdio; void serveProject(ushort port) { writeln(startingServerMsg); ServerConfig cfg = ServerConfig.defaultValues(); cfg.port = port; auto handler...
D
/Users/apple-1/Downloads/HouseKeeping/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Validation.o : /Users/apple-1/Downloads/HouseKeeping/Pods/Alamofire/Source/AFError.swift /Users/apple-1/Downloads/HouseKeeping/Pods/Alamofire/Source/Alamofire.swift /Users/apple-1/Downloads/H...
D
import std.c.stdlib; import std.c.string; import std.stdio; import dart_api; // Forward declaration of ResolveName function. Dart_NativeFunction ResolveName(Dart_Handle name, int argc, bool* auto_setup_scope); //extern (C) Dart_Handle Dart_SetNativeResolver(Dart_Handle library,Dart_NativeEntryResolver resolver,Dart_N...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.bigint; void main() { auto DS = readln.split.to!(int[]); auto JS = readln.split.to!(int[]); int s; foreach (i; 0..7) { s += DS[i] > JS[i] ? DS[i] : JS[i]; } writeln(s); }
D
module android.java.java.security.KeyFactorySpi_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 KeyFactorySpi : IJavaObject { static i...
D
# FIXED ustdlib.obj: C:/ti/TivaWare_C_Series-2.1.4.178/utils/ustdlib.c ustdlib.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include/stdint.h C:/ti/TivaWare_C_Series-2.1.4.178/utils/ustdlib.c: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include/stdint.h:
D
/home/zbf/workspace/git/RTAP/target/debug/build/memchr-995cf1f088ab83dc/build_script_build-995cf1f088ab83dc: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/memchr-2.2.1/build.rs /home/zbf/workspace/git/RTAP/target/debug/build/memchr-995cf1f088ab83dc/build_script_build-995cf1f088ab83dc.d: /home/zbf/...
D
/******************************************************************************* * Copyright (c) 2003, 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
/* Copyright (c) 2016 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, exe...
D
build/Debug/Cygwin-Windows/HW1_3.o: HW1_3.cpp
D
/Users/apples/Desktop/command_line_pokedex/target/debug/deps/crossbeam_deque-3ef6a57cac4a6b4f.rmeta: /Users/apples/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.6.2/src/lib.rs /Users/apples/Desktop/command_line_pokedex/target/debug/deps/crossbeam_deque-3ef6a57cac4a6b4f.d: /Users/apples/.cargo/regis...
D
module gbaid.gba.thumb; import core.bitop : popcnt; import std.string : format; import gbaid.util; import gbaid.gba.instable; import gbaid.gba.assembly; private enum THUMB_OPCODE_BIT_COUNT = 10; private immutable Executor[1 << THUMB_OPCODE_BIT_COUNT] THUMB_EXECUTORS = createTHUMBTable(); public void executeTHUMBI...
D
/* Generated by Entice Designer Entice Designer written by Christopher E. Miller www.dprogramming.com/entice.php */ module src.gui.configform; import dfl.all; import src.common, src.sys.config, src.gui.configpanels.base; import voile.misc; class ConfigForm: dfl.form.Form { // Do not modify or move this block of v...
D
//-------- Spell Commands -------- // SPL_DONTINVEST = 0; // Es können keine weiteren Manapunkte investiert werden. Erst durch CTRL loslassen geht der Spell ab // SPL_RECEIVEINVEST = 1; // Wirkung durchgeführt, es können weitere Invest kommen, zB.bei Heal nach jedem Pöppel // SPL_SENDCAST = 2; // Starte den Z...
D
/** HTML output generator implementation. */ module diet.html; import diet.defs; import diet.dom; import diet.internal.html; import diet.internal.string; import diet.input; import diet.parser; import diet.traits; private template _dietFileData(string filename) { import diet.internal.string : stripUTF8BOM; private ...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (c) 1999-2016 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
/******************************************************************************* Asynchronously/Selector managed RemoveChannel request class copyright: Copyright (c) 2014-2017 sociomantic labs GmbH. All rights reserved License: Boost Software License Version 1.0. See LICENSE_BOOST.txt for de...
D
/* Binderoo Copyright (c) 2016-2017, Remedy Entertainment Copyright (c) 2018-2019, Ethan Watson All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above ...
D
/* This file is part of BioD. Copyright (C) 2012 Artem Tarasov <lomereiter@gmail.com> 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 ...
D
/* Copyright (c) 2014 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, exe...
D
the branch of molecular biology that studies the use of microorganisms to perform specific industrial processes the branch of engineering science in which biological science is used to study the relation between workers and their environments
D
module setup; import serverd; import utils; import www; import core.stdc.string : strlen; import std.algorithm; import std.conv; import std.range; import std.stdio; extern(C) { extern __gshared const(char)** environ; } bool split_keyvalue(string str, ref string key, ref string value, bool doDecode) { auto ...
D
# FIXED uCOS-II/Ports/C28x/Generic/CCS/os_dbg.obj: C:/ti/Workspace/PLC_certificate/Software/uCOS-II/Ports/C28x/Generic/CCS/os_dbg.c uCOS-II/Ports/C28x/Generic/CCS/os_dbg.obj: C:/ti/Workspace/PLC_certificate/Software/uCOS-II/Source/ucos_ii.h uCOS-II/Ports/C28x/Generic/CCS/os_dbg.obj: C:/ti/Workspace/PLC_certificate/Exa...
D
module dlangui.graphics.scene.material; public import dlangui.core.config; static if (ENABLE_OPENGL): static if (BACKEND_GUI): import dlangui.core.types; import dlangui.core.logger; import dlangui.graphics.glsupport; import dlangui.graphics.gldrawbuf; import dlangui.graphics.scene.effect; import dlangui.graphics.scen...
D
module mutils.container.string_tmp; import core.stdc.stdlib; static struct StringTmp { @disable this(); @disable this(this); const(char)[] cstr = "\0"; const(char)[] str() { return cstr[0 .. $ - 1]; } bool deleteMem; bool hasTrailingNull; this(const(char)[] str, bool deleteM...
D
module lib.integration_error; import lib.integral; import std.range : ElementType, hasLength, array; import std.traits : ReturnType; import std.algorithm : map, reduce; import std.math : sqrt; /** Calculate integration error of a function by a point set. Params: tf = an alias. the integrand is given as tf.f, with i...
D
/Users/Leex/TableView_Test/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Lock.o : /Users/Leex/TableView_Test/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Leex/TableView_Test/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Leex/TableView_Test/Pods/RxSwift...
D
import std.stdio, std.getopt, dmanbot; string config_file = "dmanbot.yaml"; bool dryrun = false; bool do_not_post = false; void main(string[] args) { getopt(args, "config", &config_file, "dry-run", &dryrun, "do-not-post", &do_not_post ); auto dmanbot = new DmanBot(co...
D
// Copyright 2017 Google Inc. All Rights Reserved. // // 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...
D
module android.java.java.util.concurrent.ThreadFactory; public import android.java.java.util.concurrent.ThreadFactory_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ThreadFactory; import import0 = android.java.java.lang.Thread; import import2 = android.java.java.lang.Class;
D
/** * Copyright: Copyright Rainer Schuetze 2014. * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Authors: Rainer Schuetze * * This test reads a text file, then splits the result into white space delimited words. * The result is a single linked list of strings referencing the full...
D
module decs.storage.unique; import decs.entity; import std.typecons; /// Storage of component that can contain maximum 1 instance of component. Only /// single entity can have the component. class UniqueStorage(T) { Nullable!T unique; Entity owner = global; /// Stored element type alias Elem = T; /// Init...
D
/** * Defines AST nodes for statements. * * Specification: $(LINK2 https://dlang.org/spec/statement.html, Statements) * * 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.boos...
D
// Compiler implementation of the D programming language // Copyright (c) 1999-2015 by Digital Mars // All Rights Reserved // written by Walter Bright // http://www.digitalmars.com // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt module ddmd.nspace; import ddmd.agg...
D
module mir.interpolate.utility; import mir.ndslice.slice; import std.traits; import mir.math.common: optmath; package template DeepType(T) { static if (is(T : E[N], E, size_t N)) alias DeepType = DeepType!E; else alias DeepType = T; } /++ Quadratic function structure +/ struct ParabolaKernel(...
D
ft_lcm.o: C:/Users/alexn/Desktop/All-things-coding/Doom3DS/libft/ft_lcm.c
D
// non-esthetic layout example using a Grid import std.stdio; import gtk.Main; import gtk.MainWindow; import gtk.Grid; import gtk.Label; import gtk.Widget; import gtk.Box; // Note: StateFlags are found in gtk.c.types void main(string[] args) { TestRigWindow testRigWindow; Main.init(args); testRigWindow = new...
D
cause annoyance in disturb the peace of mind of change the arrangement or position of subject to prolonged examination, discussion, or deliberation be a mystery or bewildering to troubled persistently especially with petty annoyances causing difficulty in finding an answer or solution
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
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/App.build/Controllers/TodoController.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/Sources/App/configure.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/Sources/App/Models/UserToken.swift /Users/weirujian/Desk...
D
# FIXED ICallBLE/ble_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/icall/app/ble_user_config.c ICallBLE/ble_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_58/source/ti/blestack/hal/src/target/_common/hal_types.h ICallBLE/ble_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_1_50_00_...
D
Long: hostpubsha256 Arg: <sha256> Help: Acceptable SHA256 hash of the host public key Protocols: SFTP SCP Added: 7.80.0 Category: sftp scp Example: --hostpubsha256 NDVkMTQxMGQ1ODdmMjQ3MjczYjAyOTY5MmRkMjVmNDQ= sftp://example.com/ See-also: hostpubmd5 --- Pass a string containing a Base64-encoded SHA256 hash of ...
D
/** * Line parser functions */ module gff3line; import std.stdio; import std.string; import std.conv; /** * Get the GFF3 seqid */ auto get_seq_id(string s) { auto i = indexOf(s,'\t'); return (i > 1 ? s[0..i] : null); } /** * Split the GFF3 record into fields (string type) */ auto fields(string s) { //...
D
/** * D header file for POSIX. * * Copyright: Public Domain * License: Public Domain * Authors: Sean Kelly * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ module core.sys.posix.utime; private import core.sys.posix.config; public import core.sys.posix.sys.types; // f...
D
/** * D header file for C99. * * Copyright: Public Domain * License: Public Domain * Authors: Sean Kelly * Standards: ISO/IEC 9899:1999 (E) */ module core.stdc.errno; extern (C) int getErrno(); // for internal use extern (C) int setErrno(int); // for internal use alias getErrno errno; alias setErrno...
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
module io.file; import io.iomanager; import std.algorithm; import std.file; import std.path; import std.range; import std.stdio : StdFile = File; class File : IO { static File open(string path, IOMode mode) { // debug std.stdio.writeln("Opening ", path); string modeString; final switch (mode) { case ...
D
a poisonous substance produced during the metabolism and growth of certain microorganisms and some higher plant and animal species
D
import std.stdio; import std.conv; import std.numeric; import core.stdc.stdlib; import std.algorithm; import std.range; import lib; import app; import obj; import vm; import node; import parse; // a repl for use from errors // exit does not actually whcall anything void errorRepl(Vm vm) { while (true) { wr...
D
/mnt/c/Users/zeliwang/hello_world/digital_signature/target/release/deps/digest-505d63125814f26f.rmeta: /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/digest-0.8.1/src/lib.rs /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/digest-0.8.1/src/digest.rs /home/zeliwang/.cargo/...
D
instance GRD_236_Gardist (Npc_Default) { //-------- primary data -------- name = NAME_Gardist; npctype = NPCTYPE_MINE_GUARD; guild = GIL_GRD; level = 10; voice = 6; id = 236; //-------- abilities -------- attribute[ATR_STRENGTH] = 48; attribute[ATR_DEXTERITY] = 35; attribute[ATR_MANA_MAX]...
D
/** * Zilog Z80 instruction tables. */ module d80.z80; /** * Strings and instruction lengths for Zilog Z80. */ struct z80 { string s; /// Instruction name ubyte n; /// Length of instruction in bytes } /** * Main instructions table for Zilog Z80. */ immutable z80[] insnz80 = [ { ...
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
/* TEST_OUTPUT: --- fail_compilation/test13537.d(31): Error: field `U.y` cannot modify fields in `@safe` code that overlap fields with other storage classes fail_compilation/test13537.d(32): Error: field `U.y` cannot modify fields in `@safe` code that overlap fields with other storage classes fail_compilation/test13537...
D
/Users/zaidtayyab/Desktop/Template/Build/Template/Build/Intermediates/Pods.build/Debug-iphonesimulator/PKHUD.build/Objects-normal/x86_64/PKHUDWideBaseView.o : /Users/zaidtayyab/Desktop/Template/Pods/PKHUD/PKHUD/HUD.swift /Users/zaidtayyab/Desktop/Template/Pods/PKHUD/PKHUD/PKHUD.swift /Users/zaidtayyab/Desktop/Template/...
D
module sleek.net.http.HttpForm; import sleek.net.http.HttpGetRequest; import sleek.net.http.HttpMultipartPostRequest; import sleek.net.http.HttpPostRequest; import sleek.net.http.HttpRequest; import sleek.net.http.HttpResponse; import tango.net.Uri; import tango.net.http.HttpHeaders; import tango.net.http.HttpParams; ...
D
/afs/cern.ch/user/a/abrennan/testarea/CxAODframework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/CxAODMaker/obj/PhotonHandler.o /afs/cern.ch/user/a/abrennan/testarea/CxAODframework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/CxAODMaker/obj/PhotonHandler.d : /afs/cern.ch/user/a/abrennan/testarea/CxAODframework/CxAODMaker/Root/Photo...
D
module j2d; import tokenizer; import tokutil; import std.string; import std.file; import std.path; import std.stdio; import std.ctype; import std.algorithm; import std.getopt; string final_replacement = "const"; // "invariant" for D2? // TODO // - fix invalid utf8 chars // + adjust import statement...
D
a male servant (especially a footman) a person who tries to please someone in order to gain a personal advantage
D
/mnt/c/Users/skaly/Desktop/coding/rust/shell/src/wc/target/debug/deps/wc-0136b1470185e4a9: src/main.rs /mnt/c/Users/skaly/Desktop/coding/rust/shell/src/wc/target/debug/deps/wc-0136b1470185e4a9.d: src/main.rs src/main.rs:
D
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityDomainBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityDomainBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Cpublic.h /work/02138/siddarth/CHOMBO/EBAMRRAN...
D
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/Database/Database.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/database-kit/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/panartem/Developer/Study/Micr...
D
// //------------------------------------------------------------------------------ // Copyright 2014-2019 Coverify Systems Technology // Copyright 2007-2011 Mentor Graphics Corporation // Copyright 2010-2018 Synopsys, Inc. // Copyright 2007-2018 Cadence Design Systems, Inc. // Copyright 2015-2018 NVIDIA Corporation //...
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_17_BeT-9122931...
D
/Users/martin/Documents/programovanie/bc/RuLife/DerivedData/RuLife/Build/Intermediates/RuLife.build/Debug-iphoneos/RuLife.build/Objects-normal/armv7/StartWorkoutViewController.o : /Users/martin/Documents/programovanie/bc/RuLife/RuLife/AppDelegate.swift /Users/martin/Documents/programovanie/bc/RuLife/RuLife/Location.swi...
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.sdlthread; import core.stdc.config : c_ulong; import bindbc.sdl.config; struct ...
D
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ma...
D
/** * Most of the logic to implement scoped pointers and scoped references is here. * * Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost ...
D
/* * 結果 https://paiza.jp/poh/joshibato/rio/result/4ad1ffeb */ import io = std.stdio : readln, puts = writeln; // モジュール名をエイリアス、コロン以降のはモジュール名なしで呼び出せる、それ以外はモジュール名のエイリアス必須 import std.format, std.string; // importすればそのモジュール内の関数を呼び出せる // コロンで関数名を指定してないので // モジュー...
D
module ogre.materials.textureunitstate; debug import std.stdio; //import std.container; import std.string; import std.array; import ogre.compat; import ogre.config; import ogre.sharedptr; import ogre.general.common; import ogre.general.colourvalue; import ogre.lod.lodstrategy; import ogre.math.matrix; import ogre.math...
D
/home/fluix/Documents/CMPT383/Final_Project/Round2/CMPT383-Raytracer/raytracer/target/rls/debug/build/maybe-uninit-3859970b76ac2f49/build_script_build-3859970b76ac2f49: /home/fluix/.cargo/registry/src/github.com-1ecc6299db9ec823/maybe-uninit-2.0.0/build.rs /home/fluix/Documents/CMPT383/Final_Project/Round2/CMPT383-Ray...
D
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/Core.build/Objects-normal/x86_64/StaticDataBuffer.o : /Users/Yowa/WorkSpace/Pokedex/Packages/Core-1.0.0/Sources/Core/Array.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Core-1.0.0/Sources/Core/Bool+String.swift /Users/Yowa/WorkSpace/Pokedex/Packages/C...
D
void main() { auto N = ri; auto a = readAs!(long[]); ulong now = 0, bad = 0; foreach(i; 0..N) { if(a[i] == now+1) { now++; } else bad++; } if(now == 0) writeln(-1); else writeln(bad); } // =================================== import std.stdio; import std.string; import std.functional; import std.algorith...
D
/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtNetwork module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Lice...
D
extern(C) int printf(const char* fmt, ...); /***************************************/ void test1() { char[] a; int foo() { printf("foo\n"); a ~= "foo"; return 10; } foreach (i; 0 .. foo()) { printf("%d\n", i); a ~= cast(char)('0' + i); } asser...
D
module editor.select; // creating the Hover objects for what's under the mouse cursor import std.algorithm; import std.range; import basics.rect; import file.option; // keyPriorityInvert import editor.editor; import editor.mirrtile : removeFromLevelTheSelection; // for dragging on panel import editor.undoable.base; ...
D
/** * обвязка к libraptor2 */ module bind.libraptor_header; // ////////////////////////// call D from C ////////////////////////////////////////// struct raptor_world { } struct raptor_parser { } struct raptor_serializer { } struct raptor_uri { } /* I/O Stream utility functions */ /** * raptor_escaped_write...
D
/Users/admin/Desktop/Day4/DemoClass/DerivedData/DemoClass/Build/Intermediates/DemoClass.build/Debug-iphonesimulator/DemoClass.build/Objects-normal/x86_64/ProtocolDemo.o : /Users/admin/Desktop/Day4/DemoClass/DemoClass/ReverseFile.swift /Users/admin/Desktop/Day4/DemoClass/DemoClass/PropertyDemo.swift /Users/admin/Desktop...
D
import std.stdio; int foo(int i) { int x = void; x += 3; return i + x; } void main() { const y = foo(3); writefln(y); }
D
module events.all; public: import events; import logging; import common : Array, Async, IQueue, bitcastTo, expect, isObject, makeMPMCQueue, flushConsole; import std.stdio : writefln; import std.format : format; import std.datetime.stopwatch : StopWatch; import std.typecons ...
D
module NoiseManager; import IManagers; import INoise; import PerlinNoise; shared class NoiseManager : IManagerShared { INoise noiseGen; bool init() { noiseGen = new PerlinNoise(); noiseGen.setOctaveCount(5); noiseGen.setLacunarity(2.3f); noiseGen.setPersistence(5.0f); return true; } float generateNo...
D
/** * TypeInfo support code. * * Copyright: Copyright Digital Mars 2004 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright */ /* Copyright Digital Mars 2004 - 2009. * Distributed under the Boost Software License, Version 1.0. * (See...
D
<?xml version="1.0" encoding="ASCII"?> <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="TestModel.notation#_ZimUACBFEeO_m-...
D
module problem; import std.array : array; import std.variant; import std.conv; import mysql; import check; uint check_problem(uint id) { uint rc; string[] log; Connection conn; ResultRange range; ulong c_done; //dfmt off string sql_1 = "SELECT problem.pid FROM problem LEFT JOIN classol " ...
D
// SoA CHAIN IF ~InParty("C0Sirene") See("C0Sirene") !StateCheck("E3Fade",CD_STATE_NOTVALID) !StateCheck("C0Sirene",CD_STATE_NOTVALID) Global("C0SireneFade1","GLOBAL",0)~ THEN BE3Fade C0SireneFade1 ~...*stare*~ DO ~SetGlobal("C0SireneFade1","GLOBAL",1)~ == BC0SIRE2 ~Is there a reason you have been watching me, Fade? I...
D
/* Copyright (c) 2014 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, exe...
D
/Users/ThiagoBevi/Dev-iOS/Marvel/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nimble.build/Objects-normal/x86_64/Stringers.o : /Users/ThiagoBevi/Dev-iOS/Marvel/Pods/Nimble/Sources/Nimble/DSL.swift /Users/ThiagoBevi/Dev-iOS/Marvel/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift /Users/ThiagoBevi/Dev-iOS/Ma...
D
/Users/Tom/Desktop/Study/IOS/RecordingApp/DerivedData/RecordingApp/Build/Intermediates/RecordingApp.build/Debug-iphonesimulator/RecordingApp.build/Objects-normal/x86_64/PlaySoundsViewController.o : /Users/Tom/Desktop/Study/IOS/RecordingApp/RecordingApp/RecordSoundViewController.swift /Users/Tom/Desktop/Study/IOS/Record...
D
/Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Just.o : /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwif...
D
the expensive white fur of the ermine mustelid of northern hemisphere in its white winter coat
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_9_BeT-34112186...
D
import gtk.MainWindow; import gtk.Label; import gtk.Main; import gtk.VBox; import gtk.MenuBar; import gtk.MenuItem; import gtk.Button; import gdk.Event; import gtk.Widget; import cairo.Context; import gtk.DrawingArea; import glib.Timeout; import gdk.Keysyms; import std.stdio:writeln; import std.func...
D
module gameplayInside; import n64, ram, gameState; // U RAM GREECE 70270-8ddde0 class GameplayInside : IGameState { public: // RAM 00070270 int Start(int a0) { // addiu sp, sp, $ffe8 # 00070270:27bdffe8 // sw ra, $0014(sp) # 00070274:afbf0014 // jal $0007290c # 00070278:0c01ca43 v FNC_0007290c // ...
D
/Users/mprechner/vapor-demo/HelloWorld/.build/debug/Essentials.build/Helpers.swift.o : /Users/mprechner/vapor-demo/HelloWorld/.build/checkouts/crypto.git-7980259129511365902/Sources/Essentials/ByteStream.swift /Users/mprechner/vapor-demo/HelloWorld/.build/checkouts/crypto.git-7980259129511365902/Sources/Essentials/Help...
D