code
stringlengths
3
10M
language
stringclasses
31 values
/** WinRT driver implementation Copyright: © 2012 Sönke Ludwig Authors: Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ module vibe.core.drivers.winrt; class WinRtEventDriver : EventDriver { private { DriverCore m_core; } this(DriverCore core) ...
D
void main() { runSolver(); } void problem() { auto N = scan!long; auto T = scan!long(N); auto solve() { long ans = long.max; const total = T.sum; long[long][] dp; dp.length = N + 1; dp[0][0] = 1; foreach(i, t; T) { foreach(x; dp[i].keys) { dp[i + 1][x] = 1; dp[i + ...
D
instance DIA_SENYAN_EXIT(C_INFO) { npc = sfb_1000_senyan; nr = 999; condition = dia_senyan_exit_condition; information = dia_senyan_exit_info; permanent = 1; description = DIALOG_ENDE; }; func int dia_senyan_exit_condition() { return 1; }; func void dia_senyan_exit_info() { AI_StopProcessInfos(self); }; i...
D
// Test for Intel CET protection disabled static assert(__traits(getTargetInfo, "CET") == 0);
D
/afs/cern.ch/work/m/mmittal/private/MyAnalysisCode/RootCoreBin/obj/x86_64-slc6-gcc49-opt/MadGraphME/obj/CPPProcess_P0_Sigma_HC_NLO_X0_UFO_pp_Xjj_4l_HC_NLO_X0_UFO_us_cdepemmupmum.o /afs/cern.ch/work/m/mmittal/private/MyAnalysisCode/RootCoreBin/obj/x86_64-slc6-gcc49-opt/MadGraphME/obj/CPPProcess_P0_Sigma_HC_NLO_X0_UFO_pp...
D
module parser.taskhandlers; /** * Mixin template for return statement. */ mixin template ReturnStatement() { /** * Handling the return statement. */ bool handleReturnStatement() { scope auto tokenized = tokenizeReturn(fileName, lineNumber, line); string varName = tokenized[0]; if (!varName) return true; ...
D
/** A static HTTP file server. 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.http.fileserver; import vibe.core.file; import vibe.core.log; import vibe.http.server; import vibe.inet.mimetyp...
D
instance BAU_106_DS2P_Maria(Npc_Default) { name[0] = "Мария"; guild = GIL_BAU; id = 106; voice = 17; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_1h_Bau_Axe); B_CreateAmbientInv(self); B_SetNpcVisual(self,FEMALE,"Hum_Head_Babe8",Fac...
D
/Users/zhengnanzhu/Desktop/docu/Web/Hw5/DerivedData/Hw5/Build/Intermediates.noindex/Hw5.build/Debug-iphonesimulator/Hw5.build/Objects-normal/x86_64/ThirdViewController.o : /Users/zhengnanzhu/Desktop/docu/Web/Hw5/Hw5/AppDelegate.swift /Users/zhengnanzhu/Desktop/docu/Web/Hw5/Hw5/NameValueCell.swift /Users/zhengnanzhu/Des...
D
module UnrealScript.TribesGame.TrDmgType_LightSpinfusor_100X; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.TrDmgType_Spinfusor; extern(C++) interface TrDmgType_LightSpinfusor_100X : TrDmgType_Spinfusor { public extern(D): private static __gshared ScriptClass mStaticClass...
D
1800.0 0.0000 48.000 1700.0 5.0000 42.000 1600.0 6.0000 38.000 1500.0 3.0000 42.000 1400.0 3.0000 47.000 1300.0 8.0000 55.000 1200.0 0.0000 58.000 1100.0 -10.000 53.000 1000.0 -18.000 50.000 900.00 -15.000 48.000 800.00 -12.000 48.000 700.00 -14.000 56.000 600.00 -16.000 55.000 500.00 -10.800 48.000 400.00 3.0000 52.00...
D
/** * Entry point for DMD. * * This modules defines the entry point (main) for DMD, as well as related * utilities needed for arguments parsing, path manipulation, etc... * This file is not shared with other compilers which use the DMD front-end. * * Copyright: Copyright (C) 1999-2020 by The D Language Foundat...
D
/* TEST_OUTPUT: --- fail_compilation/ice10616.d(9): Error: no property 'B' for type 'ice10616.A' fail_compilation/ice10616.d(9): Error: A.B is used as a type --- */ class A : A.B { interface B {} }
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_11_agm-2836565...
D
/Users/luoguochun/privt/proj/coding-blog/.demo/rust-lib/mini-redis/target/debug/deps/libc-1909595068b9ac5b.rmeta: /Users/luoguochun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.81/src/lib.rs /Users/luoguochun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.81/src/macros.rs /Users/...
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_5_BeT-17843128...
D
fix firmly or securely impinge or infringe upon occupy a trench or secured area
D
/** Contains interfaces and enums for evented I/O drivers. Copyright: © 2012-2014 RejectedSoftware e.K. Authors: Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ module vibe.core.task; import vibe.core.concurrency : newStdConcurrency; import vibe.core....
D
module gtkD.glib.DataList; public import gtkD.gtkc.glibtypes; private import gtkD.gtkc.glib; private import gtkD.glib.ConstructionException; /** * Description * Keyed data lists provide lists of arbitrary data elements which can be accessed * either with a string or with a GQuark corresponding to the * str...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1994-1998 by Symantec * Copyright (c) 2000-2016 by Digital Mars, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: backendli...
D
func void B_Dragon_Undead_Bla() { AI_Output(self,other,"DIA_Addon_UndeadDragon_Add_20_00"); //Ну, сынок? У тебя есть оригинал? }; instance DIA_Dragon_Undead_Exit(C_Info) { npc = Dragon_Undead; nr = 999; condition = DIA_Dragon_Undead_Exit_Condition; information = DIA_Dragon_Undead_Exit_Info; permanent = TRUE; ...
D
a foul-smelling outflow or vapor (especially a gaseous waste)
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
module android.java.android.os.strictmode.CustomViolation_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import1 = android.java.java.io.PrintStream_d_interface; import import4 = android.java.java.lan...
D
/* * $Id: Title.d,v 1.2 2004/01/01 11:26:43 kenta Exp $ * * Copyright 2003 Kenta Cho. All rights reserved. */ module abagames.p47.Title; private: import opengl; import abagames.util.sdl.Pad; import abagames.util.sdl.Screen3D; import abagames.util.sdl.Texture; import abagames.p47.P47GameManager; import abagames.p47...
D
/* * Entity - Entity is an object-relational mapping tool for the D programming language. Referring to the design idea of JPA. * * Copyright (C) 2015-2018 Shanghai Putao Technology Co., Ltd * * Developer: HuntLabs.cn * * Licensed under the Apache-2.0 License. * */ module hunt.entity.repository; public impo...
D
/Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SingleAsync.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...
D
/Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Multipart.build/MultipartError.swift.o : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/multipart.git-4210556629793786970/Sources/Multipart/MultipartPartConvertible.swift /Users/user/Documents/RiseTimeAssets/server/.build/ch...
D
/** * Generate bindings for C[++] in D * * Authors: * Gregor Richards * Tomas "MrSunshine" Wilhelmsson * * License: * Copyright (C) 2006, 2007 Gregor Richards * Copyright (C) 2006 Tomas "MrSunshine" Wilhelmsson * * This program is free software; you can redistribute it and/or * modify it under the t...
D
#!/usr/bin/env rdmd module main; import std.stdio; import std.file; import std.conv; import std.string; import std.exception; import std.algorithm; import Graph; import UGraph; import Vertex; //import Console; import Util; //void readFileIntoGraph(int graph, const string filename) //{ // // check // assert(exists(f...
D
import std.stdio; import std.typecons; import std.datetime.stopwatch; import dataset; import algorithms.linear; import algorithms.tree; import algorithms.hash; enum MeasureTimeMax = 10; alias time_t = double; auto measure(S, alias samplingInterval)(S set, size_t n) { StopWatch sw; time_t min = time_t.max; time_t ...
D
module UnrealScript.Core.ScriptStruct; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Core.Struct; extern(C++) interface ScriptStruct : Struct { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass StaticClass() { mixin(MGSCC("Clas...
D
module ea.population; import ea.ea_config; import ea.individual; import pyd.pyd; import std.algorithm.sorting; import std.container; import std.conv; import std.math; import std.random; import std.stdio; class Population { EaConfig config; Individual[] children; Individual[] adults; Individual[] chil...
D
module derpi.parser; import std.container; import derpi.table; import derpi.helper; /++ + Represents a token consumed by the parser. ++/ class ParserToken { /++ + The terminal matched by the token. ++/ Terminal type; /++ + The string repsented by the token. ++/ string text; /++ + Constructs a ne...
D
/** * main: Main entry point, CLI arguments, initiate sub-systems */ module main; import core.stdc.string : strcmp; import ddc : puts, printf, fputs, stderr, stdout; import vcpu.core : vcpu_init, vcpu_run, opt_sleep; import vdos.os : LOGO, SYSTEM, vdos_init; import vdos.shell : vdos_shell; import vdos.codes; import ...
D
/** DGui project file. Copyright: Trogu Antonio Davide 2011-2013 License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: Trogu Antonio Davide */ module dguihub.textbox; import dguihub.core.controls.textcontrol; enum CharacterCasing { normal = 0, uppercase = ES_UPPERCASE, lowercase = ES_LOW...
D
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Filter.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/danielmorales/CSUMB/Potluck/...
D
// Written in the D programming language. /** This module implements the formatting functionality for strings and I/O. It's comparable to C99's $(D 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 dedi...
D
/** * The event module provides a primitive for lightweight signaling of other threads * (emulating Windows events on Posix) * * Copyright: Copyright (c) 2019 D Language Foundation * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompany...
D
module ws.wm.win32.wm; version(Windows): import std.utf, ws.list, ws.log, ws.gui.input, ws.wm.win32.api, ws.wm.win32.window, ws.wm.baseWindowManager, ws.wm; __gshared: class Win32WindowManager: BaseWindowManager { T_wglChoosePixelFormatARB wglChoosePixelFormatARB; T_wglCreateContextAttribsARB wglCreate...
D
INSTANCE Mod_7127_ASS_Krieger_NW (Npc_Default) { // ------ NSC ------ name = "Assassinenkrieger"; guild = GIL_OUT; id = 7127; voice = 0; flags = 0; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 4); // ------ Kampf-Taktik ...
D
alias int64_t = long; alias uint64_t = ulong; alias int32_t = int; /// alias GLboolean = bool; /// alias GLbyte = byte; /// alias GLubyte = ubyte; /// alias GLshort = short; /// alias GLushort = ushort; /// alias GLhalf = ushort; /// alias GLint = int; /// alias GLuint = uint; /// alias GLfixed = ...
D
// test EH void throwException() { throw new Exception(null); } Exception collectException(void delegate() dg) { try dg(); catch (Exception e) return e; return null; } // test GC __gshared Object root; void alloc() { root = new Object(); } void access() { assert(root.toString() !is nul...
D
module godot.physics2ddirectbodystatesw; import std.meta : AliasSeq, staticIndexOf; import std.traits : Unqual; import godot.d.meta; import godot.core; import godot.c; import godot.d.bind; import godot.object; import godot.physics2ddirectbodystate; @GodotBaseClass struct Physics2DDirectBodyStateSW { static immutable s...
D
module rendering; import graphics; import graphics.convinience; import math; import collections; import content; import types; import content.sdl; import derelict.glfw3.glfw3; import main; import game; import achtung_game_data; /** Very simple renderer that stores everything that has been drawn into a rendertarget. *...
D
module served.commands.format; import served.extension; import served.types; import workspaced.api; import workspaced.coms; import std.conv : to; @protocolMethod("textDocument/formatting") TextEdit[] provideFormatting(DocumentFormattingParams params) { auto config = workspace(params.textDocument.uri).config; if (...
D
module godot.gdscript; import std.meta : AliasSeq, staticIndexOf; import std.traits : Unqual; import godot.d.meta; import godot.core; import godot.c; import godot.d.bind; import godot.object; import godot.classdb; import godot.script; @GodotBaseClass struct GDScript { static immutable string _GODOT_internal_name = "GD...
D
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/SQL.build/SQLLiteral.swift.o : /Users/nice/HelloWord/.build/checkouts/sql.git-3312412671859601518/Sources/SQL/SQLBind.swift /Users/nice/HelloWord/.build/checkouts/sql.git-3312412671859601518/Sources/SQL/SQLJoinMethod.swift /Users/nice/HelloWord/.build/checkout...
D
/// module std.experimental.allocator.building_blocks.null_allocator; /** $(D NullAllocator) is an emphatically empty implementation of the allocator interface. Although it has no direct use, it is useful as a "terminator" in composite allocators. */ struct NullAllocator { import std.typecons : Ternary; /** ...
D
/******************************************************************************* Helper classes to tag & merge Copyright: Copyright (c) 2017 dunnhumby Germany GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. ****************************...
D
/Users/abdulbasitajeigbe/cs181g/engine2d/target/debug/deps/minimp3-0e8a6eceef9a2aa9.rmeta: /Users/abdulbasitajeigbe/.cargo/registry/src/github.com-1ecc6299db9ec823/minimp3-0.5.1/src/lib.rs /Users/abdulbasitajeigbe/.cargo/registry/src/github.com-1ecc6299db9ec823/minimp3-0.5.1/src/error.rs /Users/abdulbasitajeigbe/cs181...
D
module gsl.combination; /* combination/gsl_combination.h * based on permutation/gsl_permutation.h by Brian Gough * * Copyright (C) 2001 Szymon Jaroszewicz * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free S...
D
enum NodeType { ELEMENT_NODE = 1, TEXT_NODE = 3, COMMENT_NODE = 8, DOCUMENT_NODE = 9, DOCUMENT_TYPE_NODE = 10, DOCUMENT_FRAGMENT_NODE = 11 } struct Node { EventTarget eventTarget; NodeType nodeType; string nodeValue; // t...
D
/* EXTRA_FILES: imports/constraints.d TEST_OUTPUT: --- fail_compilation/constraints_func2.d(94): Error: template `imports.constraints.test13` cannot deduce function from argument types `!()(int)` fail_compilation/imports/constraints.d(23): Candidate is: `test13(T)(T v)` with `T = int` must satisfy one of the...
D
/Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationLineSpinFadeLoader.o : /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationB...
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
a strong solution of sodium or potassium hydroxide
D
instance BAU_914_Bauer(Npc_Default) { name[0] = NAME_Bauer; npcType = npctype_ambient; guild = GIL_BAU; level = 2; voice = 9; id = 914; attribute[ATR_STRENGTH] = 25; attribute[ATR_DEXTERITY] = 25; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 106; attribute[ATR_HITPOIN...
D
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.build/Run/Output+Help.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/console/Sources/Command/Command/Command.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/console/Sou...
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 app...
D
/** * Общие определения Copyright: © 2014-2017 Semantic Machines License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Valeriy Bushenev */ module veda.common.type; import std.math, std.stdio, std.conv, std.string; /// id подсистем public enum SUBSYSTEM : l...
D
module imports.test57b; class C(T) { struct X {} }
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
module dunitconversion.conversionrule; import dunitconversion.linearfunction; /** * The ConversionRule struct represents a unit conversion rule from * base unit to second unit within the specified family. Note that in UnitConvertor * class each family can be represented with the single base unit. In other words yo...
D
module gherkin.util; import std.algorithm : filter; import std.file : isDir, dirEntries, isFile, SpanMode; import std.path : extension; /// string[] getFeatureFiles(string[] args) { string[] featureFilesAndDirs = args.length > 1 ? args[1 .. $] : ["features"]; string[] featureFiles; foreach (fileOrDir; fe...
D
instance DIA_LEE_DI_EXIT(C_INFO) { npc = sld_800_lee_di; nr = 999; condition = dia_lee_di_exit_condition; information = dia_lee_di_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_lee_di_exit_condition() { return TRUE; }; func void dia_lee_di_exit_info() { AI_StopProcessInfos(self); }...
D
/Users/jaison/Documents/Drive/custom-api/.build/debug/URI.build/Parser/Parser.swift.o : /Users/jaison/Documents/Drive/custom-api/Packages/Engine-1.3.12/Sources/URI/PercentDecoding.swift /Users/jaison/Documents/Drive/custom-api/Packages/Engine-1.3.12/Sources/URI/Model/URI+Byte.swift /Users/jaison/Documents/Drive/custom-...
D
/home/albertfega/Desktop/LaSalleChat/.build/x86_64-unknown-linux/debug/Vapor.build/JSON/HTTP/Body+JSON.swift.o : /home/albertfega/Desktop/LaSalleChat/.build/checkouts/vapor.git-5567719720411555524/Sources/Vapor/JSON/HTTP/Message+JSON.swift /home/albertfega/Desktop/LaSalleChat/.build/checkouts/vapor.git-5567719720411555...
D
<?xml version="1.0" encoding="UTF-8"?> <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="model.notation#_HpoxQCtwEeOAp5QpJ6...
D
/* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed...
D
// ******** // ZS_Ghost //quarhodron // ******** func void ZS_Ghost () { B_UseHat (self); Npc_PercEnable (self, PERC_ASSESSDAMAGE , B_AssessDamage ); B_ResetAll (self); if (self.aivar[AIV_Schwierigkeitsgrad] < Mod_Schwierigkeit) || (self.aivar[AIV_Schwierigkeitsgrad] > Mod_Schwierigkeit) { B_...
D
import std.stdio; import std.regex; import std.string; import std.algorithm; import std.conv; void main() { //auto r = regex(r"</?(\w+)>"); auto r = ctRegex!r"</?([^>]+?)>"; replaceAll!(w => w[0].toUpper)(stdin.byLine.joiner("\n").to!string, r).write; stdout.flush(); }
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")...
D
module android.java.android.provider.ContactsContract_FullNameStyle; public import android.java.android.provider.ContactsContract_FullNameStyle_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ContactsContract_FullNameStyle; import import0 = android.java.java.lang.Class;
D
module android.java.java.lang.SafeVarargs; public import android.java.java.lang.SafeVarargs_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!SafeVarargs; import import0 = android.java.java.lang.Class;
D
module hardware.hwelement; import saillog; import hardware.hardware; import hardware.devices; import fifo; import filter; /** Abstract class to represent a hardware element/device */ abstract class HWElement(T) { /** ID of the device, which can be used to cast it to the final type */ @property{ DeviceID ...
D
module requests.base; import requests.streams; import requests.utils; import requests.uri; import std.format; import std.datetime; import core.time; import std.stdio; import std.algorithm; import std.string; import std.exception; import std.bitmanip; import std.conv; /++ Interface to provide user info and http...
D
module org.serviio.external.DCRawCLBuilder; import java.lang.String; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org.serviio.external.AbstractCLBuilder; public class DCRawCLBuilder : AbstractCLBuilder { static String executablePath; private /*final*/ List!(String) ...
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")...
D
instance BDT_10313_Addon_RangerBandit_L(Npc_Default) { name[0] = NAME_Bandit; guild = GIL_BDT; id = 10313; voice = 13; flags = 0; npcType = NPCTYPE_AMBIENT; B_SetAttributesToChapter(self,2); fight_tactic = FAI_HUMAN_NORMAL; EquipItem(self,ItMw_Addon_BanditTrader); B_CreateAmbientInv(self); B_SetNpcVisual(se...
D
/***********************************************************************\ * basetsd.d * * * * Windows API header module * * ...
D
/** * Written in the D programming language. * This module provides OS X x86 specific support for sections. * * Copyright: Copyright Digital Mars 2008 - 2016. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) *...
D
/** * Star generator, randomly generates stars to create spacey effects */ module game.entity.StarGenerator; import game.entity.model.Direction; import game.entity.model.Generator; import game.entity.Star; import std.random; /** * StarGenerator class */ public class StarGenerator : Generator!Star { /** ...
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
/substrate-node-template/target/release/deps/libp2p-af1ce0116790d8c0.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-0.28.1/src/lib.rs /root/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-0.28.1/src/transport_ext.rs /root/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-0.28.1/src/band...
D
/Users/rafaelcunhadeoliveira/Documents/MapstedTestCaseEight/build/MapstedTestCaseEight.build/Debug-iphonesimulator/MapstedTestCaseEight.build/Objects-normal/x86_64/Manufacturer.o : /Users/rafaelcunhadeoliveira/Documents/MapstedTestCaseEight/MapstedTestCaseEight/Model/Object/Analytic.swift /Users/rafaelcunhadeoliveira/D...
D
/* Copyright (c) 2015-2023 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, dist...
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
<?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_24_BeT-4113683...
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
module dwt.internal.ole.win32.OBJIDL; //+------------------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992-1997. // // File: objidl.idl // //-------------------------------------------------------------------------- private import dwt.int...
D
/** * Authors: The D DBI project * Copyright: BSD license */ module dbi.ErrorCode; /** * The standardized D DBI ошибка code list. * * Note that the only things guaranteed not to change are ОшибкиНет and Неизвестен. */ enum КодОшибки { ОшибкиНет = 0, // There is no ошибка right now. Неизв...
D
# FIXED Application/SensorTag_Opt.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/Projects/ble/SensorTag/CC26xx/Source/Application/SensorTag_Opt.c Application/SensorTag_Opt.obj: C:/ti/tirtos_simplelink_2_13_00_06/products/bios_6_42_00_08/packages/ti/sysbios/knl/Clock.h Application/SensorTag_Opt.obj: C:/ti/xdctools_3_31...
D
/******************************************************************************* Core functionality required by a request on a specific connection, the client and node RequestOnConn classes have this in common. This class is also the public API for advanced and customised event handling for requests. ...
D
/* Implementation of std.regex IR, an intermediate representation of a regular expression pattern. This is a common ground between frontend regex component (parser) and backend components - generators, matchers and other "filters". */ module std.regex.internal.ir; package(std.regex): import std.excep...
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 dscanner.analysis.properly_documented_public_functions; import dparse.lexer; import dparse.ast; import dparse.formatter : astFmt = format; impo...
D
/******************************************************************************* * Copyright (c) 2000, 2006 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
import std.stdio,std.math,std.string,std.conv,std.typecons,std.format; import std.algorithm,std.range,std.array,std.numeric; T[] readarr(T=long)(){return readln.chomp.split.to!(T[]);} void scan(T...)(ref T args){auto input=readln.chomp.split;foreach(i,t;T)args[i]=input[i].to!t;} struct Queue(T){T[]e;auto enq(T t){e~=...
D
instance DIA_PAL_262_EXIT(C_Info) { npc = PAL_262_Wache; nr = 999; condition = DIA_PAL_262_EXIT_Condition; information = DIA_PAL_262_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_PAL_262_EXIT_Condition() { return TRUE; }; func void DIA_PAL_262_EXIT_Info() { AI_StopProcessInfos(self...
D
module android.java.android.service.autofill.FillEventHistory_Event; public import android.java.android.service.autofill.FillEventHistory_Event_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!FillEventHistory_Event; import import2 = android.java.java.util.Map; import import3 = android.java.jav...
D