code
stringlengths
3
10M
language
stringclasses
31 values
/home/hustccc/OS_Tutorial_Summer_of_Code/Rust_Learning_Code/csv_challenge/target/release/deps/csv_challenge-fbee5b8060c19996: src/main.rs /home/hustccc/OS_Tutorial_Summer_of_Code/Rust_Learning_Code/csv_challenge/target/release/deps/csv_challenge-fbee5b8060c19996.d: src/main.rs src/main.rs:
D
/Users/mac/Documents/Bhupendra/RedialAnimateMenuBar/build/Pods.build/Debug-iphonesimulator/Macaw.build/Objects-normal/x86_64/Rect.o : /Users/mac/Documents/Bhupendra/RedialAnimateMenuBar/Pods/Macaw/Source/export/MacawView+PDF.swift /Users/mac/Documents/Bhupendra/RedialAnimateMenuBar/Pods/Macaw/Source/MCAMediaTimingFillM...
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-49675786...
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 transmi...
D
struct S { ... } // S has postblit or destructor S s; // default construction of s S t = s; // t is copy-constructed from s t = s; // t is assigned from s t.opAssign(s); ref S opAssign(S s) { S tmp = this; // bitcopy this into tmp this = s; // bitcopy s into this tmp.__dtor(); // call ...
D
/** Copyright: Copyright (c) 2017-2018 Andrey Penechko. License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: Andrey Penechko. */ module voxelman.world.mesh.sidemeshers.slope; import voxelman.log; import voxelman.container.buffer; import voxelman.math; import voxelman.geometry; import voxelman.world....
D
# FIXED gpio_if.obj: C:/TI/CC3200SDK_1.2.0/cc3200-sdk/example/common/gpio_if.c gpio_if.obj: C:/TI/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdio.h gpio_if.obj: C:/TI/ccsv6/tools/compiler/arm_15.12.3.LTS/include/linkage.h gpio_if.obj: C:/TI/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdarg.h gpio_if.obj: C:/TI/CC...
D
INSTANCE OrkScout_BDTPatroullie_03 (Mst_Default_OrcScout) { //----- Monster ----- name = "Ork Späher"; guild = GIL_ORC; id = 10011; voice = 18; level = 20; Npctype = NPCTYPE_MAIN; fight_tactic = FAI_ORC; Mdl_SetVisual (self, "Orc.mds"); // Body-Mesh Body-Tex Skin-...
D
import api.util; import api.c; import api.classes, api.methods, api.enums; import api.doc; import language; import language.d; import asdf; import std.string : toLower, chompPrefix; import std.stdio : writeln, writefln; import std.file : exists, readText, mkdirRecurse, isDir, writeFile = write, dirEntries, SpanMode...
D
/home/zbf/workspace/git/RTAP/target/debug/deps/semver_parser-da07f49658f995ae.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/semver-parser-0.7.0/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/semver-parser-0.7.0/src/version.rs /home/zbf/.cargo/registry/src/mirro...
D
a vehicle carrying many passengers
D
/* * Copyright Andrej Mitrovic 2013 - 2020. * 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 dtk.tests.slider; version(unittest): import dtk; import dtk.utils; import dtk.tests...
D
not likely to be true or to occur or to have occurred has little chance of being the case or coming about having a probability too low to inspire belief
D
/********************************************************************************** * Released under the MIT license <http://www.opensource.org/licenses/mit-license.php> * For licensing details see the included LICENSE file. *********************/ /*******************************************************************...
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Crypto.build/Cipher/AuthenticatedCipherAlgorithm.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/Crypto/Utilities/Base32.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/Crypto/RSA/...
D
import std.stdio : writeln; char[] encrypt(char[] input, char shift) { auto result = input.dup; result[] -= 'a'; result[] += shift; result[] %= 26; result[] += 'a'; return result; } void main() { // static size int[8] staticArr; // dynamic size (allocated to heap) int size = 8; int[] dynamicArr...
D
/Users/Juli/Documents/Swift/Eventy/Build/Intermediates.noindex/IBDesignables/Intermediates.noindex/Eventy.build/Debug-iphonesimulator/Eventy.build/Objects-normal/x86_64/Event.o : /Users/Juli/Documents/Swift/Eventy/Eventy/AppDelegate.swift /Users/Juli/Documents/Swift/Eventy/Eventy/EventTableViewCell.swift /Users/Juli/Do...
D
instance DIA_MARIA_EXIT(C_INFO) { npc = bau_910_maria; nr = 999; condition = dia_maria_exit_condition; information = dia_maria_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_maria_exit_condition() { return TRUE; }; func void dia_maria_exit_info() { AI_StopProcessInfos(self); }; in...
D
instance Mod_7636_MIL_Miliz_MT (Npc_Default) { // ------ NSC ------ name = Name_Miliz; guild = GIL_OUT; id = 7636; voice = 0; flags = 0; npctype = NPCTYPE_nw_miliz; // ------ Attribute ------ B_SetAttributesToChapter (self, 3); // ------ Kampf-Taktik -----...
D
module drake.worldModel.mesh; struct Mesh(T) { Vector3!T[] verts; Vector3!T[] norms; ushort[] tris; Material* mat; this(const Material * mat) { verts. material = mat; } // TODO: implement Vector3!T intersect(const ref Vector3!T focal_point, const ref Vector3!T view_point, T *tee) const { // Vecto...
D
/Users/hongweihui/Desktop/IOS大作业_洪伟辉_18126278/HNote/build/HNote.build/Debug-iphoneos/HNote.build/Objects-normal/arm64/SidebarTableView.o : /Users/hongweihui/Desktop/IOS大作业_洪伟辉_18126278/HNote/HNote/AppDelegate.swift /Users/hongweihui/Desktop/IOS大作业_洪伟辉_18126278/HNote/HNote/EWPopMenu/MenuTableViewCell.swift /Users/hongwe...
D
instance NWKR(C_Item) { name = "Landkarte Khorinis mit Fundorten der Kräuter"; mainflag = ITEM_KAT_DOCS; flags = ITEM_MISSION | ITEM_MULTI; value = 0; visual = "ItWr_Map_01.3DS"; material = MAT_LEATHER; scemeName = "MAP"; on_state[0] = use_map_nwkr; description = name; text[0] = "Kronstöckl, Goblinbeeren und...
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
module UnrealScript.UnrealEd.GenericBrowserType_RenderTexture; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.UnrealEd.GenericBrowserType_Texture; extern(C++) interface GenericBrowserType_RenderTexture : GenericBrowserType_Texture { public extern(D): private static __gshared ScriptCl...
D
// Written in the D programming language. /** This is a submodule of $(MREF std, algorithm). It contains generic comparison algorithms. $(SCRIPT inhibitQuickIndex = 1;) $(BOOKTABLE Cheat Sheet, $(TR $(TH Function Name) $(TH Description)) $(T2 among, Checks if a value is among a set of values, e.g. `if ...
D
module android.java.java.security.cert.PKIXCertPathChecker; public import android.java.java.security.cert.PKIXCertPathChecker_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!PKIXCertPathChecker; import import3 = android.java.java.lang.Class; import import0 = android.java.java.util.Set;
D
// Issue 16594 import core.stdc.stdio; shared static ~this() { __gshared int count; if (count++) fprintf(stderr, "dtor_called_more_than_once"); else throw new Exception("static_dtor_exception"); } void main() { }
D
instance Info_Sld_8_EXIT(C_Info) { nr = 999; condition = Info_Sld_8_EXIT_Condition; information = Info_Sld_8_EXIT_Info; permanent = 1; description = "KONIEC"; }; func int Info_Sld_8_EXIT_Condition() { return 1; }; func void Info_Sld_8_EXIT_Info() { AI_StopProcessInfos(self); }; instance Info_Sld_8_EinerVon...
D
instance BDT_1067_Bandit_L(Npc_Default) { name[0] = NAME_Bandit; guild = GIL_BDT; id = 1067; voice = 10; flags = 0; npcType = NPCTYPE_AMBIENT; aivar[AIV_EnemyOverride] = TRUE; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_1h_Bau_Mace); B_CreateAmbientInv(self); B_Se...
D
/* Written by Walter Bright * www.digitalmars.com * Placed into Public Domain */ // Identify the compiler used and its various features. module std.compiler; const { // Vendor specific string naming the compiler char[] name = "Digital Mars D"; // Master list of D compiler vendors ...
D
module UnrealScript.TribesGame.GFxTrPage_ServerAddTime; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.GFxTrAction; import UnrealScript.TribesGame.GFxTrPage; import UnrealScript.GFxUI.GFxObject; extern(C++) interface GFxTrPage_ServerAddTime : GFxTrPage { public extern(D): ...
D
/** * This module defines logging functions for Pebble watches. */ module pebble.logging; @nogc: nothrow: /// An opaque type for data logging. struct DataLoggingSession {} /// A reference to a data logging session on Pebble OS. deprecated("Use DataLoggingSession* instead of DataLoggingSessionRef") alias void* Data...
D
module basics.user; /* User settings read from the user config file. This file differs from the * global config file, see globconf.d. Whenever the user file doesn't exist, * the default values from static this() are used. */ import std.typecons; // rebindable import std.algorithm; // sort filenames before outputti...
D
/****************************************************************************** Tests the reading of the legacy buckets. Copyright: (c) 2016 Sociomantic Labs. All rights reserved. ******************************************************************************/ module integrationtest.versioning.cases.TestLega...
D
/Users/radibarq/developer/NasaInArabic/build/NasaInArabic.build/Debug-iphonesimulator/NasaInArabic.build/Objects-normal/x86_64/AppStoreViewController1.o : /Users/radibarq/developer/NasaInArabic/NasaInArabic/AppStoreViewController1.swift /Users/radibarq/developer/NasaInArabic/NasaInArabic/Source.swift /Users/radibarq/de...
D
/** Json-Rpc 2.0 protocol implementation. This module has 3 entry point: $(UL $(LI `RawJsonRpcAutoClient`) $(LI `HttpJsonRpcAutoClient`) $(LI `TcpJsonRpcAutoClient`) ) Copyright: © 2018 Eliott Dumeix License: Subject to the terms of the MIT license, as written in the included LICENS...
D
module webkit2webextension.DOMHTMLTableColElement; private import glib.Str; private import webkit2webextension.DOMHTMLElement; private import webkit2webextension.c.functions; public import webkit2webextension.c.types; /** */ public class DOMHTMLTableColElement : DOMHTMLElement { /** the main Gtk struct */ protect...
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
/* * hunt-proton: AMQP Protocol library for D programming language. * * Copyright (C) 2018-2019 HuntLabs * * Website: https://www.huntlabs.net/ * * Licensed under the Apache-2.0 License. * */ module hunt.proton.amqp.UnsignedLong; import hunt.math; import hunt.Number; import std.algorithm.compa...
D
// SemiTwist D Tools // Run Unittests // Written in the D programming language. /++ Author: $(WEB www.semitwist.com, Nick Sabalausky) This runs the SemiTwist D Tools unit tests. This has been tested to work with DMD 2.058 through 2.062 +/ module semitwist.apps.tests.unittests.main; import semitwist....
D
instance PAL_255_Ritter (Npc_Default) { // ------ NSC ------ name = NAME_RITTER; guild = GIL_PAL; id = 255; voice = 9; flags = 0; //NPC_FLAG_IMMORTAL oder 0 npctype = NPCTYPE_OCAMBIENT; // ------ Attribute ------ B_SetAttributesToChapter (self, 4); //setzt Att...
D
/home/serlog/Escritorio/Raúl/Semestre-2020-II/Paralelos/parallel_computing/lab1/target/rls/debug/deps/standback-369edbc6b9d1a216.rmeta: /home/serlog/.cargo/registry/src/github.com-1ecc6299db9ec823/standback-0.2.10/src/lib.rs /home/serlog/.cargo/registry/src/github.com-1ecc6299db9ec823/standback-0.2.10/src/v1_46.rs /ho...
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
module SecureEngineCustomVMs; // ****************************************************************************** // Header: SecureEngineCustomVMs64.d // Description: D macros definitions // // Author/s: Oreans Technologies // (c) 2015 Oreans Technologies // // --- File generated automatically from Oreans VM G...
D
/Users/yajnavalkya/Developer/Rationalize/build/Rationalize.build/Debug-iphonesimulator/Rationalize.build/Objects-normal/x86_64/SnappingSlider.o : /Users/yajnavalkya/Developer/Rationalize/Rationalize/AppDelegate.swift /Users/yajnavalkya/Developer/Rationalize/Rationalize/SnappingSlider.swift /Users/yajnavalkya/Developer/...
D
module prova.graphics.spritebatch; import prova.assets; import prova.attachables; import prova.graphics; import prova.math; import prova.util; import std.typecons; /// final class SpriteBatch { /// Copy of GraphicsContext.spriteShader ShaderProgram shaderProgram; private bool begun; private Mesh mesh; priva...
D
/** * @file pxidev.h * @brief Gamecard PXI service. */ module ctru.services.pxidev; import ctru.types; import ctru.services.fs; extern (C): nothrow: @nogc: /// Card SPI wait operation type. enum PXIDEVWaitType : ubyte { none = 0, ///< Do not wait. sleep = 1, ///< Sleep for the specified ...
D
a female tiger
D
module android.java.android.media.AudioManager_AudioPlaybackCallback; public import android.java.android.media.AudioManager_AudioPlaybackCallback_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!AudioManager_AudioPlaybackCallback; import import1 = android.java.java.lang.Class;
D
/** * Copyright: * (C) 2016 Martin Brzenska * * License: * Distributed under the terms of the MIT license. * Consult the provided LICENSE.md file for details */ module libdominator; public import libdominator.Attribute; public import libdominator.Dominator; public import libdominator.Node; public import libdo...
D
uncastrated adult male horse constituting the full quantity or extent constituting the undiminished entirety (of leaves or petals) having a smooth edge (used of domestic animals) sexually competent
D
/** * This is a low-level messaging API upon which more structured or restrictive * APIs may be built. The general idea is that every messageable entity is * represented by a common handle type (called a Cid in this implementation), * which allows messages to be sent to in-process threads, on-host processes, * an...
D
instance DIA_VALENTINO_EXIT(C_INFO) { npc = vlk_421_valentino; nr = 999; condition = dia_valentino_exit_condition; information = dia_valentino_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_valentino_exit_condition() { return TRUE; }; func void dia_valentino_exit_info() { AI_StopPro...
D
module android.java.android.provider.Telephony_Mms_Outbox; public import android.java.android.provider.Telephony_Mms_Outbox_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!Telephony_Mms_Outbox; import import0 = android.java.java.lang.Class;
D
module android.java.android.widget.GridLayout_Alignment_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.java.lang.Class_d_interface; @JavaName("GridLayout$Alignment") final cla...
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
/** * Generate the object file for function declarations and critical sections. * * Copyright: Copyright (C) 1999-2022 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1...
D
// ********************************************************************* // main menu (startup) // ********************************************************************* INSTANCE MENU_MAIN(C_MENU_DEF) { backpic = MENU_BACK_PIC; musictheme = "SYS_Menu"; items[0] = "MENUITEM_MAIN_HEADLINE"; items[1] = "MENUIT...
D
module time.WallClock; public import time.Time, time.Clock, sys.Common; struct Куранты { static Время сейчас (); static ИнтервалВремени зона (); static ДатаВремя вДату (); static ДатаВремя вДату (Время utc); static Время из...
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="Verify3.notation#_akMKgD2qEeO0W5WL...
D
module mud.memory.memstream; private import mud.container.growing; private import std.exception : assertThrown; private import core.exception : AssertError; /// Output memory stream. Convenient for accessing elements in a byte array struct OMemStream { /// Check if the stream had ended @property bool eof() @n...
D
module android.java.android.icu.text.MessageFormat_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import1 = android.java.android.icu.util.ULocale_d_interface; import import3 = android.java.java.text....
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 android.java.android.widget.CursorAdapter_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import5 = android.java.java.lang.CharSequence_d_interface; import import1 = android.java.android.databa...
D
/Users/hasan/PycharmProjects/Rust/rust-cli/email-sending/target/debug/build/rand_chacha-8f12a30830111b58/build_script_build-8f12a30830111b58: /Users/hasan/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs /Users/hasan/PycharmProjects/Rust/rust-cli/email-sending/target/debug/build/rand_chacha-8...
D
import core.thread; import core.time; version (linux) { version (X86_64) { alias x86_64_asm_linux_lock = void; } } immutable string readFence = ``; immutable string writeFence = ``; extern(C) uint GetThreadId() { asm nothrow { naked; db 0x64, 0x48, 0x8b, 0x0...
D
/* * $Id: screen3d.d,v 1.1.1.1 2006/02/19 04:57:26 kenta Exp $ * * Copyright 2005 Kenta Cho. Some rights reserved. */ module abagames.util.sdl.screen3d; private import std.string; private import std.conv; private import SDL; private import opengl; private import abagames.util.vector; private import abagames.util.s...
D
module grimoire.stdlib.math; import std.random, std.math; import std.algorithm.comparison: clamp; import grimoire.compiler, grimoire.runtime; package(grimoire.stdlib) void grLoadStdLibMath(GrData data) { data.addPrimitive(&_clamp, "clamp", ["v", "min", "max"], [grFloat, grFloat, grFloat], [grFloat]); data.add...
D
/home/alansky/Dev/Parity/substrate-node-template/target/debug/build/httparse-6828d44b08f07b99/build_script_build-6828d44b08f07b99: /home/alansky/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs /home/alansky/Dev/Parity/substrate-node-template/target/debug/build/httparse-6828d44b08f07b99/build_sc...
D
module UnrealScript.TribesGame.TrDroppedPickup; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.UTGame.UTDroppedPickup; import UnrealScript.Engine.SoundCue; import UnrealScript.Engine.Pawn; import UnrealScript.Engine.Canvas; import UnrealScript.TribesGame.TrCollisionProxy; import Unreal...
D
module gargula.builtin.sprite; import gargula.builtin.tween; import gargula.node; import gargula.resource.texture; import gargula.wrapper.raylib; enum SpriteOptions { /// Default options: dynamic rotation and pivot none = 0, /// Axis Aligned Sprites may not rotate axisAligned = 1 << 0, /// Pivot i...
D
/* * This file is part of moss. * * Copyright © 2020 Serpent OS Developers * * 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 softw...
D
/** * D header file for GNU/Linux * * $(LINK2 http://sourceware.org/git/?p=glibc.git;a=blob;f=stdlib/errno.h, glibc stdlib/errno.h) */ module core.sys.linux.errno; version (linux): extern (C): nothrow: public import core.stdc.errno; import core.sys.linux.config; static if (__USE_GNU) { extern __gshared char*...
D
/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Assistant of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensee...
D
# FIXED driverlib/mpu.obj: C:/ti/TivaWare_C_Series-2.1.4.178/driverlib/mpu.c driverlib/mpu.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.0.LTS/include/stdbool.h driverlib/mpu.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.0.LTS/include/stdint.h driverlib/mpu.obj: C:/ti/TivaWare_C_Series-2.1.4.178/inc/hw_ints.h driv...
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
/home/naufil/Desktop/rust/28April/index4_2/target/debug/index4_2: /home/naufil/Desktop/rust/28April/index4_2/src/main.rs
D
// Written in the D programming language. /** Networking client functionality as provided by $(HTTP _curl.haxx.se/libcurl, libcurl). The libcurl library must be installed on the system in order to use this module. $(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE , $(TR $(TH Category) $(TH Functions) )...
D
a wormlike and often brightly colored and hairy or spiny larva of a butterfly or moth a large tracked vehicle that is propelled by two endless metal belts
D
/home/philip/LearnDemo/rust-lang-book/Chapter04/demo4_6/target/debug/deps/demo4_6-b635395ddef084f1.rmeta: src/main.rs /home/philip/LearnDemo/rust-lang-book/Chapter04/demo4_6/target/debug/deps/demo4_6-b635395ddef084f1.d: src/main.rs src/main.rs:
D
instance DIA_328_Miliz_EXIT(C_Info) { npc = Mil_328_Miliz; nr = 999; condition = DIA_328_Miliz_EXIT_Condition; information = DIA_328_Miliz_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_328_Miliz_EXIT_Condition() { return TRUE; }; func void DIA_328_Miliz_EXIT_Info() { AI_StopProcess...
D
// ************************************************************************* // Kapitel 1 // ************************************************************************* // ************************************************************************* // EXIT // *********************************************...
D
module mqttd.factory; import mqttd.message; import cerealed.decerealiser; import std.stdio; struct MqttFactory { static this() { with(MqttType) { registerType!MqttConnect(CONNECT); registerType!MqttConnack(CONNACK); registerType!MqttPublish(PUBLISH); regis...
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_13_BeT-1851257...
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
module replace; //import std.metastrings; import std.conv; /** Performs compile time string replacements on $(D base) Parameters: T = replacement specs, alternating between string to be replaced and $(D toStringNow)-able object to replace with. Example: --- import std.metastrings; import std.stdio; void main() { ...
D
/* Copyright © 2020-2023, Inochi2D Project Distributed under the 2-Clause BSD License, see LICENSE file. Authors: Luna Nielsen */ module creator.io.psd; import creator; import creator.ext; import creator.core.tasks; import creator.widgets.dialog; import inochi2d.math; import inochi2d; import psd; impor...
D
# FIXED Full_Demo/Standard_Demo_Tasks/EventGroupsDemo.obj: C:/Users/student/Desktop/FreeRTOSv10.1.1/FreeRTOS/Demo/Common/Minimal/EventGroupsDemo.c Full_Demo/Standard_Demo_Tasks/EventGroupsDemo.obj: C:/Users/student/Desktop/FreeRTOSv10.1.1/FreeRTOS/Source/include/FreeRTOS.h Full_Demo/Standard_Demo_Tasks/EventGroupsDemo...
D
/******************************************************************************* Base class for Asynchronously/Selector managed DLS bulk get requests (GetAll, GetRange, GetAllKeys) The bulk DLS commands all return compressed batches of values. This base class implements the functionality to receive th...
D
import std.algorithm.comparison; import std.stdio: write, writeln, writef, writefln , fscanf, readln,readf; import std.exception : assertThrown; import std.array; import std.string; import std.path; import std.uni; import std.format; import std.file; void man(string[] aux,float quantidade){ if(equal(aux[1],"mkdi...
D
import core.stdc.stdio: printf; int main() { int i = 0; for (int z = 1; ; ++z) for (int x = 1; x <= z; ++x) for (int y = x; y <= z; ++y) if (x*x + y*y == z*z) { printf("(%i, %i, %i)\n", x, y, z); if (++i == 1000) ...
D
import std.stdio; import std.string : format; export int sayHello1 (string str) { writeln ("Hello %s from library 1.".format (str)); return 4; } version (Windows) { import core.sys.windows.dll; mixin SimpleDllMain; }
D
import vibe.d; //https://vibed.org/docs import std.stdio; import std.json; import deimos.sodium; import core.stdc.stdlib; import core.thread; import std.digest.sha; import std.string; import tinyredis; //https://adilbaig.github.io/Tiny-Redis/ __gshared Redis conn = void; __gshared ulong block = 0; __gshared bool...
D
# FIXED Drivers/NV/crc.obj: C:/ti/simplelink_cc13x2_26x2_sdk_3_40_00_02/source/ti/common/nv/crc.c Drivers/NV/crc.obj: C:/ti/simplelink_cc13x2_26x2_sdk_3_40_00_02/source/ti/common/nv/crc.h Drivers/NV/crc.obj: C:/ti/ccs920/ccs/tools/compiler/ti-cgt-arm_18.12.3.LTS/include/stdlib.h Drivers/NV/crc.obj: C:/ti/ccs920/ccs/to...
D
// Written in the D programming language. /** This is a submodule of $(MREF std, algorithm). It contains generic algorithms that implement set operations. $(BOOKTABLE Cheat Sheet, $(TR $(TH Function Name) $(TH Description)) $(T2 cartesianProduct, Computes Cartesian product of two ranges.) $(T2 largestPartialIn...
D
module imports.a4481; template reduce(alias pred) { auto reduce(R)(R range) { return pred(range[0]); } }
D
module android.java.android.view.textclassifier.TextClassificationSessionFactory; public import android.java.android.view.textclassifier.TextClassificationSessionFactory_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!TextClassificationSessionFactory; import import0 = android.java.android.view...
D
/* Copyright (c) 2011-2019 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
//------------------------------------------------------------------- // // Main resistence forces calculation // (c) maisvendoo, 2015/01/25 // //------------------------------------------------------------------- module MainResForces; import MathFuncs; import physics; enum int AXIS = 4; //---------------------...
D
//Автор Кристофер Миллер. Переработано для Динрус Виталием Кулич. //Библиотека визуальных конпонентов VIZ (первоначально DFL). module viz.button; private import viz.common, viz.control, viz.app; private extern(Windows) проц _initButton(); extern(D): abstract class ОсноваКнопки: СуперКлассУпрЭлта //...
D