code
stringlengths
3
10M
language
stringclasses
31 values
<?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_All_agm-198972...
D
/Users/marvinevins/Library/Autosave\ Information/weatherApp/DerivedData/weatherApp/Build/Intermediates.noindex/weatherApp.build/Debug-iphonesimulator/weatherApp.build/Objects-normal/x86_64/WeatherLocation.o : /Users/marvinevins/Library/Autosave\ Information/weatherApp/weatherApp/SceneDelegate.swift /Users/marvinevins/L...
D
module android.java.android.app.ActivityManager_MemoryInfo; public import android.java.android.app.ActivityManager_MemoryInfo_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ActivityManager_MemoryInfo; import import1 = android.java.java.lang.Class;
D
module android.java.android.graphics.LightingColorFilter; public import android.java.android.graphics.LightingColorFilter_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!LightingColorFilter; import import0 = android.java.java.lang.Class;
D
module IBM_PIT; import ibm_pc_com; import std.stdio; import simplelogger; import x86_memory; import IBM_PIC; import std.datetime; import x86_processor; //the 8253 PIT Emulation module //To-do: Actually implement the PIT class PIT { this(IBM_PC_COMPATIBLE param) { pc=param; memory=pc.GetCPU().ExposeRam(); cur...
D
a flag that shows its nationality a distinguishing emblem a visual attribute of things that results from the light they emit or transmit or reflect interest and variety and intensity the timbre of a musical sound a race with skin pigmentation different from the white race (especially Blacks) an outward or token appeara...
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
instance DIA_Matteo_EXIT(C_Info) { npc = VLK_416_Matteo; nr = 999; condition = DIA_Matteo_EXIT_Condition; information = DIA_Matteo_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Matteo_EXIT_Condition() { return TRUE; }; func void DIA_Matteo_EXIT_Info() { B_EquipTrader(self); AI_Sto...
D
module game.graphics.bulletDebug; import ws.math, ws.gl.gl, ws.gl.batch, ws.gl.shader, ws.physics.bullet.cbullet, game.graphics.draw, game.graphics.drawable; extern(C) static void lineCallback(void* userdata, btScalar* from, btScalar* to, btScalar* color){ auto drawer = cast(BulletDebugDrawer)userdata; draw...
D
// ********************************************** // B_GiveTradeInventory // -------------------- // Verteiler. Aufruf aller B_GiveTradeInv-Befehle // ********************************************** func void B_GiveTradeInv (var C_NPC slf) { //****************************************************************** // Hier m...
D
/Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ScatterChartData.o : /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/iOS_d...
D
/Users/troy/testing/vpn.test/rust/rustvpntool/target/debug/build/indexmap-5b20820e5d448fb9/build_script_build-5b20820e5d448fb9: /Users/troy/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/build.rs /Users/troy/testing/vpn.test/rust/rustvpntool/target/debug/build/indexmap-5b20820e5d448fb9/build_script_bui...
D
/+ Copyright (c) 2005-2007 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 to use, copy, ...
D
// PERMUTE_ARGS: /************************************************** 5996 ICE(expression.c) **************************************************/ template T5996(T) { auto bug5996() { if (anyOldGarbage) {} return 2; } } static assert(!is(typeof(T5996!(int).bug5996()))); /*****************...
D
/Users/patbutler/Developer/Server/Kitura/EmojiJournalServer/.build/x86_64-apple-macosx/debug/KituraNet.build/FastCGI/FastCGIServerResponse.swift.o : /Users/patbutler/Developer/Server/Kitura/EmojiJournalServer/.build/checkouts/Kitura-net.git-4378304010554470451/Sources/KituraNet/FastCGI/FastCGI.swift /Users/patbutler/De...
D
module com.skinconsortium.d.commons.ConfigFile; import tango.text.xml.Document; import tango.text.xml.DocPrinter; import tango.io.FilePath; import tango.io.File; debug import tango.io.Stdout; //import tango.sys.Environment; import tango.io.FileSystem; /** * ConfigFile * * Creates and handlex a config....
D
module xdc.metadata; /** `__VENDOR__` value */ enum Vendor = "XDC"; /** Semver version of XDC; $(D [major, minor, patch]) */ immutable Version = [0L, 1L, 0L];
D
var int Coragon_ItemsGiven_Chapter_1; var int Coragon_ItemsGiven_Chapter_2; var int Coragon_ItemsGiven_Chapter_3; var int Coragon_ItemsGiven_Chapter_4; var int Coragon_ItemsGiven_Chapter_5; func void B_GiveTradeInv_Coragon(var C_Npc slf) { if((Kapitel >= 1) && (Coragon_ItemsGiven_Chapter_1 == FALSE)) { CreateInvI...
D
module voxelman.input.plugininfo; enum id = "voxelman.input"; enum semver = "0.5.0"; enum deps = []; enum clientdeps = []; enum serverdeps = []; import pluginlib.pluginregistry; void register(ref PluginRegistry registry) { import voxelman.input.plugin; pluginRegistry.regClientPlugin(new InputPlugin); }
D
import std.stdio; import std.algorithm; int[] fib(int n){ int[] fibs; fibs ~= 0; fibs ~= 1; for(int i=2; i<n; i++){ fibs ~= (fibs[i-1]+fibs[i-2]); } return fibs; } void main(string[] args){ auto series = fib(34); auto even = filter!(a => a % 2 == 0)(series); auto sum = reduce!((a,b) => a+b)(...
D
import std.stdio; import std.array; import std.conv; void main(){ string[5163] a = ["MARY","PATRICIA","LINDA","BARBARA","ELIZABETH","JENNIFER","MARIA","SUSAN","MARGARET","DOROTHY","LISA","NANCY","KAREN","BETTY","HELEN","SANDRA","DONNA","CAROL","RUTH","SHARON","MICHELLE","LAURA","SARAH","KIMBERLY","DEBORAH","JESSIC...
D
/Users/kimhyewon/Documents/Server/tennis/build/tennis.build/Debug/Routing.build/Objects-normal/x86_64/RouteCollection.o : /Users/kimhyewon/Documents/Server/tennis/Packages/Routing-1.0.1/Sources/Routing/Branch.swift /Users/kimhyewon/Documents/Server/tennis/Packages/Routing-1.0.1/Sources/Routing/ParametersContainer.swift...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1985-1998 by Symantec * Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: Distribut...
D
// Written in the D programming language. /** This module implements the formatting functionality for strings and I/O. It's comparable to C99's `vsprintf()` and uses a similar _format encoding scheme. For an introductory look at $(B std._format)'s capabilities and how to use this module see the dedicat...
D
// D imports import std.conv; import std.string; import std.math : abs; // allegro imports import allegro5.allegro; import allegro5.allegro_primitives; import allegro5.allegro_image; import allegro5.allegro_font; import allegro5.allegro_ttf; import allegro5.allegro_color; // app imports import globals; import main...
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
E: c72, c29, c82, c67, c33, c6, c19, c30, c41, c39, c88, c0, c35, c57, c64, c31, c89, c4, c76, c58, c26, c12, c71, c3, c65, c62, c16, c97, c61, c92, c40, c85, c24, c42, c56, c86, c87. p0(E,E) c72,c29 c76,c58 c26,c58 c12,c58 c30,c62 c0,c88 c64,c85 c33,c88 c92,c61 c31,c88 c16,c89 c16,c88 c41,c62 c58,c61 . p7(E,E) c82,c6...
D
/target/x86_64-pc-windows-gnu/release/deps/crossbeam_deque-69a09c3da75aa6b1.rmeta: /cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.7.1/src/lib.rs /target/x86_64-pc-windows-gnu/release/deps/libcrossbeam_deque-69a09c3da75aa6b1.rlib: /cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.7.1/...
D
module xf.game.EventQueue; private { import xf.game.Event; import xf.utils.FreeList; } /** this FIFO queue should keep waiting events and event history. when events are added, they go to the waiting section when the tick is advanced, appropriate events should be marked as active when an active ev...
D
module sendero.server.WorkerPool; import tango.core.Thread; import tango.core.sync.Semaphore, tango.core.sync.Mutex; import sendero.server.runtime.SafeThread; //import sendero.server.TimerDispatcher; import sendero.util.collection.ThreadSafeQueue; import tango.util.log.Log; static Logger log; static this() { log...
D
/Users/patricerapaport/Desktop/swift/PRMacControls/Build/Intermediates.noindex/SwiftMigration/PRMacControls/Intermediates.noindex/PRMacControls.build/Debug/PRMacControls.build/Objects-normal/x86_64/myTabviewitem.o : /Users/patricerapaport/Desktop/swift/PRMacControls/PRMacControls/controles/myControlDoc.swift /Users/pat...
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_BeT-94576116...
D
module derelict.steamworks.steamcontroller; import derelict.steamworks.types; enum STEAM_CONTROLLER_MAX_COUNT = 16; enum STEAM_CONTROLLER_MAX_ANALOG_ACTIONS = 16; enum STEAM_CONTROLLER_MAX_DIGITAL_ACTIONS = 128; enum STEAM_CONTROLLER_MAX_ORIGINS = 8; // When sending an option to a specific controller handle, you...
D
a person who is weak and excessively sentimental
D
module tests.homerun; import dbox.common; import deimos.glfw.glfw3; import framework.debug_draw; import framework.test; import tests.test_entries : mode; import network.network; import std.conv : to; import std.stdio; class Homerun(mode m) : NeuralTest { size_t foodCount; size_t boxDiminish; float32 creature_a; ...
D
/Users/yinheng/Desktop/code/node/rs/demo/target/rls/debug/deps/libproc_macro_error_attr-feda80c9be8a6814.dylib: /Users/yinheng/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/lib.rs /Users/yinheng/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/parse.rs /U...
D
module UnrealScript.UTGame.UTLinkGunMuzzleFlashLight; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.UDKBase.UDKExplosionLight; extern(C++) interface UTLinkGunMuzzleFlashLight : UDKExplosionLight { public extern(D): private static __gshared ScriptClass mStaticClass; @property final...
D
module comp_d.data; import std.stdio : writeln; import std.meta, std.typecons; import std.algorithm, std.container.rbtree, std.array; /******************************/ // Symbol alias Symbol = ptrdiff_t; enum bool isSymbol(T) = is(T : Symbol); // empty symbol, end of file symbol (for LRs), virtual (for LALR algorithm...
D
/* Copyright: Marcelo S. N. Mancini (Hipreme|MrcSnm), 2018 - 2021 License: [https://creativecommons.org/licenses/by/4.0/|CC BY-4.0 License]. Authors: Marcelo S. N. Mancini Copyright Marcelo S. N. Mancini 2018 - 2021. Distributed under the CC BY-4.0 License. (See accompanying file LICENSE.txt or copy at ...
D
// https://issues.dlang.org/show_bug.cgi?id=17434 // EXTRA_FILES: test17434a.d imports/imp17434a.d imports/imp17434b.d module test17434; import test17434a; void main() { imports.imp17434b.testing(); }
D
/** * Contains TelegramInvoice */ module tg.payment.types.telegram_invoice; import tg.core.type, tg.core.exception; import std.json, tg.type; /** * This object contains basic information about an invoice. */ class TelegramInvoice : TelegramType { /** * Creates new type object */ nothrow pure pub...
D
/** * Contains OS-level routines needed by the garbage collector. * * Copyright: Copyright Digital Mars 2005 - 2013. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright, David Friedman, Sean Kelly, Leandro Lucarella */ /* Copyright Digital Mars 2005 - 2013. ...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; void main() { auto n = readln.chomp.to!int; auto as = readln.split.to!(int[]); sort(as); auto x = as[$-1]; as = as[0..$-1]; int y, d = int.max; foreach (a; as) { auto e = abs((x+1)...
D
/** * This package provides a layer of abstraction over YQL queries and responses, * to enable safe and expressive use of the web interface from D code. * * $(TABLE * $(TR $(TD $(B Module Name)) $(TD $(B Description))) * $(TR $(TD $(LINK2 _yql.query.html, _yql.query)) * $(TD Type-safe mechanisms...
D
module gbaid.gba.instable; import std.range : iota; import std.traits : hasUDA; import std.meta : aliasSeqOf; import std.algorithm.searching : count; import std.string : format; import gbaid.util; public import gbaid.gba.register; public import gbaid.gba.memory; public alias Executor = void function(Registers*, Mem...
D
cmd_. := LD_LIBRARY_PATH=/Applications/XAMPP/xamppfiles/htdocs/aulas/2021_1/2021_1_Programacao_Internet_II/Aula08/node_modules/dtrace-provider/build/Release/lib.host:/Applications/XAMPP/xamppfiles/htdocs/aulas/2021_1/2021_1_Programacao_Internet_II/Aula08/node_modules/dtrace-provider/build/Release/lib.target:$$LD_LIBRAR...
D
/Users/oyo02699/apps/easycrm/easycrm-api/target/rls/debug/deps/lazy_static-8ca06278f5bc974b.rmeta: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/lib.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/inline_lazy.rs /Users/o...
D
/Users/Mrbochiballs1/MakeSchool/Ballz/DerivedData/Ballz/Build/Intermediates/Ballz.build/Debug-iphonesimulator/MessagesExtension.build/Objects-normal/x86_64/MessagesViewController.o : /Users/Mrbochiballs1/MakeSchool/Ballz/MessagesExtension/MessagesViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchain...
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/linjianguo/Desktop/ReactiveCoCoDemo/DerivedData/ReactiveCoCoDemo/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactiveSwift.build/Objects-normal/x86_64/ResultExtensions.o : /Users/linjianguo/Desktop/ReactiveCoCoDemo/Pods/ReactiveSwift/Sources/Atomic.swift /Users/linjianguo/Desktop/ReactiveCoCoDem...
D
// Copyright Ferdinand Majerech 2011. // 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 library.yaml.encoding; ///Text encodings supported by D:YAML. enum Encoding : ubyte { ///U...
D
/** * Identify the characteristics of the host CPU, providing information * about cache sizes and assembly optimisation hints. This module is * provided primarily for assembly language programmers. * * References: * Some of this information was extremely difficult to track down. Some of the * documents below wer...
D
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Multipart.build/BoundaryParser.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/multipart.git-4210556629793786970/Sources/Multipart/Multipart+BytesConvertible.swift /Users/AleixDiaz/Desktop/VaporProject/L...
D
/* * 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 glib.gnode; import glib.gmem; import glib.gtypes; /* Tree traverse flags */ enum GTraverseFlags { G_TRAVERSE_LEAVES = 1 << 0, G...
D
module tests.statements.macro_; private { import tests.asserts; } unittest { // Simple macro assertRender(`{% macro test %}MACRO{% endmacro %}{{test()}}`, "MACRO"); // Macro with params assertRender( `{% macro test(a, b='', c='c', d=10) %}` ~ `<test a="{{a}}" b="{{b}}...
D
module physics.contact; import core; import physics; import std.stdio; import std.conv; class Contact { this(RigidBody r1, RigidBody r2, float restitution) { this.rigidBodies = [r1, r2]; this.restitution = restitution; this.penetrationDepth = 1; this.logger = new Logger(); ...
D
func int spell_logic_teleport2(var int manainvested) { printdebugnpc(PD_MAGIC,"Spell_Logic_Teleport2"); if(manainvested >= SPL_SENDCAST_TELEPORT) { AI_Teleport(self,"NC_KDW_CAVE_CENTER"); AI_PlayAni(self,"T_HEASHOOT_2_STAND"); KDW_TP_USED = TRUE; return SPL_SENDCAST; }; return SPL_NEXTLEVEL; };
D
/Users/sayonsomchanda/Documents/Apps/HomeWeather/DerivedData/HomeWeather/Build/Intermediates/HomeWeather.build/Debug-iphonesimulator/HomeWeather.build/Objects-normal/x86_64/WeatherData.o : /Users/sayonsomchanda/Documents/Apps/HomeWeather/HomeWeather/ViewController.swift /Users/sayonsomchanda/Documents/Apps/HomeWeather/...
D
/** * Contains support code for code profiling. * * Copyright: Copyright Digital Mars 1995 - 2012. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Walter Bright, Sean Kelly * Source: $(DRUNTIMESR...
D
/Users/shawngong/Centa/.build/debug/Fluent.build/Preparation/Preparation.swift.o : /Users/shawngong/Centa/Packages/Fluent-1.4.0/Sources/Fluent/Database/Database.swift /Users/shawngong/Centa/Packages/Fluent-1.4.0/Sources/Fluent/Database/Driver.swift /Users/shawngong/Centa/Packages/Fluent-1.4.0/Sources/Fluent/Entity/Enti...
D
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Content/JSONCoder+Custom.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/FileIO.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/vapor.git-5492988889259800272...
D
/** * Copyright © Yurai Web Framework 2021 * License: MIT (https://github.com/YuraiWeb/yurai/blob/main/LICENSE) * Author: Jacob Jensen (bausshf) */ module yurai.prebuilding.prebuildcontrollers; void prebuildControllers() { import std.file : write, dirEntries, SpanMode, readText; import std.algorithm : filter, star...
D
/** Compiler settings and abstraction. Copyright: © 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.compiler; import dub.compilers.dmd; import dub.compilers.gdc; import dub.compilers.ldc; import...
D
instance Non_1504_Wegelagerer(Npc_Default) { name[0] = "Rozbójnik"; npcType = Npctype_ROGUE; guild = GIL_None; level = 9; voice = 6; id = 1504; attribute[ATR_STRENGTH] = 65; attribute[ATR_DEXTERITY] = 55; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 205; attribute[AT...
D
/+ + Copyright © 2015 Rémi Thebault + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, +...
D
an abnormal new mass of tissue that serves no purpose
D
module deimos.cef3.download_handler; // Copyright (c) 2012 Marshall A. Greenblatt. 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 ab...
D
/** * Written in the D programming language. * This module provides ELF-specific support for sections with shared libraries. * * Copyright: Copyright Martin Nowak 2012-2013. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Martin Nowak * Source: $(DRUNTIMESRC src/rt/_sections_li...
D
any evidence that helps to establish the falsity of something a willful perversion of facts the act of rendering something false as by fraudulent changes (of documents or measures etc.) or counterfeiting the act of determining that something is false
D
import std.datetime; import std.conv; import std.array; import std.stdio; import std.string : format; import mqttd; shared static this() { import vibe.core.log : setLogFormat, FileLogger; import vibe.core.core : sleep, runTask; import core.time; setLogFormat(FileLogger.Format.threadTime); auto s...
D
/** IndexedArray Copyright: (c) Enalye 2017 License: Zlib Authors: Enalye */ module atelier.core.indexedarray; import std.parallelism; import std.range; import std.typecons; /** Special Array that remove fragmentation while keeping indexes valid. */ class IndexedArray(T, uint _capacity, bool _usePa...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string; void main() { auto S = readln.chomp.to!(char[]); auto N = S.length; long r; foreach (i, c; S) { if (c == 'U') { r += i*2 + N-i-1; } else { r += (N-i-1)*2 + i; } } writeln(r); }
D
/Users/cedricnicolas/Desktop/JustGrow/Build/Intermediates/JustGrow.build/Debug-iphoneos/JustGrow.build/Objects-normal/arm64/ViewController.o : /Users/cedricnicolas/Desktop/JustGrow/JustGrow/AppDelegate.swift /Users/cedricnicolas/Desktop/JustGrow/JustGrow/ViewController.swift /Users/cedricnicolas/Desktop/JustGrow/JustGr...
D
/Users/admin/Desktop/CuckooTest/Pods/Cuckoo/Generator/.build/debug/FileKit.build/FileSystemWatcher.swift.o : /Users/admin/Desktop/CuckooTest/Pods/Cuckoo/Generator/Packages/FileKit-4.0.2/Sources/Array+File.swift /Users/admin/Desktop/CuckooTest/Pods/Cuckoo/Generator/Packages/FileKit-4.0.2/Sources/ArrayFile.swift /Users/a...
D
/* threading.thread provides a module handling simple thread management. */ module threading.thread; // version = THREAD_TEST; import core.thread; version (THREAD_TEST) { import std.stdio : writeln, writefln; } /** * The event handler used for thread start events. * Thread start events are fired whenever a thread ...
D
/** * Poodinis Dependency Injection Framework * Copyright 2014-2021 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ import poodinis; import std.stdio; interface Engine { public void engage(); } class FuelEngine :...
D
the phenomenon of sediment or gravel accumulating matter that has been deposited by some natural process the natural process of laying down a deposit of something money deposited in a bank or some similar institution a partial payment made at the time of purchase money given as security for an article acquired for temp...
D
build/default/debug/_ext/1779392585/drv_mrf_miwi_24j40.d \ build/default/debug/_ext/1779392585/drv_mrf_miwi_24j40.p1: \ C:/Users/tpeea/Documents/MPLABXProjects/MLA/framework/driver/mrf_miwi/src/drv_mrf_miwi_24j40.c \ ../MLA/framework/miwi/miwi_mesh.h \ ../Projet_Zigbee/firmware/src/system_config/8bitwdk_pic1...
D
/++ Parsing and building packets for the MySQL binary interface. The types in this file does not work directly on a connection. They expect to get enough data in their constructor. NOTE: There are several responses from the server that cannot be fully parsed without requesting more data from the connection. T...
D
module sema.visitor; import ast; import logger; import sema.symbol; import sema.infer : Type_Environment; import krug_module; import std.stdio; import std.conv; class AST_Visitor { abstract void process_node(ast.Node node); } class Top_Level_Node_Visitor : AST_Visitor { protected Symbol_Table curr_sym_table; ab...
D
/** * Defines a package and module. * * Specification: $(LINK2 https://dlang.org/spec/module.html, Modules) * * Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICE...
D
/Users/augustomachado/github/rust_sudoku/sudoku/target/debug/build/num-rational-40c73385b6669cce/build_script_build-40c73385b6669cce: /Users/augustomachado/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.3.2/build.rs /Users/augustomachado/github/rust_sudoku/sudoku/target/debug/build/num-rational-40c7338...
D
module cruft; import std.stdio; import derelict.util.exception; import gl; private ShouldThrow handleDerelictsProblems(string symbolName) { writeln("Failed to load ", symbolName, ", ignoring this."); return ShouldThrow.No; } private SDL_Window* win = null; private SDL_GLContext glctx = null; private GLuint vao = 0...
D
#!/usr/bin/env rdmd /** DMD builder Usage: ./build.d dmd TODO: - add all posix.mak Makefile targets - support 32-bit builds - test on OSX - test on Windows - allow appending DFLAGS via the environment - test the script with LDC or GDC as host compiler */ version(CoreDdoc) {} else: import std.algorithm, std.conv, ...
D
template X(){} template D(string str){} template A(string str) { static if (D!(str[str])) {} else const string A = .X!(); } template M(alias B) { const string M = A!("a"); } void main() { int q = 3; pragma(msg, M!(q)); }
D
module kasm.register; enum Register { r0 = "r0", r1 = "r1", r2 = "r2", r3 = "r3", r4 = "r4", r5 = "r5", r6 = "r6", r7 = "r7", r8 = "r8", r9 = "r9", r10 = "r10", r11 = "r11", r12 = "r12", r13 = "r13", r14 = "r14", r15 = "r15", } ubyte reg_to_byte(Register reg) { final switch (reg) wit...
D
import std.stdio : writefln; import cl = dcltk; import derelict.opencl.cl : cl_event; void main() { auto platformId = cl.loadOpenCl(); writefln("loaded: %s %s %s(%s) %s [%s]", cl.getPlatformProfile(platformId), cl.getPlatformName(platformId), cl.getPlatformVersion(platformId), ...
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.build/FileDescriptor.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NonBlo...
D
/* lilySV100 - Casio Loopy emulator written in D. */ /* Copyright (c) 2020, Lady Starbreeze */ import std.stdio : writeln; import bus, cpu; /** ROM path for debugging purposes */ const auto ROM_PATH = "Loopy/ROMs/Dream_Change.bin"; void main(string[] args) { bus.init(ROM_PATH); cpu.init(); auto counter...
D
in a polite manner
D
// URL: https://atcoder.jp/contests/abc047/tasks/arc063_b import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r...
D
func int Spell_ProcessMana_Release(var int manaInvested) { if(Npc_GetActiveSpell(self) == SPL_FIREBALL) { return SPL_SENDCAST; }; if(Npc_GetActiveSpell(self) == SPL_FIRESTORM) { return SPL_SENDCAST; }; if(Npc_GetActiveSpell(self) == SPL_THUNDERBALL) { return SPL_SENDCAST; }; if(Npc_GetActiveSpell(self)...
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
/Users/lidiomarfernandomachado/dev/swift/f1Project/DerivedData/f1Project/Build/Intermediates.noindex/f1Project.build/Debug-iphoneos/f1Project.build/Objects-normal/arm64/StandingsTable.o : /Users/lidiomarfernandomachado/dev/swift/f1Project/f1Project/Models/MRData.swift /Users/lidiomarfernandomachado/dev/swift/f1Project/...
D
var int alchemy_1_permanent; var int alchemy_2_permanent; var int alchemy_3_permanent; func void use_bookstandalchemy1_s1() { var C_NPC her; var int ndocid; her = Hlp_GetNpc(pc_hero); if(Hlp_GetInstanceID(self) == Hlp_GetInstanceID(her)) { ndocid = Doc_Create(); Doc_SetPages(ndocid,2); Doc_SetPage(ndocid,0...
D
/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtLocation module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Lic...
D
// hopefully consoled from robik (http://github.com/robik/consoled) will work! //public import core.sys.posix.sys.ioctl; module consoled_test1; import std.stdio; import std.typetuple; import std.typecons; void terminald_main() { import tio = terminal; tio.Terminal term = tio.Terminal(tio.ConsoleOutputType.cellul...
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
/home/sriharikapu/substrate-node-template/target/release/build/libp2p-core-5b5efcdc98c2ab9c/build_script_build-5b5efcdc98c2ab9c: /home/sriharikapu/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-core-0.18.0/build.rs /home/sriharikapu/substrate-node-template/target/release/build/libp2p-core-5b5efcdc98c2ab9c/buil...
D
food cooked and served in a casserole large deep dish in which food can be cooked and served
D