code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
the rounded seed-bearing capsule of a cotton or flax plant
| D |
a small piece of anything (especially a piece that has been snipped off)
the act of clipping or snipping
sever or remove by pinching or snipping
cultivate, tend, and cut back the growth of
| D |
/**
* Code generation 2
*
* Includes:
* - math operators (+ - * / %) and functions (abs, cos, sqrt)
* - 'string' functions (strlen, memcpy, memset)
* - pointers (address of / dereference)
* - struct assign, constructor, destructor
*
* Compiler implementation of the
* $(LINK2 https://www.dlang.org, D programmi... | D |
module rel;
import std.typecons, std.range, std.container, std.stdio, std.string, std.algorithm : map;
enum Rel : byte { Unknown, ImNewer, ImOlder, Same, Different }
Rel inv(Rel x)
{
switch(x) {
case Rel.ImNewer: return Rel.ImOlder;
case Rel.ImOlder: return Rel.ImNewer;
default: return x;
}
}
cla... | D |
/** Implements a thread-safe, typed producer-consumer queue.
Copyright: © 2017-2019 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.channel;
import vibe.core.sync : TaskCondition;
import vibe.internal.array : Fixe... | D |
/** nuiapi.d
Converted from 'NuiApi.h' in Microsoft's Kinect for Windows SDK.
Version: 1.5
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Koji Kishita
*/
module c.windows.kinect.nuiapi;
import c.windows.windef;
import c.windows.winerror;
import c.windows.wtypes;
public import c.windows.kinec... | D |
int main() {
double d; // :D
}
| D |
instance VLK_530_Guy (Npc_Default)
{
//-------- primary data --------
name = "Guy";
npctype = npctype_Main;
guild = GIL_VLK;
level = 2;
voice = 3;
id = 530;
//-------- abilities --------
attribute... | D |
/**
* Handle introspection functionality of the `__traits()` construct.
*
* Specification: $(LINK2 https://dlang.org/spec/traits.html, Traits)
*
* Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: ... | D |
instance Info_Tpl_13_EXIT(C_Info)
{
nr = 999;
condition = Info_Tpl_13_EXIT_Condition;
information = Info_Tpl_13_EXIT_Info;
permanent = 1;
description = "KONEC";
};
func int Info_Tpl_13_EXIT_Condition()
{
return 1;
};
func void Info_Tpl_13_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance Info_Tpl_13_Ein... | D |
/*
* All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
*
* 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... | D |
import std.stdio, std.string, std.array, std.algorithm, std.conv, std.typecons, std.numeric;
alias M = Tuple!(int, "a", int, "b", int, "c");
void main()
{
immutable nm = readln.chomp.split(" ").map!(to!int).array;
immutable n = nm[0];
immutable ma = nm[1];
immutable mb = nm[2];
auto meds = new M[... | D |
/**
* Copyright: Copyright (c) 2012 Jacob Carlborg. All rights reserved.
* Authors: Jacob Carlborg
* Version: Initial created: Jan 30, 2012
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
*/
module dstep.translator.Type;
import mambo.core.string;
import mambo.core.io;
import ... | D |
// Written in the D programming language.
/**
This module implements a variety of type constructors, i.e., templates
that allow construction of new, useful general-purpose types.
Source: $(PHOBOSSRC std/_typecons.d)
Macros:
WIKI = Phobos/StdVariant
Synopsis:
----
// value tuples
alias Tuple!(float, "x", float,... | D |
module orelang.operator.UriOperators;
import orelang.operator.IOperator,
orelang.Engine,
orelang.Value;
import std.regex,
std.uri : encodeComponentUnsafe = encodeComponent;
static string encodeComponent(string s) {
char hexChar(ubyte c) {
assert(c >= 0 && c <= 15);
if (c < 10)
retu... | D |
/*******************************************************************************
* Copyright (c) 2003, 2005 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 |
build/x86_64-debug/src/timer.o: src/timer.c
| D |
/workspace/target/debug/build/crc32fast-030b715bba50b8fc/build_script_build-030b715bba50b8fc: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.2.1/build.rs
/workspace/target/debug/build/crc32fast-030b715bba50b8fc/build_script_build-030b715bba50b8fc.d: /root/.cargo/registry/src/github.com-1ecc6299db9ec... | D |
/**
Password hashing routines
Copyright: © 2012 Sönke Ludwig
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig
*/
deprecated("This module will be removed(see #794). The DUB packages dauth or scrypt may be suitable alternatives.")
module vibe.crypto... | D |
/**
* The demangle module converts mangled D symbols to a representation similar
* to what would have existed in code.
*
* Copyright: Copyright Sean Kelly 2010 - 2014.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LI... | D |
// Written in the D programming language.
/**
This package implements the hash-based message authentication code (_HMAC)
algorithm as defined in $(HTTP tools.ietf.org/html/rfc2104, RFC2104). See also
the corresponding $(HTTP en.wikipedia.org/wiki/Hash-based_message_authentication_code, Wikipedia article).
$(SCRIPT in... | D |
module engine.thirdparty.dbox.dynamics.b2timestep;
import core.stdc.stdlib;
import core.stdc.float_;
import core.stdc.string;
import engine.thirdparty.dbox.common;
import engine.thirdparty.dbox.collision;
import engine.thirdparty.dbox.dynamics;
import engine.thirdparty.dbox.dynamics.contacts;
import engine.thirdparty... | D |
module chipmunk.cpTransform;
import chipmunk.chipmunk_types;
import chipmunk.cpBB;
import chipmunk.cpVect;
extern (C):
/// Identity transform matrix.
static const cpTransform cpTransformIdentity = {1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f};
/// Construct a new transform matrix.
/// (a, b) is the x basis vector.
/// (c, d... | D |
/Users/radibarq/developer/NasaInArabic/build/Pods.build/Debug-iphonesimulator/Cards.build/Objects-normal/x86_64/Card.o : /Users/radibarq/developer/NasaInArabic/Pods/Cards/Cards/Sources/Card.swift /Users/radibarq/developer/NasaInArabic/Pods/Cards/Cards/Sources/CardArticle.swift /Users/radibarq/developer/NasaInArabic/Pod... | D |
/Users/macosx/Desktop/IOS-OBJ/ViberDemo/build/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/ImmutableMappable.o : /Users/macosx/Desktop/IOS-OBJ/ViberDemo/Pods/ObjectMapper/Sources/FromJSON.swift /Users/macosx/Desktop/IOS-OBJ/ViberDemo/Pods/ObjectMapper/Sources/ToJSON.swift /Users/macosx/Desk... | D |
instance BDT_1062_Bandit_L(Npc_Default)
{
name[0] = NAME_Bandit;
guild = GIL_BDT;
id = 1062;
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 |
module perfontain.shader.types;
import perfontain.opengl;
struct ShaderInfo
{
uint bit;
uint type;
string name;
}
static immutable shaderInfo = [
ShaderInfo(GL_VERTEX_SHADER_BIT_EXT, GL_VERTEX_SHADER, `vertex`),
ShaderInfo(GL_FRAGMENT_SHADER_BIT_EXT, GL_FRAGMENT_SHADER, `fragment`),
ShaderInfo(GL_COMPUTE_SHADER... | D |
/Volumes/cogzidel/Aravind/git/AnimationsSwift/DerivedData/Swift-Animations/Build/Intermediates.noindex/Swift-Animations.build/Debug-iphonesimulator/Swift-Animations.build/Objects-normal/x86_64/ClassModel.o : /Volumes/cogzidel/Aravind/git/AnimationsSwift/Swift-Animations/AppleSystemService.swift /Volumes/cogzidel/Aravin... | D |
instance STRF_1157_Leiche (Npc_Default)
{
// ------ NSC ------
name = NAME_Straefling;
guild = GIL_STRF;
id = 1157;
voice = 8;
flags = 0;
npctype = NPCTYPE_OCMAIN;
// ------ Attribute ------
// ------ Attribute ------
slf.attribute[ATR_STRENGTH] = 10;
slf.attribute[ATR_DEXTERITY] ... | D |
#char changed
def change_char(str1):
char = str1[0]
str1 = str1.replace(char, '$')
str1 = char + str1[1:]
return str1
print(change_char('restart'))
#to remove nth index
def remove_char(str, n):
first_part = str[:n]
last_part = str[n+1:]
return first_part + last_part
print(remove_char('Pytho... | D |
/Users/leonardo15043/Documents/GitHub/TypeAlert/build/TypeAlert.build/Debug-iphonesimulator/TypeAlert.build/Objects-normal/x86_64/ViewController.o : /Users/leonardo15043/Documents/GitHub/TypeAlert/TypeAlert/AppDelegate.swift /Users/leonardo15043/Documents/GitHub/TypeAlert/TypeAlert/ViewController.swift /Applications/Xc... | D |
/**
* Authors: Frank Benoit <keinfarbton@googlemail.com>
*/
module java.io.FileInputStream;
import java.lang;
import java.io.File;
import java.io.InputStream;
version(Tango){
import TangoFile = tango.io.device.File;
} else { // Phobos
static import std.stream;
}
public class FileInputStream : java.io.Input... | D |
/**
A package supplier, able to get some packages to the local FS.
Copyright: © 2012 Matthias Dondorff
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Matthias Dondorff
*/
module dub.packagesupplier;
import dub.dependency;
import dub.internal.vibecompat.core... | D |
instance Mod_1910_SMK_SchwarzerKrieger_OM (Npc_Default)
{
//-------- primary data --------
name = NAME_schwarzerkrieger;
npctype = NPCTYPE_om_schwarzerkrieger;
guild = GIL_kdf;
level = 15;
voice = 7;
id = 1910;
//-------- abilities --------
B_SetAttributesToChapter (self, 5);
EquipItem (self,... | D |
// Written in the D programming language.
/**
This module contains base fonts access interface and common implementation.
Font - base class for fonts.
FontManager - base class for font managers - provides access to available fonts.
Actual implementation is:
dlangui.graphics.ftfonts - FreeType based font manager.
... | D |
/*
Copyright © 2019 Clipsey
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2.... | D |
/home/zbf/workspace/git/RTAP/target/debug/deps/fake_simd-e8e0b05b3b842cdd.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/fake-simd-0.1.2/src/lib.rs
/home/zbf/workspace/git/RTAP/target/debug/deps/libfake_simd-e8e0b05b3b842cdd.rlib: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06... | D |
/*******************************************************************************
* Copyright (c) 2005, 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 distributio... | D |
/* /////////////////////////////////////////////////////////////////////////////
* File: std/openrj.d
*
* Purpose: Open-RJ/D mapping for the D standard library
*
* Created: 11th June 2004
* Updated: 10th March 2005
*
* Home: http://openrj.org/
*
* Copyright 2004-2005 by Matthew Wilson and Synesis Softw... | D |
// URL: https://atcoder.jp/contests/abc148/tasks/abc148_d
import std;
version(unittest) {} else
void main()
{
int N; io.getV(N);
int[] a; io.getA(N, a);
auto i = 0, j = ptrdiff_t(0);
while ((j = a.countUntil(i+1)) != -1) {
++i;
a = a[j+1..$];
}
io.putB(i == 0, -1, N-i);
}
auto io = IO!()();
imp... | D |
/Users/joshblatt/Projects/learning-casper/task1/tests/target/debug/build/indexmap-b4c82ff265633061/build_script_build-b4c82ff265633061: /Users/joshblatt/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/build.rs
/Users/joshblatt/Projects/learning-casper/task1/tests/target/debug/build/indexmap-b4c82ff26563... | D |
import std.stdio;
int main(string[] args)
{
writefln("Running: usingfunctions.d");
return 0;
} | D |
module d.llvm.evaluator;
import d.llvm.codegen;
import d.ir.expression;
import d.semantic.evaluator;
import util.visitor;
import llvm.c.core;
import llvm.c.executionEngine;
// In order to JIT, we redirect some call from libsdrt to druntime.
extern(C) {
/**
* Memory allocation, forward to GC
*/
void* __sd_gc... | D |
/Users/hdcui/blind_sig_project/bld_sig/target/rls/debug/deps/bls12_381-716087fcfdba0a16.rmeta: /Users/hdcui/.cargo/registry/src/github.com-1ecc6299db9ec823/bls12_381-0.1.1/src/lib.rs /Users/hdcui/.cargo/registry/src/github.com-1ecc6299db9ec823/bls12_381-0.1.1/src/util.rs /Users/hdcui/.cargo/registry/src/github.com-1ecc... | D |
/**
* Encryption utilities
*/
module crypto.encrypt;
import util.array;
/**
* XOR two strings
*
* Params:
* s1 = The first string
* s2 = The second string
*
* Returns:
* zip xor s1 s2
*/
string fixedXor ( string s1, string s2 )
in
{
assert(s1.length == s2.length);
}
body
{
string r... | D |
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/SQLite.build/Row/SQLiteDataType.swift.o : /Users/nice/HelloWord/.build/checkouts/sqlite.git--4454338443970141452/Sources/SQLite/Row/SQLiteData.swift /Users/nice/HelloWord/.build/checkouts/sqlite.git--4454338443970141452/Sources/SQLite/SQL/SQLiteGeneric.swift /... | D |
module dcrypt.benchmark.sphincs256;
import dcrypt.benchmark.Benchmark;
import dcrypt.pqc.sphincs.sphincs256: Sphincs256;
public class Sphincs256Benchmark: Benchmark {
this (){
}
@property
static string[] header() {
return ["sphincs256", "sign/s", "verify/s"];
}
override string[] benchmark(ulong length)... | D |
/+ dub.sdl:
name "tests"
description "TCP disconnect task issue"
dependency "vibe-core" path="../"
versions "VibeDefaultMain"
+/
module test;
import vibe.core.core;
import vibe.core.net;
import core.time : msecs;
shared static this()
{
listenTCP(11375,(conn){
auto td = runTask!TCPConnection((conn) {
ubyte [... | D |
import std.stdio;
import dpmatch;
import dadt;
mixin(genCodeFromSource(`
type Option(T) =
| Some of T
| None
[@@deriving show, eq]
`));
import std.traits;
Option!U opt_map(F, T = Parameters!F[0], U = ReturnType!F)(Option!T v_opt, F f)
if (isCallable!F && arity!F == 1) {
mixin(patternMatchADTReturn!(v_opt, Opti... | D |
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Vapor.build/WebSocket/WebSocketServer.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/vapor/... | D |
import io;
import std.datetime, std.random;
import std.parallelism;
// Creates a 1 GiB file containing random data.
// Takes ~2 seconds on my machine.
void main()
{
auto sw = StopWatch(AutoStart.yes);
auto f = tempFile();
f.length = 1024^^3; // 1 GiB
auto map = f.memoryMap!size_t(Access.write);
... | D |
/*******************************************************************************
* Copyright (c) 2000, 2008 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 |
# FIXED
ICall/icall.obj: C:/ti/simplelink_cc2640r2_sdk_3_40_00_10/source/ti/ble5stack/icall/src/icall.c
ICall/icall.obj: C:/ti/simplelink_cc2640r2_sdk_3_40_00_10/kernel/tirtos/packages/ti/sysbios/hal/Hwi.h
ICall/icall.obj: C:/ti/xdctools_3_51_03_28_core/packages/xdc/std.h
ICall/icall.obj: C:/ti/ccs930/ccs/tools/compil... | D |
import std.stdio, std.algorithm, std.range, std.conv;
string sierpinskiCarpet(in int n) /*pure nothrow*/ {
static bool inCarpet(int x, int y) pure nothrow {
while (x != 0 && y != 0) {
if (x % 3 == 1 && y % 3 == 1)
return false;
x /= 3;
y /= 3;
}
... | D |
/*
* Copyright (c) 2018, Christopher Atherton <the8lack8ox@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright n... | D |
a line corresponding to the surface of the water when the vessel is afloat on an even keel
| D |
/Users/parkingsq1/Documents/PushPill/PushPillClient/DerivedData/PushPill/Build/Intermediates/PushPill.build/Debug-iphoneos/PushPill.build/Objects-normal/arm64/DoctorPillModifyViewController.o : /Users/parkingsq1/Documents/PushPill/PushPillClient/PushPill/SignupViewController.swift /Users/parkingsq1/Documents/PushPill/P... | D |
module mach.math.ints.intdiff;
private:
import mach.traits : isIntegral, isUnsigned, Unsigned;
/++ Docs
The `intdiff` function returns the positive difference of two integers as an
unsigned integer.
For unsigned inputs this is a trivial operation but for signed inputs some
extra logic is required to get the differe... | D |
instance VLK_6024_SCATTY(Npc_Default)
{
name[0] = "Скатти";
guild = GIL_MIL;
id = 6024;
voice = 1;
flags = 0;
npcType = NPCTYPE_BL_MAIN;
B_SetAttributesToChapter(self,5);
fight_tactic = FAI_HUMAN_MASTER;
EquipItem(self,ItMw_Schwert5);
B_SetNpcVisual(self,MALE,"Hum_Head_FatBald",Face_L_Scatty,BodyTex_L,ItAr_M... | D |
/Users/joshblatt/Projects/learning-casper/erc20/tests/target/debug/deps/ff-4b4d7fb8530b58dc.rmeta: /Users/joshblatt/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.8.0/src/lib.rs
/Users/joshblatt/Projects/learning-casper/erc20/tests/target/debug/deps/libff-4b4d7fb8530b58dc.rlib: /Users/joshblatt/.cargo/registry/s... | D |
Roman martyr
Welsh soldier who from 1916 to 1918 organized the Arab revolt against the Turks
English portrait painter remembered for the series of portraits of the leaders of the alliance against Napoleon (1769-1830)
English actress (1898-1952)
United States physicist who developed the cyclotron (1901-1958)
English nov... | D |
module wx.DateTime;
public import wx.common;
//private import std.дата;
alias ВизДатаВремя ДатаВремя;
enum ПДеньНед
{
Sun, Mon, Tue, Wed, Thu, Fri, Sat, Инв_ДеньНед
};
/* ВизДатаВремя imprementation is class { longlong } */
//! \cond EXTERN
extern (C) ЦелУкз wxDefaultDateTime_Get();
extern (C) ЦелУкз wxDateTime_... | D |
a gradual sinking to a lower level
settle into a position, usually on a surface or ground
bring to an end
settle conclusively
take up residence and become established
come to terms
go under, "The raft sank and its occupants drowned"
become settled or established and stable in one's residence or life style
become resolv... | D |
/Users/theckraft/Documents/Programming/Xcode/RelayMusicPlayer/DerivedData/RelayMusicPlayer/Build/Intermediates.noindex/RelayMusicPlayer.build/Debug-iphoneos/RelayMusicPlayer.build/Objects-normal/arm64/User.o : /Users/theckraft/Documents/Programming/Xcode/RelayMusicPlayer/RelayMusicPlayer/Model/SpotifyModel/SpotifyExter... | D |
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Date/DateMiddleware.swift.o : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-549298888... | D |
func int C_Npc_GetDistToWP(var C_NPC pointMan, var string waypoint, var int Dist, var int MoreOrLess)
{
if(MoreOrLess == More)
{
if(Npc_GetDistToWP(pointMan,waypoint) > Dist)
{return TRUE;}
else
{return FALSE;};
}
else
{
if(Npc_GetDistToWP(pointMan,waypoint) <= Dist)
{return TRUE;}
else
{return FAL... | D |
module gccbuild.build.hostlibs;
import gccbuild, scriptlike;
void buildHostLibs()
{
startSection("Building host libraries");
buildGMP();
buildMPFR();
buildMPC();
endSection();
}
void buildGMP()
{
buildLibrary(build.gmp, "GMP");
}
void buildMPFR()
{
buildLibrary(build.mpfr, "MPFR");
}
vo... | D |
module html5.elements.edit;
import html5;
class InsElement : Html5Element!("ins"){
mixin(ElementConstructorTemplate!());
}
class DelElement : Html5Element!("del"){
mixin(ElementConstructorTemplate!());
}
| D |
/Users/miladmehrpoo/Desktop/Helloworld/.build/debug/TurnstileCrypto.build/Random.swift.o : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Turnstile-1.0.3/Sources/TurnstileCrypto/BCrypt.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Turnstile-1.0.3/Sources/TurnstileCrypto/Random.swift /Users/miladmehrpoo/Desktop... | D |
/**
* Parse .mo files and find translated messages.
* Authors:
* $(LINK2 https://github.com/FreeSlave, Roman Chistokhodov)
* Copyright:
* Roman Chistokhodov, 2018
* License:
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* See_Also:
* $(LINK2 https://www.gnu.org/software/gettext/manual... | D |
/Users/okasho/serverProject/tryswift/get_and_post/swift/.build/debug/Fluent.build/Database/Driver.swift.o : /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Fluent-1.4.1/Sources/Fluent/Database/Database.swift /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Fluent-1.4.1/Sources/Fluent/Da... | D |
module src.features;
/*******************************************************************************
*
*/
interface AppInterface
{
/***************************************************************************
*
*/
void run();
/***************************************************************************... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail4082.d(14): Error: destructor `fail4082.Foo.~this` is not nothrow
fail_compilation/fail4082.d(12): Error: nothrow function `fail4082.test1` may throw
---
*/
struct Foo
{
~this() { throw new Exception(""); }
}
nothrow void test1()
{
Foo f;
goto NEXT;
NEXT:
;
}
/... | D |
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Settings.build/Env/Env.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Vapor-1.3.11/Sources/Settings/Config+Arguments.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Vapor-1.3.11/Sources/Settings/Config+Dire... | D |
/Users/pavlosnicolaou/Documents/workshop/Kitura/KituraWebInterface/KituraWebInterface_Starter/.build/x86_64-apple-macosx10.10/debug/KituraNet.build/FastCGI/FastCGIRecordCreate.swift.o : /Users/pavlosnicolaou/Documents/workshop/Kitura/KituraWebInterface/KituraWebInterface_Starter/.build/checkouts/Kitura-net.git-68479984... | D |
module hurrican.http.exception;
class HttpException : Exception {
public this(string message) {
super(message);
}
}
class NotImplementedException : HttpException {
public this(string message) {
super(message);
}
public this() {
this("Not implemented");
}
}
class Bad... | D |
/Volumes/iMacProjetos/Curso/Rocketseat/GoNative/module4/ios/build/module4/Build/Intermediates.noindex/RNTrackPlayer.build/Debug-iphonesimulator/RNTrackPlayer.build/Objects-normal/x86_64/Capabilities.o : /Volumes/iMacProjetos/Curso/Rocketseat/GoNative/module4/node_modules/react-native-track-player/ios/RNTrackPlayer/Mode... | 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 |
/*
* Copyright (C) 2014 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 |
/home/liyun/clink/clink_mpc/target/debug/deps/regex_syntax-8ac7e73c68f1ae51.rmeta: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/regex-syntax-0.6.25/src/lib.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/regex-syntax-0.6.25/src/ast/mod.rs /home/liyun/.cargo/registry/src/m... | D |
/*
* gc.d
*
* This module implements the D runtime functions for interfacing the
* garbage collector.
*
*/
module runtime.gc;
void gc_init() {
}
void gc_term() {
}
void gc_enable() {
}
void gc_disable() {
}
void gc_collect() {
}
uint gc_getAttr(void* p) {
return 0;
}
uint gc_setAttr(void* p, uint a) {
r... | D |
instance GRD_224_PACHO(NPC_DEFAULT)
{
name[0] = "Пако";
npctype = NPCTYPE_MAIN;
guild = GIL_GRD;
level = 10;
voice = 13;
id = 224;
attribute[ATR_STRENGTH] = 35;
attribute[ATR_DEXTERITY] = 35;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 160;
attribute[ATR_HITPOINTS] ... | D |
// Written in the D programming language.
/**
* Compress/decompress data using the $(LINK2 http://www._zlib.net, zlib library).
*
* References:
* $(LINK2 http://en.wikipedia.org/wiki/Zlib, Wikipedia)
*
* Macros:
* WIKI = Phobos/StdZlib
*
* Copyright: Copyright Digital Mars 2000 - 2011.
* License: <a href... | D |
/root/ji/example-helloworld/src/cross-program-invocation/target/debug/deps/derivation_path-b021b4292e35209c.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/derivation-path-0.1.3/src/lib.rs
/root/ji/example-helloworld/src/cross-program-invocation/target/debug/deps/libderivation_path-b021b4292e35209c.rlib: ... | D |
// Copyright Ferdinand Majerech 2011.
// 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)
/**
* YAML node _representer. Prepares YAML nodes for output. A tutorial can be
* found $(LINK2 ../t... | D |
/*
Copyright (c) 2019-2022 Timur Gafarov
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
... | D |
// ************
// SPL_FireRain
// ************
const int SPL_Cost_FireRain = 35;
const int SPL_Damage_FireRain = 260;
INSTANCE Spell_FireRain (C_Spell_Proto)
{
time_per_mana = 0;
damage_per_level = SPL_Damage_FireRain;
damageType = DAM_MAGIC;
targetCollectAlgo = TARGET_COLLECT_NONE;... | D |
import std.stdio, std.string, std.numeric, std.algorithm, std.traits;
alias TMMul_helper(M1, M2) = Unqual!(ForeachType!(ForeachType!M1))
[M2.init[0].length][M1.length];
void matrixMul(T, T2, size_t k, size_t m, size_t n)
(in ref T[m][k] A, in ref T[n][m] B,
/*... | D |
module saillog;
import std.stdio;
import std.process;
import core.sync.mutex;
import core.thread;
import col;
import config;
import api;
/**
Logs everything, on console and/or on files
Todo: May be wise to create a thread if the mutex is locked so it doesn't slow the main process
*/
class SailLog {
public:
/**
... | D |
a slippery or viscous liquid or liquefiable substance not miscible with water
oil paint containing pigment that is used by an artist
a dark oil consisting mainly of hydrocarbons
any of a group of liquid edible fats that are obtained from plants
cover with oil, as if by rubbing
administer an oil or ointment to
| D |
module java.lang.Class;
import java.lang.util;
import java.lang.String;
import java.lang.reflect.Method;
import java.lang.reflect.Field;
import java.lang.reflect.Package;
import java.lang.reflect.Constructor;
class Class {
bool desiredAssertionStatus(){
implMissing(__FILE__, __LINE__ );
return fal... | D |
instance Mod_1299_SLD_Organisator_MT (Npc_Default)
{
//-------- primary data --------
name = Name_Organisator;
Npctype = Npctype_mt_soeldner;
guild = GIL_mil;
level = 4;
voice = 0;
id = 1299;
//-------- abilities --------
B_SetAttributesToChapter (self, 4);
EquipIte... | D |
module android.java.java.nio.channels.SocketChannel;
public import android.java.java.nio.channels.SocketChannel_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!SocketChannel;
import import0 = android.java.java.nio.channels.SocketChannel;
import import5 = android.java.java.nio.channels.NetworkC... | D |
module bio.std.hts.sam.utils.fastrecordparser;
#line 1 "sam_alignment.rl"
/*
This file is part of BioD.
Copyright (C) 2012 Artem Tarasov <lomereiter@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Soft... | 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 |
/*******************************************************************************
* Copyright (c) 2007, 2008 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 |
/**
* D header file for C99.
*
* $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_stdarg.h.html, _stdarg.h)
*
* Copyright: Copyright Digital Mars 2000 - 2020.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright, Hauke Duden
* Standard... | D |
module hunt.database.query.Expr;
import hunt.database.query.Expression;
import hunt.database.query.Common;
import hunt.database.query.Comparison;
import hunt.logging;
class Expr
{
Comparison!T eq(T)(string key,T value)
{
return new Comparison!T(key,CompareType.eq,value);
}
Comparison!T n... | D |
module vksdk.client.ApiRequest;
import std.experimental.logger;
import std.algorithm.searching : find;
import vibe.data.json;
import std.json;
import vksdk.client.ClientResponse;
import vksdk.client.TransportClient;
import vksdk.exceptions.ApiException;
import vksdk.exceptions.ClientException;
import vksdk.exception... | D |
/**
* D header file for C99.
*
* $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_locale.h.html, _locale.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 accomp... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.