code
stringlengths
3
10M
language
stringclasses
31 values
/* * paging.d * * This module implements the structures and logic associated with paging. * */ module kernel.arch.x86_64.core.paging; // Import common kernel stuff import kernel.core.util; import kernel.core.error; import kernel.core.kprintf; // Import the heap allocator, so we can allocate memory import kernel...
D
/* THIS FILE GENERATED BY bcd.gen */ module bcd.fltk2.ColorChooser; align(4): public import bcd.bind; public import bcd.fltk2.Group; public import bcd.fltk2.Widget; public import bcd.fltk2.Style; public import bcd.fltk2.FL_API; public import bcd.fltk2.Rectangle; public import bcd.fltk2.Color; public import bcd.fltk2.Fl...
D
module android.java.android.graphics.Color_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import1 = android.java.android.graphics.ColorSpace_Model_d_interface; import import3 = android.java.android.g...
D
/* # What Is This: programming samples # Author: Makoto Takeshita <takeshita.sample@gmail.com> # URL: http://simplesandsamples.com # Version: UNBORN # # Usage: # 1. git clone https://github.com/takeshitamakoto/sss.git # 2. change the directory name to easy-to-use name. (e.g. sss -> sample) # 3. open sss/src/filenam...
D
module xmlrpcc.data; import std.variant : Variant; import std.algorithm : reduce; import std.conv : to; import std.string : format; import xmlrpcc.error; alias XmlRpcArray = Variant[]; alias XmlRpcStruct = Variant[string]; @trusted: struct MethodCallData { string name; Variant[] params; string toString()...
D
FUNC VOID GruenErzbrocken8_S1 () { var C_NPC her; her = Hlp_GetNpc(PC_Hero); if (Hlp_GetInstanceID(self)==Hlp_GetInstanceID(her)) { if (Npc_HasItems(hero, ItMw_2H_Axe_L_01) == 0) { Print ("Ohne Spitzhacke geht das nicht!"); AI_UseMob (hero, "ORE", -1); return; }; B_SetAivar(self, AIV_INVINCI...
D
module rdm.math.matrix; import std.math; import std.traits; import std.meta; import rdm.math.vector; import rdm.utility.meta : Iota; alias Matrix4f = Matrix!(4, float); public Matrix4f createPerspectiveMatrix(float fov, float aspectRatio, float zNear, float zFar) { Matrix4f matrix; float ar = aspectRatio; ...
D
/***********************************************************************\ * dlgs.d * * * * Windows API header module * * ...
D
/Users/ameeradamsika/Desktop/IOS/Demo/LoginWithRxSwift/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/MainScheduler.o : /Users/ameeradamsika/Desktop/IOS/Demo/LoginWithRxSwift/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/ameeradamsika/Desktop/IOS/Demo/LoginWithRxSwift/Pods/RxSwift/RxSwif...
D
//************************************ // Shadowbeast-Skeleton PROTOTYPE //************************************ PROTOTYPE Mst_Default_Shadowbeast_Skeleton(C_Npc) { //----- Monster ---- name = "Schattenläuferskelett"; guild = GIL_SHADOWBEAST_SKELETON; aivar[AIV_MM_REAL_ID] = ID_SHADOWBEAST_SKELETO...
D
/** * Copyright: Copyright (c) 2010-2011 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: Nov 5, 2010 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module tests.all; import orange.test.UnitTester; /* * The tests that test for XM...
D
# DO NOT DELETE .wscode.4585017a-8463-11e4-9717-fa358a89beef.myWS/RooCFAuto007Func_cxx.so: /afs/cern.ch/sw/lcg/app/releases/ROOT/5.34.05/x86_64-slc5-gcc43-opt/root/include/Riostream.h .wscode.4585017a-8463-11e4-9717-fa358a89beef.myWS/RooCFAuto007Func_cxx.so: /afs/cern.ch/sw/lcg/app/releases/ROOT/5.34.05/x86_64-slc5-g...
D
/***********************************************************************\ * rpcndr.d * * * * Windows API header module * * ...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; import core.bitop; void get(Args...)(ref Args args) { import std.traits, std.meta, std.typecons; static if (Args.length == 1) { alias Arg = Args[0]; static ...
D
/Users/lukeporupski/Projects/Added_2/build/Added_2.build/Debug-iphonesimulator/Added_2.build/Objects-normal/x86_64/CameraViewController.o : /Users/lukeporupski/Projects/Added_2/Added_2/LFLoginController.swift /Users/lukeporupski/Projects/Added_2/Added_2/EZSwipeController.swift /Users/lukeporupski/Projects/Added_2/Added...
D
module common.containers.PriorityQueue; import common.all; import std.traits : isEqualityComparable, isOrderingComparable; auto makeHighPriorityQueue(T)() { return new PriorityQueue!(T, true); } auto makeLowPriorityQueue(T)() { return new PriorityQueue!(T, false); } /** * A priority queue implemented using a back...
D
// Copyright © 2011, Jakob Bornecrantz. All rights reserved. // See copyright notice in src/charge/charge.d (GPLv2 only). /** * Source file for CommonCore. */ module charge.platform.core.common; import lib.loader; import lib.al.al; import lib.al.loader; import lib.ode.ode; import lib.ode.loader; import charge.core...
D
module android.java.java.util.Deque; public import android.java.java.util.Deque_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!Deque; import import5 = android.java.java.util.stream.Stream; import import1 = android.java.java.lang.Class; import import4 = android.java.java.util.Spliterator; impo...
D
/** URL parsing routines. Copyright: © 2012-2017 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.inet.url; public import vibe.core.path; import vibe.textfilter.urlencode; import vibe.utils.string; import std.array; ...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010 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/LICENSE_1...
D
module citro3d.light; import ctru.types; import ctru.gpu.enums; import citro3d.lightlut; import citro3d.types; extern (C): nothrow: @nogc: //----------------------------------------------------------------------------- // Material //----------------------------------------------------------------------------- struc...
D
// Written in the D programming language. /** This module declares basic data types for usage in dlangui library. Synopsis: ---- import dlangui.core.types; // points Point p(5, 10); // rectangles Rect r(5, 13, 120, 200); writeln(r); // reference counted objects, useful for RAII / resource management. class Foo :...
D
/** * This module provides OS specific helper function for DLL support * * Copyright: Copyright Digital Mars 2010 - 2010. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Rainer Schuetze */ /* Copyright Digital Mars 2010 - 2010. * Distributed under the Boo...
D
/** * Compiler implementation of the $(LINK2 http://www.dlang.org, D programming language) * * Copyright: Copyright (C) 1999-2018 by The D Language Foundation, All Rights Reserved * Authors: Walter Bright, http://www.digitalmars.com * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * S...
D
module haxe.Std; import haxe.HaxeTypes; import IntUtil = tango.text.convert.Integer; import tango.core.Traits; class Std { public static long parseInt(String v) { // if(cast(String) v) { // return IntUtil.parse((cast(String) v).value); // } // return 0; return IntUtil.parse( v.value); } public static l...
D
module android.java.java.util.concurrent.atomic.AtomicBoolean_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 AtomicBoolean : IJavaObje...
D
/** # # Copyright (c) 2018 IoTone, Inc. All rights reserved. # # 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, m...
D
module dlex.caccept; class CAccept { /*************************************************************** Member Variables **************************************************************/ char m_action[]; int m_action_read; int m_line_number; /*************************************************************** Funct...
D
/** * Written in the D programming language. * This module provides functions to uniform calculating hash values for different types * * Copyright: Copyright Igor Stepanov 2013-2013. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Igor Stepanov * Source: $(DRUNTIMESRC core/int...
D
instance GRD_224_Pacho(Npc_Default) { name[0] = "Pacho"; npcType = npctype_main; guild = GIL_GRD; level = 10; voice = 13; id = 224; attribute[ATR_STRENGTH] = 35; attribute[ATR_DEXTERITY] = 35; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 160; attribute[ATR_HITPOINTS]...
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/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/Routing.build/Register/Route.swift.o : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/routing/Sources/Routing/Utilities/Deprecated.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/r...
D
module client.inputlistener; import base.messages : BaseMessage; import thBase.container.queue; /** * list of keys that change the behaviour of other keys */ enum ModKeys : uint { LSHIFT= 0x0001, /// left shift RSHIFT= 0x0002, /// right shift LCTRL = 0x0040, /// left ctrl RCTRL = 0x0080, /// right ...
D
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsyncSubject.o : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Docume...
D
/Users/shrijanaryal/Desktop/ios/ParseChat/DerivedData/ParseChat/Build/Intermediates.noindex/ParseChat.build/Debug-iphonesimulator/ParseChat.build/Objects-normal/x86_64/ChatCell.o : /Users/shrijanaryal/Desktop/ios/ParseChat/ParseChat/AppDelegate.swift /Users/shrijanaryal/Desktop/ios/ParseChat/ParseChat/Views/ChatCell.sw...
D
INSTANCE Mod_4026_NONE_Kuno_NW (Npc_Default) { // ------ NSC ------ name = "Kuno"; guild = GIL_OUT; id = 4026; voice = 9; flags = 0; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 4); // ------ Kampf-Taktik ------ fight_tactic = FAI_...
D
/** * Copyright © DiamondMVC 2018 * License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE) * Author: Jacob Jensen (bausshf) */ module diamond.security.tokens.tokengenerator; import diamond.core.apptype; static if (isWeb) { /// Wrapper for a token generator. abstract class TokenGenerator { ...
D
/Users/obuchiyuki/Desktop/SaftyDrive/Build/Intermediates/IBDesignables/Intermediates/SaftyDrive.build/Debug-iphonesimulator/SaftyDrive.build/Objects-normal/x86_64/PagingCellViewController.o : /Users/obuchiyuki/Desktop/SaftyDrive/SaftyDrive/MK/MKSnackbar.swift /Users/obuchiyuki/Desktop/SaftyDrive/SaftyDrive/RMMenu.swift...
D
/home/zbf/workspace/git/RTAP/target/debug/deps/lettre-0c86172ccdc47af4.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lettre-0.9.2/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lettre-0.9.2/src/error.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0c...
D
: C B L A S _ Z H E R K EXAMPLE PROGRAM DATA 2 4 :Values of n, k 0.5 1.2 :Values of alpha, beta 121 113 101 :Values of uplo, trans, order (-3.23, 0.41) (-2.7, 1.1 ) ( 4.05,-3.06) ( 5.2, 7.0 ) ( 0.09, 0.77) ( 4.0, 0.88) ( 1.72, 1.13) ( 2.4, 0.21) :Values of array A ( 5.53,-4.41) ...
D
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ConcurrentDispatchQueueScheduler.o : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/A...
D
instance DIA_Addon_BDT_10029_Buddler_EXIT(C_Info) { npc = BDT_10029_Addon_Buddler; nr = 999; condition = DIA_Addon_10029_Buddler_EXIT_Condition; information = DIA_Addon_10029_Buddler_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_10029_Buddler_EXIT_Condition() { return TRUE; }; ...
D
/Users/esharp2/MobileSensing/CoreMotionLab/Build/Intermediates/Commotion.build/Debug-iphoneos/Commotion.build/Objects-normal/arm64/GameViewController.o : /Users/esharp2/MobileSensing/CoreMotionLab/Commotion/GameScene.swift /Users/esharp2/MobileSensing/CoreMotionLab/Commotion/GameWinScene.swift /Users/esharp2/MobileSens...
D
/// A CAPTCHA generator for D services. /// Written in the D programming language. module dcaptcha.dcaptcha; import std.algorithm; import std.conv; import std.exception; import std.random; import std.range; import std.string; import ae.utils.array; import dcaptcha.markov; struct CaptchaSpec { bool allowEasy = tru...
D
module platemaker; public import platemaker.NetworkDisplay; public import platemaker.PlateBound; public import platemaker.PlateNetwork; public import platemaker.Data;
D
/Users/pavlosnicolaou/Documents/workshop/Kitura/KituraWebInterface/KituraWebInterface_Starter/.build/x86_64-apple-macosx10.10/debug/KituraWebInterface.build/Routes/ClientRoutes.swift.o : /Users/pavlosnicolaou/Documents/workshop/Kitura/KituraWebInterface/KituraWebInterface_Starter/Sources/KituraWebInterface/Models/Acron...
D
prototype Mst_Default_Minecrawler(C_Npc) { name[0] = "Pe³zacz"; guild = GIL_MINECRAWLER; aivar[AIV_IMPORTANT] = ID_MINECRAWLER; level = 13; attribute[ATR_STRENGTH] = 65; attribute[ATR_DEXTERITY] = 30; attribute[ATR_HITPOINTS_MAX] = 90; attribute[ATR_HITPOINTS] = 90; attribute[ATR_MANA_MAX] = 0; attribute[ATR...
D
/Users/liaohua/fisco-bcos/weid-rust-sample/diesel_cli/target/debug/build/serde-1999567b76b718ce/build_script_build-1999567b76b718ce: /Users/liaohua/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.126/build.rs /Users/liaohua/fisco-bcos/weid-rust-sample/diesel_cli/target/debug/build/serde-1999567b76b718ce/buil...
D
module mach.io.stream.memorystream; private: import mach.sys.memory : memmove; import mach.error : enforcebounds; public: static auto asstream(T)(T[] array, size_t pos = 0){ return MemoryStream!(!is(T == const) && !is(T == immutable))(array, pos); } static auto asstream(T)(T* ptr, size_t memlength, size_t pos...
D
/** * Contains traits for runtime internal usage. * * Copyright: Copyright Digital Mars 2014 -. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Martin Nowak * Source: $(DRUNTIMESRC core/internal/_traits.d) */ module core.internal.traits; alias AliasSeq(TList...) = TList; tem...
D
/** * Contains a bitfield used by the GC. * * Copyright: Copyright Digital Mars 2005 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright, David Friedman, Sean Kelly */ /* Copyright Digital Mars 2005 - 2009. * Distributed under the Boost ...
D
/Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.build/lock.swift.o : /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/NIOConcurrencyHelpers/lock.swift /Users/jimallan/Downloads/starter/l...
D
/Users/darius/Documents/xcode/Uzduotis/build/Uzduotis.build/Release-iphonesimulator/Uzduotis.build/Objects-normal/x86_64/AppDelegate.o : /Users/darius/Documents/xcode/Uzduotis/Uzduotis/Seniunijos+CoreDataProperties.swift /Users/darius/Documents/xcode/Uzduotis/Uzduotis/DataTableViewController.swift /Users/darius/Documen...
D
module dlangide.tools.d.deditortool; import dlangide.tools.editortool; import dlangide.tools.d.dcdinterface; import dlangide.ui.dsourceedit; import dlangui.widgets.editors; import dlangide.ui.frame; import std.stdio; import std.string; import std.utf; import dlangui.core.logger; import std.conv; // TODO: async opera...
D
module engine.framework.input; public: import engine.framework.input.action; import engine.framework.input.singleton;
D
/** * Windows API header module * * Translated from MinGW API for MS-Windows 3.10 * * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_basetyps.d) */ module core.sys.windows.basetyps; version (Windows): private import core.sys.windows.windef...
D
// ************************************************************ // EXIT // ************************************************************ INSTANCE DIA_Addon_Greg_EXIT(C_INFO) { npc = PIR_1320_Addon_Greg; nr = 999; condition = DIA_Addon_Greg_EXIT_Condition; information = DIA_Addon_Greg_EXIT_Info; per...
D
/Users/dineshkumardhanekula/Downloads/tejesh143-recipe-madness-164b1d439b39/DerivedData/RecipeMadness/Build/Intermediates/RecipeMadness.build/Debug-iphonesimulator/RecipeMadness.build/Objects-normal/x86_64/AppDelegate.o : /Users/dineshkumardhanekula/Downloads/tejesh143-recipe-madness-164b1d439b39/RecipeMadness/Utility....
D
int main(string[] args) { import std.algorithm : max, maxElement, splitter; import std.array : appender; import std.conv : to; import std.range : take; import std.stdio; if (args.length < 4) { writefln ("synopsis: %s filename keyfield valuefield", args[0]); return 1; } ...
D
module UnrealScript.UnrealEd.GameStatsDBUploader; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.GameplayEventsHandler; extern(C++) interface GameStatsDBUploader : GameplayEventsHandler { public extern(D): private static __gshared ScriptClass mStaticClass; @property final st...
D
var int jora_itemsgiven_chapter_1; var int jora_itemsgiven_chapter_2; var int jora_itemsgiven_chapter_3; var int jora_itemsgiven_chapter_4; var int jora_itemsgiven_chapter_5; var int jora_itemsgiven_chapter_6; func void b_givetradeinv_jora(var C_NPC slf) { if((KAPITEL >= 1) && (JORA_ITEMSGIVEN_CHAPTER_1 == FALSE)) ...
D
module tooling.app; import std.stdio; import tooling.CxxImplement; import tooling.CxxMerge; import tooling.CxxSortFunctions; int main(string[] args) { try { if (args.length > 1) { switch (args[1]) { case "implement": return implementMain(args); case "merge": return mergeMain(args); case "so...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1994-1998 by Symantec * Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: backendli...
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
module formoshlep; public import formoshlep.platform; public import formoshlep.widget; public import dlangui.widgets.widget: Widget;
D
//https://www.reddit.com/r/dailyprogrammer/comments/np3sio/20210531_challenge_392_intermediate_pancake_sort/ import std.stdio : writeln; import std.range : take, retro, chain, drop; import std.algorithm : reverse, maxIndex, isSorted; void main() { } unittest { import std.algorithm : equal; int[] input = [3, ...
D
/* * Licensed under the GNU Lesser General Public License Version 3 * * This library 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 3 of the license, or * (at your option) any late...
D
/******************************************************************//** * \file statistics/LUdecomposition.d * \brief LUdecomposition, LUsolve and LUinvert * * <i>Copyright (c) 1991-2012</i> Ritsert C. Jansen, Danny Arends, Pjotr Prins, Karl W. Broman<br> * Last modified May, 2012<br> * First written 1991<br> * ...
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_6_BeT-62918139...
D
# FIXED F2837xD_GlobalVariableDefs.obj: C:/ti/controlSUITE/device_support/F2837xD/v210/F2837xD_headers/source/F2837xD_GlobalVariableDefs.c F2837xD_GlobalVariableDefs.obj: C:/ti/controlSUITE/device_support/F2837xD/v210/F2837xD_headers/include/F2837xD_device.h F2837xD_GlobalVariableDefs.obj: C:/ti/ccsv7/tools/compil...
D
# FIXED atan2PU.obj: C:/Users/a0272561/Repositories/cs30_controlsuite/libs/math/CLAmath/CLAMATH_VERSION/examples/2837x_atan2PU/cpu01/atan2PU.cla atan2PU.obj: C:/Users/a0272561/Repositories/cs30_controlsuite/libs/math/CLAmath/CLAMATH_VERSION/include/CLAMath.h atan2PU.obj: C:/Users/a0272561/Repositories/cs30_control...
D
/** * D header file to interface with the Linux epoll API (http://man7.org/linux/man-pages/man7/epoll.7.html). * Available since Linux 2.6 * * Copyright: Copyright Adil Baig 2012. * License : $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Authors : Adil Baig (github.com/adilbaig) */ module c...
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 322.100006 68 3.70000005 44.7999992 80 100 -36.4000015 149.899994 5723 6.0999999 6.0999999 0.510017938 sediments, redbeds 340 40 5 0 80 100 -33.7999992 150.699997 1768 10 10 0.497979734 intrusives 325 55 5 0 80 100 -33.9000015 151.300003 1766 10...
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
a conspicuous mistake whose effects seem to reverberate
D
module deimos.cef1.zip_reader; // 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 above co...
D
// This file is part of CCBI - Conforming Concurrent Befunge-98 Interpreter // Copyright (c) 2006-2010 Matti Niemenmaa // See license.txt, which you should have received together with this file, for // licensing information. // File created: 2007-01-20 21:12:24 module ccbi.fingerprints.rcfunge98.base; import tango.c...
D
/** * Copyright © DiamondMVC 2017 * License: MIT (https://github.com/DiamondMVC/Diamond-db/blob/master/LICENSE) * Author: Jacob Jensen (bausshf) */ module diamond.database.core.traits; /// Mixin template to handle fields of a type. mixin template HandleFields(T, string handler) { string handleThem() { mixin Handle...
D
module cmsed.user.caches.policy; import cmsed.user.models.policy; import cmsed.base; mixin CacheManager!(PolicyModel, "getPolicies"); /** * Gets a policy by name * * Params: * name = The name of the policy to get * * Returns: * A data model containing the policy. Which can be updated. */ PolicyModel ...
D
/* * exempi-d - exempi.xmpconsts * * Bindings by Les De Ridder <les@lesderid.net> * * Copyright (C) 2007-2016 Hubert Figuiere * Copyright 2002-2007 Adobe Systems Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided th...
D
module net.all; public import net.client; public import net.message; public import net.server;
D
/** * Copyright: Copyright (c) 2012 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: Aug 1, 2012 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module mambo.text.Inflections; string pluralize (string str, size_t count = size_t.max)...
D
# FIXED Include/uart_logs.obj: C:/ti/simplelink_academy_01_10_00_0000/modules/projects/support_files/Components/uart_log/uart_logs.c Include/uart_logs.obj: C:/ti/tirtos_cc13xx_cc26xx_2_18_00_03/products/tidrivers_cc13xx_cc26xx_2_16_01_13/packages/ti/drivers/UART.h Include/uart_logs.obj: C:/ti/ccsv6/tools/compiler/arm_...
D
/** * Windows API header module * * Translated from MinGW API for MS-Windows 3.10 * * Authors: Stewart Gordon * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_aclui.d) */ module core.sys.windows.aclui; version (Windows): @system: pragma(li...
D
/* Copyright (c) 2018-2020 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,...
D
// URL: https://atcoder.jp/contests/abc111/tasks/arc103_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
import imports.fail355 : nonexistent;
D
const int SPL_COST_Deathball = 35; const int SPL_DAMAGE_Deathball = 190; instance Spell_Deathball(C_Spell_Proto) { time_per_mana = 0; damage_per_level = SPL_DAMAGE_Deathball; }; func int Spell_Logic_Deathball(var int manaInvested) { if(Npc_GetActiveSpellIsScroll(self) && (self.attribute[ATR_MANA] >= SPL_Cost_Scr...
D
lasting for a markedly brief time
D
module windows.windowsdeploymentservices; public import windows.automation; public import windows.com; public import windows.systemservices; public import windows.windowsandmessaging; public import windows.windowsprogramming; extern(Windows): struct WDS_CLI_CRED { const(wchar)* pwszUserName; const(wchar)* pw...
D
/** HIGH LEVEL NOTES This will offer a pollable state of two styles of controller: a PS1 or an XBox 360. Actually, maybe I'll combine the two controller types. Make L2 and R2 just digital aliases for the triggers, which are analog aliases for it. Then have a virtual left stick which has the dpad aliases, while...
D
/* TEST_OUTPUT: --- fail_compilation/diag6373.d(7): Deprecation: class diag6373.Bar use of diag6373.Foo.method(double x) hidden by Bar is deprecated. Use 'alias Foo.method method;' to introduce base class overload set. --- */ #line 1 class Foo { void method(int x) { } void method(double x) { } } class Bar : F...
D
module knet.lectures.pos; import std.file; import knet.base; void learnPartOfSpeech(Graph graph) { import knet.lectures.pronouns; graph.learnPronouns(); import knet.lectures.adjectives; graph.learnAdjectives(); import knet.lectures.adverbs; graph.learnAdverbs(); import knet.lectures.art...
D
module emerald.scenes.ManySpheres; import emerald.all; final class ManySpheres : Scene { private: Texture marbleTex; Texture brickTex; Texture rock8Tex; Texture redWhiteTex; Texture uvsTex; Texture earthTex; public: this(uint width, uint height) { super(new Camera( floa...
D
resembling a labyrinth in form or complexity
D
/********************************************************* Copyright: (C) 2008-2010 by Steven Schveighoffer. All rights reserved License: Boost Software License version 1.0 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accomp...
D
// @file operator_overload.d import std.stdio; struct StructType{ int mData1; int mData2; this(const ref StructType rhs){ writeln("copy being made!"); mData1 = rhs.mData1; mData2 = rhs.mData2; } // = void opAssign(StructType rhs){ writeln("Assignment"); mDa...
D
a single distinct event a public disturbance
D
module sql.attributes; public import std.traits; public import std.meta; //AliasSeq is such a bad name. //I do much prefer Alias //In addition the current Alias in //std.meta is wierd, what would be the usecase? alias Alias(T...) = T; //When placed on a struct it signifies that the struct //contains a description of ...
D
/** Wrapper streams which count the number of bytes or limit the stream based on the number of transferred bytes. Copyright: © 2012 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 vibe.stream.counting; public imp...
D