code
stringlengths
3
10M
language
stringclasses
31 values
// --------------------------------------------------------- // NPC 'MIL_133_Militia' // --------------------------------------------------------- instance MIL_133_Militia (C_NPC) { //-------- primary data -------- name = NAME_Militia; guild = GIL_MILITIA; npctype = NPCTYPE_GUARD; lev...
D
/++ ファイル・パス操作についてまとめます。 +/ module file_example; /++ テキストファイル操作の例です。 +/ unittest { // 注: 以下の関数は他のmoduleの関数名と被っているためrename importしています。 import std.file : fwrite = write, fremove = remove, fappend = append; import std.file; // 指定した文字列でテキストファイルを作成します。 string textFile = "test.txt"; string content ...
D
instance VLK_421_Valentino(Npc_Default) { name[0] = "Valentino"; guild = GIL_VLK; id = 421; voice = 3; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_NORMAL; EquipItem(self,ItMw_1h_Vlk_Mace); CreateInvItems(self,ItMi_Gold,200); CreateInvItems(self,ItKe_Valentin...
D
module webtank.datctrl.consts; /// Названия полей JSON-объектов, в форме которых представляются (сериализуются) данные при передаче enum SrlField { /// Номер ключевого поля в рекорде/ рекордсете keyFieldIndex = `kfi`, /// Тип объекта: дата, запись, перечислимое и т.п. type = `t`, /// Название поля, либо еще как...
D
module specassert.core; /++ +/ class Spec{ public{ this(in string file, in size_t line, in string mod, in string prettyFunction, in string msg, in bool isSuccess){ _file = file; _line = line; _mod= mod; _prettyFunction = prettyFunction; _msg = msg; _isSuccess = isSuccess; } @property{ strin...
D
module mordor.common.streams.limited; import tango.math.Math; import mordor.common.exception; public import mordor.common.streams.filter; class LimitedStream : FilterStream { public: this(Stream parent, long size, bool ownsParent = true) in { assert(size >= 0); } body { super(...
D
instance DIA_Addon_Myxir_ADW_EXIT(C_Info) { npc = KDW_14030_Addon_Myxir_ADW; nr = 999; condition = DIA_Addon_Myxir_ADW_EXIT_Condition; information = DIA_Addon_Myxir_ADW_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Myxir_ADW_EXIT_Condition() { return TRUE; }; func void DIA_Add...
D
/** * D header file for C99. * * $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_stdint.h.html, _stdint.h) * * Copyright: Copyright Sean Kelly 2005 - 2018 * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompa...
D
the termination of a meeting the act of postponing to another time or place
D
/** Central logging facility for vibe. 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 vibecompat.core.log; import std.array; import std.datetime; import std.format; import std.stdio; import core...
D
/* * Copyright (c) 2004-2006 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...
D
something that happens at a given place and time a special set of circumstances a phenomenon located at a single point in space-time a phenomenon that follows and is caused by some previous phenomenon
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="model.notation#_RB1NgI8hEeKeft...
D
instance VLK_402_RICHTER(NPC_DEFAULT) { name[0] = "Судья"; guild = GIL_VLK; id = 402; voice = 10; flags = NPC_FLAG_IMMORTAL; npctype = NPCTYPE_MAIN; b_setattributestochapter(self,5); fight_tactic = FAI_HUMAN_NORMAL; b_createambientinv(self); CreateInvItems(self,itke_richter,1); b_setnpcvisual(self,MALE,"Hum...
D
instance KDW_14040_Addon_Riordian_ADW(Npc_Default) { name[0] = "Riordian"; guild = GIL_KDW; id = 14040; voice = 10; flags = NPC_FLAG_IMMORTAL; npcType = npctype_main; aivar[AIV_MagicUser] = MAGIC_ALWAYS; aivar[AIV_IgnoresFakeGuild] = TRUE; aivar[AIV_IgnoresArmor] = TRUE; B_SetAttributesToChapter(self,5); fi...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2012 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
var int SLD_753_Baloro_SC_choice; var int SLD_753_Baloro_SC_wills_wissen; var int SLD_753_Baloro_SC_besorgt_den_Kram; instance DIA_SLD_753_Baloro(C_Info) { npc = SLD_753_Baloro; condition = DIA_SLD_753_Baloro_Condition; information = DIA_SLD_753_Baloro_Intro_Info; important = 1; permanent = 0; }; func int DIA_...
D
/Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target/debug/build/crossbeam-epoch-654a3b615322c85e/build_script_build-654a3b615322c85e: /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.8.2/build.rs /Users/victornascimento/Documents/Projects/Rust/p...
D
module org.serviio.upnp.webserver.HttpRequestHandlerRegexRegistry; import java.util.HashMap; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.http.protocol.HttpRequestHandler; import org.apache.http.protocol.HttpRequestHandlerResolver; public class HttpRequestHan...
D
// minimized version of etc.c.zlib module bio.core.utils.zlib; import core.stdc.config; extern (C) { const char[] ZLIB_VERSION = "1.2.3"; const ZLIB_VERNUM = 0x1230; alias void* function (void* opaque, uint items, uint size) alloc_func; alias void function (void* opaque, void* address) free_func; struct z_stream ...
D
instance DIA_Addon_Sancho_EXIT(C_Info) { npc = BDT_1073_Addon_Sancho; nr = 999; condition = DIA_Addon_Sancho_EXIT_Condition; information = DIA_Addon_Sancho_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Sancho_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Sancho_EXIT_I...
D
module gtkD.glib.GLib; public import gtkD.gtkc.glibtypes; private import gtkD.gtkc.glib; private import gtkD.glib.ConstructionException; private import gtkD.glib.Str; /** * Description * GLib provides version information, primarily useful in configure checks * for builds that have a configure script. Applic...
D
instance PAL_297_Ritter(Npc_Default) { name[0] = NAME_Ritter; guild = GIL_PAL; id = 297; voice = 4; flags = NPC_FLAG_IMMORTAL; npcType = npctype_main; aivar[AIV_ToughGuy] = TRUE; aivar[AIV_ToughGuyNewsOverride] = TRUE; aivar[AIV_IGNORE_Murder] = TRUE; aivar[AIV_IGNORE_Theft] = TRUE; aivar[AIV_IGNORE_Sheepki...
D
/** Модуль перечней и констант WIN API для языка Динрус. Разработчик Виталий Кулич. Список названий перечней констант: ПТипЗКД, ПМайлСлот, ППраваДоступа, ПТипТокена, ПТипБид, ПУровеньИмперсонацииБезопасности, ПТокен, КЛАСС_ИНФОРМАЦИИ_ТОКЕНА, ПСтд, ПШирСим, ПСжатие, ПРежимКонсоли, ППозКурсора, ППозПотока, ПРеес...
D
// automatically generated by the FlatBuffers compiler, do not modify module KissRpc.IDL.flatbuffer.TestRpc; import std.typecons; import flatbuffers; struct UserInfoFB { mixin Table!UserInfoFB; static UserInfoFB getRootAsUserInfoFB(ByteBuffer _bb) { return UserInfoFB.init_(_bb.get!int(_bb.position()) + _bb.posi...
D
module stache.entity.magnumstache; public import stache.entity.stache; class MagnumStache : StacheEntity { override @property string CharacterName() { return "Magnum P.I."; } override @property string PortraitFilename() { return "tom"; } override @property string ModelFilename() { return "magnum_anims.xml"; }...
D
/* * The MIT License (MIT) * ===================== * * Copyright (c) 2015 Dmitri Makarov <dmakarov@alumni.stanford.edu> * * 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...
D
/* Файл: CLCell.d Originally записано by Doug Lea и released преобр_в the public домен. Thanks for the assistance и support of Sun Microsystems Labs, Agorics Inc, Loral, и everyone contributing, testing, и using this код. History: Дата Who What 24Sep95 dl@cs.oswego.edu Созд из_ ...
D
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/BarChartDataProvider.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoana...
D
INSTANCE Info_Mod_Lance_Kristall (C_INFO) { npc = Mod_926_RDW_Lance_NW; nr = 1; condition = Info_Mod_Lance_Kristall_Condition; information = Info_Mod_Lance_Kristall_Info; permanent = 0; important = 0; description = "Ich möchte den Magiern des Wassers (...)"; }; FUNC INT Info_Mod_Lance_Kristall_Condition() { ...
D
/Users/wilsonvinson/Documents/GitHub/RUST01/rust01_01/target/debug/deps/gleam-509c5b6a727da200.rmeta: /Users/wilsonvinson/.cargo/registry/src/github.com-1ecc6299db9ec823/gleam-0.6.19/src/lib.rs /Users/wilsonvinson/.cargo/registry/src/github.com-1ecc6299db9ec823/gleam-0.6.19/src/gl.rs /Users/wilsonvinson/.cargo/registry...
D
/home/kami/Programing/wasm/bachelorproject/koweb/target/rls/debug/build/wasm-bindgen-shared-b3ac788aa227aaf4/build_script_build-b3ac788aa227aaf4: /home/kami/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.71/build.rs /home/kami/Programing/wasm/bachelorproject/koweb/target/rls/debug/build/wasm-b...
D
// int module std.typeinfo.ti_int; class TypeInfo_i : TypeInfo { override string toString() { return "int"; } override hash_t getHash(in void *p) { return *cast(uint *)p; } override int equals(in void *p1, in void *p2) { return *cast(uint *)p1 == *cast(uint *)p2; } override int c...
D
@compute(CompileFor.deviceOnly) module dcompute.tests.test; import ldc.attributes; import dcompute.types.pointer; import dcompute.std.index; import std.traits; @kernel void map(alias F)(GlobalPointer!(ReturnType!(F)) r, Parameters!F args) { r[GlobalIndex.x] = F(args); }
D
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/deps/rand_chacha-42fe21a12ba693b5.rmeta: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_chacha-0.1.1/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_chacha-0.1.1/src/chacha.rs /home/syx/SYXrepo/...
D
module gfm.enet.enet; import derelict.enet.enet; import derelict.util.exception; static if( __VERSION__ >= 2067 ) import std.experimental.logger; else import std.historical.logger; /// General ENet exception thrown for all cases. final class ENetException : Exception { @safe pure nothrow this(string mes...
D
// Copyright 2018 - 2022 Michael D. Parker // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) module bindbc.sdl.bind.sdlplatform; import bindbc.sdl.config; static if(staticBinding) { ext...
D
module magpie.helper; import std.meta: AliasSeq, Repeat; import std.range.primitives: ElementType; import std.traits: isStaticArray; /// Build DataFrame argument list template getArgsList(args...) { static if(args.length) { alias arg = args[0]; import std.traits: isType; static if(args...
D
import vibe.vibe; import std.process; import std.conv; HTTPServerSettings settings; void main() { settings = new HTTPServerSettings ; // Provide a default port in case of the $PORT variable isn't set. settings.port = environment.get("PORT", "8080").to!ushort; listenHTTP(settings, &hello); logInfo("Herok...
D
module qcc.driver; import qcc.lexer; import qcc.parsetree; import qcc.parser; import std.stdio; void main(string[] args) { writeln("Welcome to the QCC Compiler"); immutable string test_source = ` #include "stdio.h" struct s { int x; int *y; struct s2 { int x2; int y2; } ; } ; int main() { int a; bool ...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) ?-1998 by Symantec * Copyright (C) 2000-2019 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: ...
D
/Users/suzu/project_research_B/arithmetic_progression/target/release/build/crossbeam-utils-e0ad69515b1ba491/build_script_build-e0ad69515b1ba491: /Users/suzu/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.7.0/build.rs /Users/suzu/project_research_B/arithmetic_progression/target/release/build/crossbea...
D
/** * shell: Virtual shell */ module vdos.shell; import ddc; import core.stdc.string : strcmp, strlen, memcpy, strncpy; import vcpu.core : MEMORY, vcpu_run, CPU, MEMORYSIZE, opt_sleep; import vdos.loader : vdos_load; import vdos.video; import vdos.os; import vdos.interrupts : INT; import vdos.codes : PANIC_MANUAL; i...
D
module collie.codec.http.httpwritebuffer; import kiss.buffer; import kiss.net.struct_; import kiss.event.task; @trusted abstract class HttpWriteBuffer : StreamWriteBuffer, WriteBuffer { override abstract size_t write(in ubyte[] data); override abstract size_t set(size_t pos, in ubyte[] data); override abstract @...
D
module graphics.core.wavelet.calc_coeffs; import guip.point; import graphics.math.poly; enum Quad { _00, // top-left _01, // top-right _10, // bottom-left _11, // bottom-right }; //============================================================================== //---------------------------------------------...
D
import std.stdio; import std.array; import std.conv; import std.string; import std.ascii; immutable string[10] words = [ // 10 most common in English "the", "be", "to", "of", "and", "a", "in", "that", "have", "i" ]; uint decript(char[] text, char[3] cipher) { foreach (i; 0 .. text.length) text[i] = text[i] ^ ...
D
/home/goom/Programming/advent/two/target/debug/deps/two-b40c75ad2b9faf32: src/main.rs /home/goom/Programming/advent/two/target/debug/deps/two-b40c75ad2b9faf32.d: src/main.rs src/main.rs:
D
/* Copyright (c) 2013 Andrey Penechko 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, exec...
D
module hunt.wechat.bean.paymch.Hbinfo; class Hbinfo { private string openid; private Integer amount; private string rcv_time; public string getOpenid() { return openid; } public void setOpenid(string openid) { this.openid = openid; } public Integer getAmount() { return amount; ...
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 distributed in th...
D
instance DIA_Addon_Garett_EXIT(C_Info) { npc = PIR_1357_Addon_Garett; nr = 999; condition = DIA_Addon_Garett_EXIT_Condition; information = DIA_Addon_Garett_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Garett_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Garett_EXIT_I...
D
module org.serviio.renderer.RendererManager; import java.lang.String; import java.io.IOException; import java.net.Inet4Address; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.Iterator; import java.util.L...
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 298.399994 61.7000008 5.9000001 0 58 62 -19.6000004 116.099998 141 3.29999995 8 0.5 sediments, sandstones, siltstones 219.300003 -4.19999981 9.39999962 22.3999996 56 65 -10 121 7800 4.9000001 9.60000038 0.444444444 extrusives, basalts, andesites...
D
module c.openssl.evp; import core.stdc.config; //public import c.openssl.opensslconf; public import c.openssl.ossl_typ; public import c.openssl.bio; public import c.openssl.objects; // These imports are not in the original header, but D needs them. // Otherwise, D won't know what the aliases in this module are refer...
D
module armos.graphics.renderer; import std.math; import derelict.opengl3.gl; import armos.app; import armos.graphics; import armos.math; import armos.types; /++ ポリゴンのレンダリング方法を表します +/ enum PolyRenderMode { Points,/// 頂点のみ描画します. WireFrame,/// 線のみ描画します. Fill,/// 面を塗りつぶして描画します. } /++ ポリゴンのプリミティブを指定します. +/ en...
D
/***************************************************************************** * * Higgs JavaScript Virtual Machine * * This file is part of the Higgs project. The project is distributed at: * https://github.com/maximecb/Higgs * * Copyright (c) 2012-2014, Maxime Chevalier-Boisvert. All rights re...
D
////HEPHERNAAN - WILL ToB CHAIN IF ~InParty("L0Will") See("L0Will") !StateCheck("L0Will",CD_STATE_NOTVALID) !StateCheck("L#HPH",CD_STATE_NOTVALID) CombatCounter(0) Global("L#2WillL#HPH25","GLOBAL",0)~ THEN L#HPH25B L#HPHWill2501 @0 DO ~SetGlobal("L#2WillL#HPH25","GLOBAL",1)~ == L0Wil25B @1 == L0Wil25B @2 == L#...
D
/Users/ramonhonorio/workspace/ios/fiap/BuyList/DerivedData/RamonEvandro/Build/Intermediates.noindex/RamonEvandro.build/Debug-iphonesimulator/ComprasUSA.build/Objects-normal/x86_64/Ext+UIViewController.o : /Users/ramonhonorio/workspace/ios/fiap/BuyList/BuyList/Validate.swift /Users/ramonhonorio/workspace/ios/fiap/BuyLis...
D
/* * Kerisy - A high-level D Programming Language Web framework that encourages rapid development and clean, pragmatic design. * * Copyright (C) 2021, Kerisy.com * * Website: https://www.kerisy.com * * Licensed under the Apache-2.0 License. * */ module kerisy.http; //public import kerisy.Exceptions; public i...
D
/* * Copyright 2018 Google LLC * Copyright 2022 Coverify Systems Technology * * 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 * * U...
D
// Generated by gnome-h2d.rb <http://github.com/ddude/gnome.d>. module glib.slice; /* GLIB sliced memory - fast threaded memory chunk allocator * Copyright (C) 2005 Tim Janik * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License a...
D
func void ZS_Sit_Bench() { Perception_Set_Normal(); B_ResetAll(self); b_staminainvent(); if(Hlp_GetInstanceID(self) == Hlp_GetInstanceID(VLK_4350_Priscila)) { if(Npc_HasItems(self,itmi_sonjawig) == 0) { CreateInvItem(self,itmi_sonjawig); AI_EquipArmor(self,itmi_sonjawig); }; }; if(!C_BodyStateCon...
D
func void B_Story_CordsPost() { var C_Npc gorn; gorn = Hlp_GetNpc(PC_Fighter); Npc_ExchangeRoutine(gorn,"GuardNC"); B_ExchangeRoutine(Sld_709_Cord,"FMTaken"); B_ExchangeRoutine(Sld_735_Soeldner,"FMTaken"); B_ExchangeRoutine(Sld_736_Soeldner,"FMTaken"); };
D
void main() { auto ip = readAs!(long[]), N = ip[0], K = ip[1]; foreach(i; 1..N+1) foreach(j; 1..K+1) { writefln("%d %d, %d", i, j, calc(i, j)); } } long calc(long N, long K) { long cnt; foreach(a; 1..N+1) { foreach(b; 1..N+1) { foreach(c; 1..N+1) { //writefln("%d %d %d", a, b, c); if((a + b) % K ==...
D
/*#D*/ // Copyright 2015-2017, Bernard Helyer. // Copyright 2015-2017, Jakob Bornecrantz. // SPDX-License-Identifier: BSL-1.0 module volta.util.string; import watt.conv : toInt, ConvException; import watt.text.utf : encode; import watt.text.format : format; import watt.text.sink : StringSink; import volta.interfaces;...
D
// **************** // ZS_Follow_Player // **************** FUNC void B_AssessFollowPlayer () { // ------ Sonderfall: Diego ------ //FUNC if (Npc_GetDistToNpc(self, hero) < self.aivar[AIV_FollowDist]) && (self.aivar[AIV_TAPOSITION] == FALSE) { Npc_ClearAIQueue (self); AI_StandUp (self); self.aivar[AI...
D
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/NIOWebSocket.build/Objects-normal/x86_64/SHA1.o : /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/NIOWebSocket/SHA1.swift /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--21281889739...
D
module ui.size; import core.sys.windows.windows; struct Size { union { struct { int cd; int gh; } SIZE windowsSIZE; } }
D
/Users/Avinash/Documents/Code/CodeCollab/CodeCollab2/DerivedData/CodeCollab2/Build/Intermediates/CodeCollab2.build/Debug-iphonesimulator/CodeCollab2.build/Objects-normal/x86_64/HackCardTableViewCell.o : /Users/Avinash/Documents/Code/CodeCollab/CodeCollab2/CodeCollab2/HackathonViewController.swift /Users/Avinash/Documen...
D
/* Copyright (c) 2013 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, exe...
D
import std.stdio; import codewars.shortcuts; version(prob00) { void invoke() { writeln("hallo"); } } version(unittest) { } else { void main() { invoke(); } }
D
module combindings.util; public import core.sys.windows.basetyps : WinGUID = GUID; import core.sys.windows.windows; import combindings.glue; import combindings.attributes; // Basic COM object helpers pragma( inline, true ) ULONG ReleaseAndNull( T : IUnknown )( ref T Obj ) { ULONG refcount; if( Obj !is null ) { ...
D
/++ + The Automode plugin handles automatically setting the modes of users in a + channel. The common use-case is to have someone be automatically set to `+o` + (operator) when joining. + + See the GitHub wiki for more information about available commands:<br> + - https://github.com/zorael/kameloso/wiki/Curr...
D
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; void main() { immutable long MOD = 10^^9 + 7; auto s = readln.split.map!(to!long); auto N = s[0]; auto K = s[1].to!int;...
D
// REQUIRED_ARGS: -c /* TEST_OUTPUT: --- fail_compilation/imports/foo10727a.d(34): Error: undefined identifier Frop --- */ import imports.foo10727a;
D
# FIXED third_party/fatfs/src/ff.obj: C:/ti/TivaWare_C_Series-2.1.4.178/third_party/fatfs/src/ff.c third_party/fatfs/src/ff.obj: C:/ti/TivaWare_C_Series-2.1.4.178/third_party/fatfs/src/ff.h third_party/fatfs/src/ff.obj: C:/ti/TivaWare_C_Series-2.1.4.178/third_party/fatfs/src/integer.h third_party/fatfs/src/ff.obj: C:/...
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
incorporation by joining or uniting the formal act of acquiring something (especially territory) by conquest or occupation
D
module stache.entity.dictatorstache; public import stache.entity.stache; class DictatorStache : StacheEntity { override @property string CharacterName() { return "Great Dictator"; } override @property string PortraitFilename() { return "dictator2"; } override @property string ModelFilename() { return "dictato...
D
module d3d.desktop.desktopcomponent; public import derelict.sdl2.sdl; import d3d.core; import d3d.common.sdlcomponent : SDLComponent; /// Component for desktop windows. Will use SDL from d3d.common if possible. /// Loads: SDL2 @softdepend("d3d.common.sdlcomponent.SDLComponent") final class SDLDesktopComponen...
D
/Users/william/Projects/studySocial/studySocial/build/Pods.build/Debug-iphonesimulator/FacebookCore.build/Objects-normal/x86_64/Permission.o : /Users/william/Projects/studySocial/studySocial/Pods/FacebookCore/Sources/Core/GraphRequest/GraphRequestProtocol.Bridge.swift /Users/william/Projects/studySocial/studySocial/Pod...
D
/Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/.build/x86_64-apple-macosx10.10/debug/JDCloudSDKBaseanti.build/API/SetCleanThresholdResponse.swift.o : /Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/Sources/JDCloudSDKB...
D
module foo.bar; import core.vararg; import std.stdio; pragma (lib, "test"); pragma (msg, "Hello World"); static assert(true, "message"); alias double mydbl; int testmain(); struct S { int m; int n; } template Foo(T, int V) { void foo(...) { static if (is(Object _ : X!TL, alias X, TL...)) { } auto x = __tra...
D
/Users/Andrey/Developer/Stocks/Stocks/DerivedData/Stocks/Build/Intermediates.noindex/Stocks.build/Debug-iphonesimulator/Stocks.build/Objects-normal/x86_64/Stock.o : /Users/Andrey/Developer/Stocks/Stocks/Stocks/AppDelegate.swift /Users/Andrey/Developer/Stocks/Stocks/Stocks/Stock.swift /Users/Andrey/Developer/Stocks/Stoc...
D
/** * D header file for C99. * * $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_fenv.h.html, _fenv.h) * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanyi...
D
module luad.state; import std.array, std.range; import std.string : toStringz; import std.typecons : isTuple; import luad.c.all; import luad.stack; import luad.conversions.classes; import luad.base, luad.table, luad.lfunction, luad.dynamic, luad.error; /// Specify error handling scheme for $(MREF LuaState.doString...
D
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Leaf.build/Context.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Embed.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/l...
D
instance SLD_737_Torlof (Npc_Default) { //-------- primary data -------- name = "Torlof"; Npctype = NPCTYPE_MAIN; guild = GIL_SLV; level = 19; voice = 4; id = 737; //-------- abilities -------- attribute[ATR_STRENGTH] = 170; attribute[ATR_DEXTERITY] = 75; attribute[ATR_...
D
module UnrealScript.TribesGame.TrInventoryHelper; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Core.UObject; extern(C++) interface TrInventoryHelper : UObject { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass StaticClass() {...
D
/** * D header file for Solaris * * $(LINK2 http://src.illumos.org/source/xref/illumos-gate/usr/src/head/dlfcn.h, illumos dlfcn.h) */ module core.sys.solaris.dlfcn; version (Solaris): extern (C): nothrow: @nogc: public import core.sys.posix.dlfcn; import core.stdc.config; // enum RTLD_LAZY = 0x00001; // POSIX /...
D
module visualstudio; import std.algorithm : canFind; import std.path : baseName, stripExtension; import std.stdio : File; string randomGuid() { import std.uuid : randomUUID; import std.conv : to; import std.string : toUpper; return randomUUID().to!string.toUpper(); } void writeSolutio...
D
struct Test { long a; long b; };
D
module us.voxg.ewiusb.icon; /* GdkPixbuf RGB C-Source image dump */ /* #ifdef __SUNPRO_C #pragma align 4 (my_pixbuf) #endif #ifdef __GNUC__ static const guint8 my_pixbuf[] __attribute__ ((__aligned__ (4))) = #else static const guint8 my_pixbuf[] = #endif */ import gdk.Pixbuf; import std.conv; Pixbuf ewi_usb_confi...
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/App.build/Controllers/RecordsController.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/Sources/App/configure.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/Sources/App/Models/Log.swift /Users/Jorge/Desktop/...
D
//Amulette// // Schutzamulette const int Value_Am_ProtFire = 600; const int Am_ProtFire = 10; const int Value_Am_ProtEdge = 800; const int Am_ProtEdge = 10; const int Value_Am_ProtMage = 700; const int Am_ProtMage = 10; const int Value_Am_ProtPoint = 500; const int Am_ProtPoint = 10; const int...
D
instance Mod_7750_OUT_Dubios_MT (Npc_Default) { // ------ NSC ------ name = "Dubiose Gestalt"; guild = GIL_OUT; id = 7750; voice = 8; flags = 0; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 2); // ------ Kampf-Taktik --...
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
# FIXED ICall/icall_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_4_20_00_04/source/ti/blestack/icall/src/icall_user_config.c ICall/icall_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_4_20_00_04/source/ti/blestack/hal/src/target/_common/hal_types.h ICall/icall_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_4_20_00_0...
D
/** * Windows is a registered trademark of Microsoft Corporation in the United * States and other countries. * * Copyright: Copyright Digital Mars 2000 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright, Sean Kelly * * Copyri...
D
/substrate-node-template/target/debug/build/serde_derive-d5c345b96a2281a3/build_script_build-d5c345b96a2281a3: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.114/build.rs /substrate-node-template/target/debug/build/serde_derive-d5c345b96a2281a3/build_script_build-d5c345b96a2281a3.d: /root/.carg...
D