code
stringlengths
3
10M
language
stringclasses
31 values
module org.serviio.upnp.service.contentdirectory.CDSCacheDecorator; import java.lang.String; import org.serviio.cache.CacheDecorator; import org.serviio.library.entities.AccessGroup; import org.serviio.profile.Profile; import org.serviio.upnp.service.contentdirectory.classes.DirectoryObject; import org.serviio....
D
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly, Alex Rønne Petersen * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* Copyright Sean ...
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
/** * 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: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Bo...
D
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/Vapor.build/Sessions/KeyedCacheSessions.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/vapor/S...
D
/** WinAPI based event driver implementation. This driver uses overlapped I/O to model asynchronous I/O operations efficiently. The driver's event loop processes UI messages, so that it integrates with GUI applications transparently. */ module eventcore.drivers.winapi.driver; version (Windows): import eventcore....
D
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/Routing.build/Routing/TrieRouter.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/routing/Sources/Routing/Utilities/Deprecated.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/routin...
D
# FIXED interrupt.obj: C:/ti/TivaWare_C_Series-2.1.4.178/driverlib/interrupt.c interrupt.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include/stdbool.h interrupt.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include/stdint.h interrupt.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.3.LTS/include/...
D
module entreri.entreriexception; class EntreriException: object.Error { this(string message, string file = __FILE__, size_t line = __LINE__, Throwable next = null) { super(message, file, line, next); } }
D
[general] Manufacturer=Не трогать Model=Взрывоопасно [OEMSpecific] SubModel=<My Computer> SerialNo=<12345> OEM1=<05.05.97> OEM2=<Eintrag> [Support Information] Line1=Семейство форточек MUSD DIE Line2=Все винды - ГОВНО Line3=Сме-е-е-е-е-е-ерть ИМ! Line4=ВАША СИСТЕМА ПОРАЖЕНА МАРАЗМОМ!!! Line5=
D
/// Stub out method bodies in a C# project. /// Useful for getting decompiled code to partially compile. /// Also does some project/solution file edits to make editing/merging easier. import std.algorithm; import std.array; import std.exception; import std.file; import std.path; import std.stdio; import std.string; i...
D
/Users/yq/Project/Swift/SwiftGroup/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/HandyJSON.build/Objects-normal/x86_64/MangledName.o : /Users/yq/Project/Swift/SwiftGroup/Pods/HandyJSON/Source/Metadata.swift /Users/yq/Project/Swift/SwiftGroup/Pods/HandyJSON/Source/CBridge.swift /Users/yq/Project/Swift/Swi...
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
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/HTTP.build/Objects-normal/x86_64/HTTPHeaders+Bearer.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/http.git-6906648727968998715/Sources/HTTP/Utilities/RFC1123.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checko...
D
module blockie.render.vk.VKRenderView; import blockie.render.all; final class VKRenderView : RenderView { private: @Borrowed Vulkan vk; @Borrowed VulkanContext context; public: this(VulkanContext context) { super(context.vk.windowSize().to!float); this.vk = context.vk; ...
D
import std.stdio; void main() { writeln("hello world"); }
D
void solve(){ for(int i; i< N; i++){ for(int j = 0; j <= W;j++) { dp[i+1][j] = max(dp[i+1][j], dp[i][j]); if(j+w[i] <= W) dp[i+1][j+w[i]] = max(dp[i+1][j+w[i]],dp[i][j]+v[i]); } } }
D
version https://git-lfs.github.com/spec/v1 oid sha256:e212b04b7304b5af22ef8b4dfb717a460829b3c0f11e179c0ad7c8113bbad9f5 size 1757
D
/mnt/c/Users/zeliwang/hello_world/digital_signature/target/debug/deps/rustc_serialize-4e61e47c0f007858.rmeta: /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rustc-serialize-0.3.24/src/lib.rs /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rustc-serialize-0.3.24/src/seria...
D
the value of a coordinate on the horizontal axis
D
/** * Constant folding * * Compiler implementation of the * $(LINK2 https://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1985-1998 by Symantec * Copyright (C) 2000-2023 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Wa...
D
import std.stdio; void main() { // string types string s = "soufflé"; wstring ws = "soufflé"w; dstring ds = "soufflé"d; // multi line string auto s1 = " Hi I am a multi-line string"; writeln(s1); auto s2 = "I am" ~ " a string which is" ~ " composed of multiple ...
D
an inhabitant of ancient Thrace a Thraco-Phrygian language spoken by the ancient people of Thrace but extinct by the early Middle Ages of or relating to Thrace or its people or culture
D
/******************************************************************************* Helper class to read and store in memory a null-terminated list of strings using a FiberSelectReader. copyright: Copyright (c) 2011-2017 dunnhumby Germany GmbH. All rights reserved License: Boost Software Li...
D
// URL: https://atcoder.jp/contests/abc142/tasks/abc142_e import std; version(unittest) {} else void main() { int N, M; io.getV(N, M); auto a = new int[](M), K = new int[](M); foreach (i; 0..M) { int ai, bi; io.getV(ai, bi); a[i] = ai; int[] ci; io.getA(bi, ci); ci[] -= 1; foreach (cij; ci) K[i...
D
/Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/CombinedChartDataProvider.o : /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/Jaskeerat/D...
D
module org.serviio.library.local.metadata.extractor.embedded.MP4ExtractionStrategy; import java.io.IOException; import org.jaudiotagger.audio.AudioFile; import org.jaudiotagger.audio.AudioHeader; import org.jaudiotagger.tag.Tag; import org.serviio.dlna.AudioContainer; import org.serviio.library.local.metadata.AudioMet...
D
instance Mod_7684_STT_Schatten_NW (Npc_Default) { //-------- primary data -------- name = NAME_Schatten; npctype = NPCTYPE_MAIN; guild = GIL_out; level = 5; voice = 0; id = 7684; //-------- abilities -------- B_SetAttributesToChapter (self, 3); //-------- visuals -------- // anima...
D
/** * Copyright: (c) 2005-2009 Eric Poggel * Authors: Eric Poggel * License: <a href="lgpl3.txt">LGPL v3</a> */ module yage.core.math.plane; import tango.math.IEEE; import tango.math.Math; import tango.text.convert.Format; import yage.core.math.vector; import yage.core.misc; import std.string;...
D
/home/zbf/workspace/git/RTAP/target/debug/deps/utf8_ranges-a62954ed750e2635.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/utf8-ranges-1.0.4/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/utf8-ranges-1.0.4/src/char_utf8.rs /home/zbf/workspace/git/RTAP/target/de...
D
/Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Request.o : /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/MultipartFormData.swift /Users/eduardo.herrera/De...
D
//https://rosettacode.org/wiki/Display_a_linear_combination import std.array; import std.conv; import std.format; import std.math; import std.stdio; string linearCombo(int[] c) { auto sb = appender!string; foreach (i, n; c) { if (n==0) continue; string op; if (n < 0) { if (s...
D
module pulseaudio.bindings.pulse.simple; import pulseaudio.bindings.pulse.sample; import pulseaudio.bindings.pulse.channelmap; import pulseaudio.bindings.pulse.def; extern (C): /*** This file is part of PulseAudio. Copyright 2004-2006 Lennart Poettering Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cend...
D
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsyncSubject.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.s...
D
module entity; class Entity{ public: enum entity_enum { column = 0, table = 1, database = 3 } public: this() { } }
D
a general direction in which something tends to move general line of orientation a general tendency to change (as of opinion the popular taste at a given time turn sharply
D
/** * Copyright © DiamondMVC 2019 * License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE) * Author: Jacob Jensen (bausshf) */ module diamond.data.mapping.engines.mssql.mssqladapter; import diamond.core.apptype; static if (hasMsSql) { import std.variant : Variant; import std.algorithm : map; i...
D
logoDrawString.pp.ml: Array1 Bigarray Core Differentiation List LogoInterpreter LogoLib Pervasives Printf Program String Sys Timeout Utils VGWrapper Yojson
D
module org.serviio.upnp.service.contentdirectory.rest.representation.OnlineIdentifierRepresentation; import java.lang.String; import com.thoughtworks.xstream.annotations.XStreamConverter; import com.thoughtworks.xstream.converters.extended.ToAttributedValueConverter; //@XStreamConverter(/*value=*/ToAttributedValueCon...
D
/Users/kendallpfeifer/cmsc388z/assignments/assignment3/rust_find/target/debug/deps/cfg_if-8e31d995b9a3f5a0.rmeta: /Users/kendallpfeifer/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs /Users/kendallpfeifer/cmsc388z/assignments/assignment3/rust_find/target/debug/deps/libcfg_if-8e31d995b9a3f5a0.r...
D
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.build/Embedded.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/ch...
D
/** * Windows API header module * * Translated from MinGW Windows headers * * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_lmerrlog.d) */ module core.sys.windows.lmerrlog; version (Windows): @system: // COMMENT: This appears to be only f...
D
module hunt.database.driver.mysql.builder; import hunt.database; class MySqlBuilder : SqlBuilder { Method _method; string _tableName; string _tableNameAlias; string[] _selectKeys = ["*"]; string _having; string[] _groupby; string[] _orderByKey; string[] _order; int _offset; int _limit; string _multiWhereS...
D
module BayesianNetwork; import std.algorithm.iteration : map; import std.array : array; // native integer private alias size_t NtvInt; // simple implementation of baysian networks // https://en.wikipedia.org/wiki/Bayesian_network /*struct Distribution { double[2] values; // for false and true for now }*/ struct...
D
module d.context.sourcemanager; import d.context.context; import d.context.location; import d.context.name; struct FullLocation { private: Location _location; Context context; @property inout(FullPosition) start() inout { return inout(FullPosition)(location.start, context); } @property inout(FullPosition...
D
an occasion on which a winner is selected from among two or more contestants a struggle between rivals to make the subject of dispute, contention, or litigation
D
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/HTTP.build/Responder/HTTPClientProtocolUpgrader.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/http/Sources/HTTP/Utilities/RFC1123.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/...
D
module dui.internal.renderer; import dui.internal.renderer.backend.opengl; import dui.internal.renderer.backend; import dui.internal.bindings.opengl; import dui; struct FillCommand { FillOptions options; Vec4 tint; Mat3 transform; Path path; Texture texture; Mat3 textureTransform; } private { struct Sample { ...
D
/* * Copyright (c) 2007-2013 Scott Lembcke and Howling Moon Software * * 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 ...
D
module godot.material.all; public import godot.material, godot.shadermaterial, godot.canvasitemmaterial, godot.spatialmaterial, godot.particlesmaterial;
D
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/Workshop/../../libworkshop2d.Linux.mpicxx.ifort.DEBUG.MPI.a(RhodoneaIF.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/RhodoneaIF.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/Workshop/../../src/EBTools/BaseIVFAB.H /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/Workshop/../../libwo...
D
an area in which something acts or operates or has power or control: "the range of a supersonic jet" the limits within which something can be effective a large tract of grassy open land on which livestock can graze a series of hills or mountains a place for shooting (firing or driving) projectiles of various kinds a va...
D
module png.pngconf; alias uint png_uint_32; alias int png_int_32; alias ushort png_uint_16; alias short png_int_16; alias ubyte png_byte; alias size_t png_size_t; /* Typedef for floating-point numbers that are converted to fixed-point with a multiple of 100,000, e.g., int_gamma */ alias png_int_32 png_fixed_point;...
D
module number; import std.stdio; import std.conv; import std.string; import pegged.grammar; import program; class Number { ParseTree node; Program program; string str_repr; int intval; real floatval; char type; const real lower_limit = -1.70141183E38; const real upper_limit = 1.70141...
D
/* Copyright 2016 HaCk3D, substanceof https://github.com/HaCk3Dq https://github.com/substanceof 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 ...
D
/* * No unittest in the graphics module since it it is bound to statefull OpenGL * and image comparing tests is more appropriate */ module graphics; import std.stdio; import std.range; import std.string; import std.typecons; import std.exception; import std.conv; import derelict.sdl2.sdl; import derelict.sdl2.image...
D
module chandl.utils.linkfinder; import std.algorithm; import std.array; import std.conv : to; import html; import chandl.threadparser; struct LinkTag { string tag; string[] linkAttributes; } enum LinkTags = [ LinkTag("link", ["href"]), LinkTag("script", ["src"]), LinkTag("a", ["href"]), Lin...
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
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/Routing.build/Parameter/ParameterValue.swift.o : /Users/mu/Hello/.build/checkouts/routing/Sources/Routing/Utilities/Deprecated.swift /Users/mu/Hello/.build/checkouts/routing/Sources/Routing/Routing/RouterNode.swift /Users/mu/Hello/.build/checkouts/routing/Sources/Routing...
D
/** * Windows API header module * * Translated from MinGW-w64 API * * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC src/core/sys/windows/_wtsapi32.d) */ module core.sys.windows.wtsapi32; version (Windows): version (ANSI) {} else version = Unicode; version (GNU...
D
/Users/louislenief/Documents/Programmation/LTM-interface/build/LTM-interface.build/Debug/LTM-interface.build/Objects-normal/x86_64/ViewController_TaskLaunching.o : /Users/louislenief/Documents/Programmation/LTM-interface/LTM-interface/ViewController/ViewController_GetSelected.swift /Users/louislenief/Documents/Programm...
D
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.build/Connection/Container+CachedConnection.swift.o : /Users/nice/HelloWord/.build/checkouts/database-kit.git--3832824229792757560/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/nice/HelloWord/.build/checkouts/database-kit.git--3832824229792...
D
/Users/sriramprasad/Dev/rough/SwipeCollectioView/build/SwipeCollectioView.build/Debug-iphonesimulator/SwipeCollectioView.build/Objects-normal/x86_64/SwipeCollection.o : /Users/sriramprasad/Dev/rough/SwipeCollectioView/SwipeCollectioView/AppDelegate.swift /Users/sriramprasad/Dev/rough/SwipeCollectioView/SwipeCollectioVi...
D
module imports.c314; void bug(string s) {}
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM ROCKTYPE 22.5 87 27.2999992 85.5 16 23 -9.60000038 119.400002 7801 14.8999996 28.5 extrusives, basalts 213.300003 85.5 9.89999962 22.3999996 16 23 -9.60000038 119.400002 7788 5.4000001 10.3000002 extrusives, andesites, dacites 349.5 78.1999969 4.69999981 99...
D
module witchcraft.impl; public import witchcraft.impl.attributes; public import witchcraft.impl.classes; public import witchcraft.impl.constructors; public import witchcraft.impl.fields; public import witchcraft.impl.inspect; public import witchcraft.impl.interfaces; public import witchcraft.impl.methods; public impo...
D
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/WithLatestFrom.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/danielmorales/CSUMB/...
D
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly, Alex Rønne Petersen * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* C...
D
/* * This auto-generated skeleton file illustrates how to build a server. If you * intend to customize it, you should edit a copy with another file name to * avoid overwriting it when running the generator again. */ module BotService_server; import std.stdio; import thrift.codegen.processor; import thrift.protoco...
D
/* * Copyright (C) 2018 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
/* * Hunt - A redis client library for D programming language. * * Copyright (C) 2018-2019 HuntLabs * * Website: https://www.huntlabs.net/ * * Licensed under the Apache-2.0 License. * */ module hunt.redis.util.RedisClusterHashTagUtil; import hunt.redis.util.SafeEncoder; import hunt.Exceptions; import std.a...
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 273 54 4 0 46 48 -33.5 151.300003 1769 6 6 0.982534559 intrusives, basalt 264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 1206 10.3999996 18 0.307014128 extrusives, intrusives 346 61 9 41.2000008 35 100 -31.3999996 138.600006 1170 13 15 0...
D
module lantern.describe; import core.math; import core.time; import std.algorithm; import std.array : Appender, appender; import std.meta; import std.range : put; import std.traits; import std.typecons; import mir.math.sum; import lantern.util; enum isAggregator(T) = is(typeof({ T aggregator; ...
D
module ominbot.commands; import std.conv; import std.string; import std.algorithm; import ominbot.bot; import ominbot.params; import ominbot.discord; // it doesn't matter at this point /// Run a command. Returns true if a command was executed bool runCommands(Ominbot* bot, OminbotPlugin dsc, string message, long ch...
D
import std.stdio; import std.math; import std.typecons; import sieve; import divisor; void main() { int total = 0; auto temp = SieveHash(12_000); auto sieve = ShortenSieve(temp[0]); auto hash = temp[1]; writeln("Done sieve"); foreach (d; 2..12_001) { auto divisors = Divisors(sieve, hash, d); int m...
D
module ez.Script.Project; import ez.Script.Reflection.Reflection; import ez.Foundation.Logging.Log; import std.process; static import std.file; class Project { private: static struct Module { string relativePath; IReflectedModule reflection; } Module[] m_modules; string m_rootPath;...
D
// Position a window programmatically import std.stdio; import gtk.MainWindow; import gtk.Main; import gtk.Widget; import gtk.Button; import gtk.Box; void main(string[] args) { TestRigWindow testRigWindow; Main.init(args); testRigWindow = new TestRigWindow(); Main.run(); } // main() class TestRigWindow...
D
module mach.sdl.graphics.color; private: import derelict.sdl2.sdl; import derelict.sdl2.types : SDL_Color; import derelict.opengl3.gl; import mach.traits : isNumeric, isIntegral, isFloatingPoint, isTemplateOf; import mach.math.round : round; import mach.sdl.error : GLError; public: enum isColor(T) = isTemplateOf...
D
the cardinal number that is the sum of one and one and one one of four playing cards in a deck having three pips being one more than two
D
module wx.VScroll; public import wx.common; public import wx.Panel; public import wx.SizeEvent; //----------------------------------------------------------------------------- //! \cond EXTERN extern (C) { alias цел function(ОкноСВПрокруткой объ, цел ч) Virtual_IntInt; } extern (C) ЦелУкз wxVScrolledWind...
D
/* * Copyright (c) 2017-2019 sel-project * * 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, pu...
D
module tests.ut.simple_bar_reggaefile; import reggae; mixin build!(Target("bar.txt"));
D
module simulated.keyboard; version(Windows) { import simulated.windows.keyboardimpl; } else version(linux) { import simulated.linux.keyboardimpl; } else version(OSX) { import simulated.osx.keyboardimpl; } else { static assert("Unsupported system. Sorry :("); } class Keyboard { enum Keys:int { ///The A key A...
D
unittest { assert(0); } /* * Running: dmd -betterC -unittest _7unittests.d */ extern(C) void main() { static foreach(u; __traits(getUnitTests, __traits(parent, main))) u(); }
D
instance Mod_1344_PSINOV_Novize_MT (Npc_Default) { //-------- primary data -------- name = Name_Novize; Npctype = Npctype_mt_sumpfnovize; guild = GIL_out; level = 9; voice = 0; id = 1344; //-------- abilities -------- attribute[ATR_STRENGTH] = 15; attribute[ATR_DEXTERITY] = 15; att...
D
instance DIA_Grd_217_Exit(C_Info) { npc = GRD_217_Torwache; nr = 999; condition = DIA_Grd_217_Exit_Condition; information = DIA_Grd_217_Exit_Info; permanent = 1; description = DIALOG_ENDE; }; func int DIA_Grd_217_Exit_Condition() { return 1; }; func void DIA_Grd_217_Exit_Info() { AI_StopProcessInfos(self); ...
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="Output3.notation#_...
D
# FIXED F2837xD_CpuTimers.obj: C:/ti/controlSUITE/device_support/F2837xD/v210/F2837xD_common/source/F2837xD_CpuTimers.c F2837xD_CpuTimers.obj: C:/ti/controlSUITE/device_support/F2837xD/v210/F2837xD_headers/include/F2837xD_device.h F2837xD_CpuTimers.obj: C:/ti/c2000_15.12.3.LTS/include/assert.h F2837xD_CpuTimers.obj: C...
D
/* * This file is part of serpent. * * Copyright © 2019-2020 Lispy Snake, Ltd. * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this s...
D
/* * Copyright (c) 2004-2008 Derelict Developers * 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 copyright * notice, this li...
D
module VM.build; import VM.OpCode; import VM.Binary; import VM.Instruction; import VM.Register; import VM.Mode; import VM.Type; auto opcode(in Instruction instr) { return OpCode(instr); } auto opcode(in Instruction instr, in Mode mode) { return OpCode(instr).put(mode); } auto opcode(in Instruction instr, in...
D
close fighting during the culmination of a military attack a threatened or attempted physical attack by someone who appears to be able to cause bodily harm if not stopped thoroughbred that won the triple crown in 1946 the crime of forcing a woman to submit to sexual intercourse against her will attack someone physicall...
D
/* * #22 Y'Berion doesn't attack the player * * There does not seem an easy way to test this fix programmatically, so this test relies on manual confirmation. * This test only works in chapter one of the game * * Expected behavior: Y'Berion should attack the player */ func void G1CP_Test_022() { if (G1CP_Tes...
D
// Copyright © 2011, Jakob Bornecrantz. All rights reserved. // See copyright notice in src/charge/charge.d (GPLv2 only). /** * Source file for Mouse. */ module charge.ctl.mouse; import lib.sdl.sdl; import charge.util.signal; import charge.ctl.device; class Mouse : Device { public: int state; /**< Mask of butto...
D
FUNC VOID B_SetMagicDamage() { if (WaveCounter > 60) { SPL_Damage_Zap = 120; SPL_Damage_BreathOfDeath = 1250; SPL_Damage_ChargeFireball = 227; SPL_Damage_ChargeZap = 105; SPL_Damage_DESTROYUNDEAD = 3000; SPL_Damage_EnergyBall = 700; SPL_Damage_Firebolt = 103; SPL_Damage_InstantFireStorm = 350; SPL_D...
D
instance VLK_4131_ENGROM(NPC_DEFAULT) { name[0] = "Энгром"; guild = GIL_OUT; id = 4131; voice = 12; flags = 0; npctype = NPCTYPE_MAIN; b_setattributestochapter(self,3); fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,itmw_1h_vlk_axe); EquipItem(self,itrw_mil_crossbow); b_createambientinv(self); b_setnpcvis...
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="T12_system.notation#_OlLuIHyvEeGvw...
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Validation.build/Validators/EmptyValidator.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/validation/Sources/Validation/Validatable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/che...
D
dependencies: /Users/christianmeyer/Cpp/ch11/P11_8/P11_8/main.cpp \ /Users/christianmeyer/Cpp/ch11/P11_8/P11_8/util.hpp
D
/** * D header file for FreeBSD * * Authors: Martin Nowak */ module core.sys.freebsd.sys.mman; version (FreeBSD): extern (C): nothrow: public import core.sys.posix.sys.mman; import core.sys.freebsd.sys.cdefs; import core.sys.posix.sys.types; // https://svnweb.freebsd.org/base/head/sys/sys/mman.h?rev...
D