code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
string Small_data=
r" "~
r" "~
r" "~
r" "~
r" "~
r" _ "~
r" | |"~
r" |_|"~
r" (_)"~
r" "~
r" _ _ "~
r" ( | )"~
r" V V "~
r" "~
r" "~
r" _ _ "~
r" _| | |_ "~
r" |_ . _|"~
r" |_ _|"~
r" |_|_| "~
r" "~
r" ||_"~
r" (_-<"~
r" / _/"~
r... | D |
///////////////////////////////////////////////////////////////////////
// Info EXIT
///////////////////////////////////////////////////////////////////////
INSTANCE DIA_Mil_304_Torwache_EXIT (C_INFO)
{
npc = Mil_304_Torwache;
nr = 999;
condition = DIA_Mil_304_Torwache_EXIT_Condition;
informat... | D |
/Users/msadhu/Downloads/ParseDemoStart/Build/Intermediates/ParseDemo.build/Debug-iphonesimulator/ParseDemo.build/Objects-normal/x86_64/HomeViewController.o : /Users/msadhu/Downloads/ParseDemoStart/ParseDemo/LoginViewController.swift /Users/msadhu/Downloads/ParseDemoStart/ParseDemo/ResetPasswordViewController.swift /Use... | 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 |
// Written in the D programming language.
/**
This is a submodule of $(MREF std, algorithm).
It contains generic iteration algorithms.
$(SCRIPT inhibitQuickIndex = 1;)
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 cache,
Eagerly evaluates and caches another range's `front`.)
$(T2 ca... | D |
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AnyObserver.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/danielmorales/CSUMB/Pot... | D |
// REQUIRED_ARGS: -O
// https://issues.dlang.org/show_bug.cgi?id=15898
int addAssignSimple(int[] , const(int)[] )
{
uint c;
return c;
}
void mulKaratsuba(int[] result, const(int)[] x, const(int)[] y, int[] )
{
const(int)[] y1 = y;
int[] newscratchbuff;
int[] resultHigh = result;
bool ysmaller... | D |
/**
* Defines a visitor for the AST.
*
* Other visitors derive from this class.
*
* Documentation: https://dlang.org/phobos/dmd_parsetimevisitor.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/parsetimevisitor.d
*/
module dmd.parsetimevisitor;
/** Basic and dumm visitor which implements... | D |
/Users/johnxu/Desktop/FacebookPickerPhotos/FacebookPickerPhotos/JFacebookPhotoPicker/Build/Intermediates/JFacebookPhotoPicker.build/Debug-iphonesimulator/JFacebookPhotoPicker.build/Objects-normal/x86_64/UIImage+Extension.o : /Users/johnxu/Desktop/FacebookPickerPhotos/FacebookPickerPhotos/JFacebookPhotoPicker/JFacebookP... | 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 |
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/rand_core-bef90afc570410cd.rmeta: /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/src/lib.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry... | D |
module portmidi.porttime; /* millisecond timer */
/+
+ This is a translation of PortMidi's millisecond timer function to the D2 language.
+ Translated by Andrej Mitrovic.
+/
import std.stdio;
import core.time;
import core.thread;
import win32.basetsd;
import win32.mmsystem;
import win32.windef;
version(Windows)... | D |
module einsum;
@safe:
import mir.ndslice.slice : isSlice;
import std.typecons : isTuple, tuple;
import std.format : format;
/// register index integer on dim2sym from given sym2index mapping
pure nothrow dim2index(dstring dim2sym, T)(T sym2index) if (isTuple!T) {
static if (dim2sym.length == 0) {
return ... | D |
/***********************************************************************\
* rassapi.d *
* *
* Windows API header module *
* ... | D |
/**
$(D RegionAllocator) is a memory allocator based on segmented
stacks. A segmented stack is similar to a regular stack in that memory is
allocated and freed in last in, first out order. When memory is requested from
a segmented stack, it first checks whether enough space is available in the
current segment, and if... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail19181.d(15): Error: undefined identifier `LanguageError`
---
*/
struct S
{
void opDispatch(string name, T)(T arg) { }
}
void main()
{
S s;
s.foo(LanguageError);
}
| D |
module akaricastd.playlist;
import std.typecons : Nullable, nullable;
import std.range.primitives;
import std.digest.md;
import std.conv : to;
import std.json : JSONValue;
import std.experimental.logger;
import akaricastd.player : Player;
enum PlaylistItemType {
Youtube = "youtube",
HttpFile = "http_file",
... | D |
import std.stdio;
import std.math;
import std.conv;
import std.algorithm;
byte[] toArray(long i) {
byte[] result;
result.length = to!int(floor(log10(i))) + 1;
foreach (index; 0..result.length) {
result[index] = i % 10;
i /= 10;
}
return result;
}
bool palindrome(long i) {
byte[] array = toArray(i)... | D |
/// Lock free one-to-many queues
module mecca.containers.otm_queue;
// Licensed under the Boost license. Full copyright information in the AUTHORS file
import core.atomic;
import core.thread: thread_isMainThread;
import std.string;
import std.stdint: intptr_t;
import mecca.log;
import mecca.lib.exception;
private e... | D |
/Users/ryosukesatoh/Projects/rust-play/discord-helper/target/debug/deps/fnv-876c6e2b04b7ba38.rmeta: /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs
/Users/ryosukesatoh/Projects/rust-play/discord-helper/target/debug/deps/fnv-876c6e2b04b7ba38.d: /Users/ryosukesatoh/.cargo/registry/sr... | D |
/**
* D header file for Darwin.
*
* Copyright: Copyright Sean Kelly 2008 - 2009.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Sean Kelly
*/
/* Copyright Sean Kelly 2008 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying fi... | D |
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Console.build/Terminal/ConsoleColor+Terminal.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Console-1.0.1/Sources/Console/Bar/Bar.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Console-1.0.1/Sources/Consol... | D |
/**
Alignment and tag value serialization to SAM format
*/
module sam.serialize;
import alignment;
import reference;
import tagvalue;
import utils.format;
import std.conv;
import std.algorithm;
import std.typecons;
import std.stdio;
import std.traits;
import std.c.stdlib;
import std.array;
/** Representation of t... | 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 |
import std.stdint;
import bettercmath.matrix;
import bettercmath.transform;
import bettercmath.valuerange;
import bettercmath.vector;
alias ColorRGB = Vector!(ubyte, 3);
alias ColorRGBA = Vector!(ubyte, 4);
alias Color = ColorRGBA;
alias Vec1 = Vector!(float, 1);
alias Vec2i = Vector!(int, 2);
alias Vec2 = Vector!(f... | D |
despite anything to the contrary (usually following a concession
by contrast
to whatever degree or extent
in whatever way or manner
| D |
/**
TEST_OUTPUT:
---
---
*/
// Test C++ name mangling.
// https://issues.dlang.org/show_bug.cgi?id=4059
// https://issues.dlang.org/show_bug.cgi?id=5148
// https://issues.dlang.org/show_bug.cgi?id=7024
// https://issues.dlang.org/show_bug.cgi?id=10058
import core.stdc.stdio;
extern (C++) int foob(int i, int j, int k)... | D |
/Users/leduy/Desktop/English/Build/Intermediates.noindex/English.build/Debug-iphonesimulator/English.build/Objects-normal/x86_64/UICollectionViewCellControllerCollectionViewCell.o : /Users/leduy/Desktop/English/English/AppDelegate.swift /Users/leduy/Desktop/English/English/cell/UICollectionViewCellControllerCollectionV... | D |
/*
* #3 NPCs don't collect weapons after fight
*
* The following issues are addressed:
* - The NPC now correctly picks up the detected item, even if they have to turn around
* - The NPC now only picks up a weapon if they don't already have one of the type equipped
* - The NPC now no longer equips the best weap... | D |
module vibe.extensions;
import vibe.core.log;
import vibe.http.fileserver;
import vibe.http.router : URLRouter;
import vibe.http.server;
@property URLRouter file(string filePath)(URLRouter router)
{
router.get("/" ~ filePath, &serveStaticFile!filePath);
return router;
}
void serveStaticFile(string filePath)(HTTP... | D |
//////////////////////////////////////////////////////////////////////////
// ZS_Intercept
// ============
// Dieser 'start_state' wird Menschen/Monstern gegeben, die an
// signifikanten Stellen auf den Spieler warten und ihn unter ALLEN
// umständen nochmal mit einer important-Info ansprechen müssen, bevor
// irgendet... | D |
of or relating to or measured in ohms
| D |
/home/albertfega/Desktop/LaSalleChat/.build/x86_64-unknown-linux/debug/Node.build/Utilities/Exports.swift.o : /home/albertfega/Desktop/LaSalleChat/.build/checkouts/node.git-3078412886256849983/Sources/Node/StructuredData/StructuredData.swift /home/albertfega/Desktop/LaSalleChat/.build/checkouts/node.git-307841288625684... | D |
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Service.build/Utilities/Exports.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/service/Sources/Service/Services/ServiceID.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/ser... | D |
/******************************************************************//**
* \file deps/openal/alstructs.d
* \brief Structure and types definitions for openAL
*
* <i>Copyright (c) 2012</i> Danny Arends<br>
* Last modified Mar, 2012<br>
* First written 2010<br>
* Written in the D Programming Language (http://www.dig... | D |
instance BDT_10001_Addon_Bandit_L(Npc_Default)
{
name[0] = NAME_Bandit;
guild = GIL_BDT;
id = 10001;
voice = 1;
flags = 0;
npcType = NPCTYPE_BL_AMBIENT;
B_SetAttributesToChapter(self,2);
fight_tactic = FAI_HUMAN_NORMAL;
EquipItem(self,ItMw_1h_Sld_Sword);
EquipItem(self,ItRw_Mil_Crossbow);
B_CreateAmbientInv... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (c) ?-2017 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, Boost... | D |
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.build/Thread+Async.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Core/NestedData.swift /Users/christian/GitHu... | D |
/Users/nikhilsridhar/Desktop/Shopp/Shopp/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/AFError.o : /Users/nikhilsridhar/Desktop/Shopp/Shopp/Pods/Alamofire/Source/MultipartFormData.swift /Users/nikhilsridhar/Desktop/Shopp/Shopp/Pods/Alamofire/Source/Timeline.swift /Users/nikh... | D |
/* Copyright (c) 2007 Scott Lembcke
*
* 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, publish... | D |
module cmsed.base.i18n;
import ctini.common;
/*
* Internalisation support
*
* Deisgned to work along with isFirstExecute to make sure only
* language files get registered once.
*/
private {
__gshared Section[string] sections;
bool canFindSection(string key, string name) {
foreach(setting; sections[key].s... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container;
long P = 10^^9+7;
long[2001] F, RF;
long pow(long x, long n) {
long y = 1;
while (n) {
if (n%2 == 1) y = (y * x) % P;
x = x^^2 % P;
n /= 2;
}
return y;
}
long ... | D |
# FIXED
PROFILES/gattservapp_util.obj: C:/ti/simplelink_cc2640r2_sdk_4_40_00_10/source/ti/blestack/host/gattservapp_util.c
PROFILES/gattservapp_util.obj: C:/ti/simplelink_cc2640r2_sdk_4_40_00_10/source/ti/blestack/common/cc26xx/util.h
PROFILES/gattservapp_util.obj: C:/ti/ti-cgt-arm_18.12.5.LTS/include/stdbool.h
PROFIL... | D |
/**
calc shortest path
*/
module dkh.graph.dijkstra;
import dkh.algorithm, dkh.container.radixheap;
/// information of shortest path
struct DijkstraInfo(T) {
T[] dist; /// distance
int[] from; /// there is a shortest path (s, ..., from[i], i)
this(int n, T inf) {
dist = new T[n]; dist[] = inf;
... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Routing.build/Parameter/ParameterValue.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/routing/Sources/Routing/Utilities/Deprecated.swift /Users/panartem/Developer/Study/Micr... | 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.platform.win32.defs;
version (Windows):
import std.windows.charset;
/**
Th... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/Reflectable.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build... | D |
instance VLK_476_Fenia(Npc_Default)
{
name[0] = "Fenia";
guild = GIL_VLK;
id = 476;
voice = 17;
flags = 0;
npcType = npctype_main;
aivar[AIV_ToughGuy] = TRUE;
B_SetAttributesToChapter(self,1);
fight_tactic = FAI_HUMAN_NORMAL;
B_CreateAmbientInv(self);
EquipItem(self,ItMw_1h_Vlk_Dagger);
B_SetNpcVisual(self... | D |
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/NIOConcurrencyHelpers.build/Objects-normal/x86_64/lock.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio.git-7789465888856993056/Sources/NIOConcurrencyHelpers/lock.swift /Users/phungdu/Documents/code/vapor/TILApp/.... | 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.Engine.ParticleModuleSpawn;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.ParticleEmitter;
import UnrealScript.Core.DistributionFloat;
import UnrealScript.Engine.ParticleModuleSpawnBase;
extern(C++) interface ParticleModuleSpawn : ParticleModuleSpawnBase
{
... | D |
module test.B;
int b() {
return cast(int) 'b';
}
| D |
/**
Github issues.
*/
module it.issues;
import it;
@("10")
@safe unittest {
shouldCompile(
C(
q{
enum silly_name {
FOO,
BAR,
BAZ,
};
extern void silly_name(enum silly_name thingie)... | D |
instance BAU_911_Elena(Npc_Default)
{
name[0] = "Elena";
guild = GIL_BAU;
id = 911;
voice = 16;
flags = 0;
npcType = npctype_main;
B_SetAttributesToChapter(self,2);
fight_tactic = FAI_HUMAN_COWARD;
EquipItem(self,ItMw_1h_Bau_Axe);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,FEMALE,"Hum_Head_Babe",FaceBabe... | D |
a method of writing rapidly
the act or art of writing in shorthand
| D |
import std.stdio;
import std.getopt;
import maskerade.bed;
import maskerade.bam;
import dhtslib.sam;
import intervaltree;
import std.algorithm: map;
import std.range: takeExactly, generate;
import std.array: array, join;
import std.random;
string logo = " /
... | D |
module vibe.internal.utilallocator;
public import std.experimental.allocator : allocatorObject, CAllocatorImpl, dispose,
expandArray, IAllocator, make, makeArray, shrinkArray, theAllocator;
public import std.experimental.allocator.mallocator;
public import std.experimental.allocator.building_blocks.affix_allocator... | D |
/Users/DanielChang/Documents/Vapor/Hello/.build/debug/Leaf.build/Parameter.swift.o : /Users/DanielChang/Documents/Vapor/Hello/Packages/Leaf-1.0.6/Sources/Leaf/Argument.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Leaf-1.0.6/Sources/Leaf/Byte+Leaf.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Leaf-1... | D |
module modernui.ui.core;
struct Size
{
double width;
double height;
}
Size unionWith(Size a, Size b)
{
import std.algorithm.comparison : max;
return Size(max(a.width, b.width), max(a.height, b.height));
}
Size shrink(Size a, Size b)
{
return Size(a.width - b.width, a.height - b.height);
}
struct Point
{
doubl... | D |
import std.stdio;
import std.c.stdio;
/******************************************/
struct S
{
int opStar() { return 7; }
}
void test1()
{
S s;
printf("%d\n", *s);
assert(*s == 7);
}
/******************************************/
void test2()
{
double[1][2] bar;
bar[0][0] = 1.0;
bar[1][0] = 2.0... | 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) 2009-2011 Niels Provos and Nick Mathewson
*
* 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 conditio... | D |
/Users/darshilagrawal/Desktop/CODING/rustPractice/ion_encoder/target/debug/build/nom-22e2e01b39dfc8b6/build_script_build-22e2e01b39dfc8b6: /Users/darshilagrawal/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/build.rs
/Users/darshilagrawal/Desktop/CODING/rustPractice/ion_encoder/target/debug/build/nom-22e2e0... | D |
/**
* D header file for POSIX.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: $(LINK2 http://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
* Source:... | D |
module statement.sys_stmt;
import std.conv, std.string;
import pegged.grammar;
import language.statement, language.expression;
import program;
class Sys_stmt:Stmt
{
mixin StmtConstructor;
void process()
{
auto e1 = this.node.children[0].children[0];
auto Ex1 = new Expression(e1, this.pro... | D |
// Written in the D programming language.
/**
This module implements experimental additions/modifications to $(MREF std, typecons).
Use this module to test out new functionality for $(REF wrap, std, typecons)
which allows for a struct to be wrapped against an interface; the
implementation in $(MREF std, typecons) onl... | D |
/*
This file is part of libnspire.
libnspire is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libnspire is distribut... | D |
/home/knoldus/IdeaProjects/assignment_twelve/target/debug/deps/scoped_tls-04249db6b92961db.rmeta: /home/knoldus/.cargo/registry/src/github.com-1ecc6299db9ec823/scoped-tls-1.0.0/src/lib.rs
/home/knoldus/IdeaProjects/assignment_twelve/target/debug/deps/libscoped_tls-04249db6b92961db.rlib: /home/knoldus/.cargo/registry/s... | D |
instance BDT_1025_Bandit_H(Npc_Default)
{
name[0] = NAME_Bandit;
guild = GIL_BDT;
id = 1025;
voice = 9;
flags = 0;
npcType = npctype_main;
aivar[AIV_EnemyOverride] = TRUE;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_1h_Sld_Sword_New);
EquipItem(self,ItRw_Sld_Bow);
... | D |
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/build/num-traits-af3ced53ae956f6e/build_script_build-af3ced53ae956f6e: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/num-traits-0.2.6/build.rs
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/build/num-traits-af3ced53... | D |
module android.java.android.util.SparseIntArray;
public import android.java.android.util.SparseIntArray_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!SparseIntArray;
import import1 = android.java.java.lang.Class;
import import0 = android.java.android.util.SparseIntArray;
| D |
module game.fpcamera;
import derelict.opengl.gl;
import dlib.core.memory;
import dlib.math.vector;
import dlib.math.matrix;
import dlib.math.quaternion;
import dlib.math.transformation;
import dlib.math.utils;
import dlib.math.interpolation;
import dgl.core.interfaces;
import dgl.core.event;
import dgl.graphics.cam... | D |
/*
* Entity - Entity is an object-relational mapping tool for the D programming language. Referring to the design idea of JPA.
*
* Copyright (C) 2015-2018 Shanghai Putao Technology Co., Ltd
*
* Developer: HuntLabs.cn
*
* Licensed under the Apache-2.0 License.
*
*/
module entity.domain.Sort;
import entity;
... | D |
an artifact made of hard brittle material produced from nonmetallic minerals by firing at high temperatures
of or relating to or made from a ceramic
| D |
module exception;
import std.exception;
class SysExitEx : Exception
{
public const int code;
public this(string m, string file = __FILE__, size_t line = __LINE__)
{
super(m, file, line);
code = -1;
}
this(int code, string m = "")
{
super(m);
this.code = code;
}
}
| D |
# FIXED
list.obj: C:/Users/nklei/Documents/Homework/embedded\ software/embedded-software/src/list.c
list.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.5.LTS/include/string.h
list.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.5.LTS/include/_ti_config.h
list.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.5... | D |
// Compiler implementation of the D programming language
// Copyright (c) 1999-2015 by Digital Mars
// All Rights Reserved
// written by Walter Bright
// http://www.digitalmars.com
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
module ddmd.func;
import core.stdc.... | D |
module sigod.codeforces.p266B;
import std.array : split;
import std.conv : to;
import std.stdio;
import std.string : strip;
void main() {
auto temp = split(strip(stdin.readln()));
int n = to!int(temp[0]),
t = to!int(temp[1]);
string start_queue = strip(stdin.readln());
char[] queue = start_que... | D |
/**
* $(RED Deprecated. Use $(D core.sys.darwin.sys.mman) instead. This module
* will be removed in June 2018.)
*
* D header file for FreeBSD
*
* Authors: Martin Nowak
*/
module core.sys.osx.sys.mman;
public import core.sys.darwin.sys.mman;
| D |
/*******************************************************************************
copyright: Copyright (c) 2008. Fawzi Mohamed
license: BSD стиль: $(LICENSE)
version: Initial release: July 2008
author: Fawzi Mohamed
****************************************... | D |
/Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/HandyJSON.build/Objects-normal/x86_64/HexColorTransform.o : /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Pods/HandyJSON/Source/Metadata.swift /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Pods/HandyJSON/Source/C... | D |
module mach.sdl.graphics.pixelformat;
private:
import derelict.sdl2.sdl;
import mach.sdl.glenum : GLPixelsFormat = GLPixelsFormat;
import mach.sdl.graphics.mask : Mask;
public:
// Reference: https://wiki.libsdl.org/SDL_PixelFormat
struct SDLPixelFormat { // Corresponds to SDL_PixelFormat
static enum Format... | D |
module android.java.android.accessibilityservice.AccessibilityService_MagnificationController_OnMagnificationChangedListener;
public import android.java.android.accessibilityservice.AccessibilityService_MagnificationController_OnMagnificationChangedListener_d_interface;
import arsd.jni : ImportExportImpl;
mixin Import... | D |
module levelstate;
import engine;
import derelict.sdl.sdl;
import level;
import levelrenderer;
import pipeline;
import std.stdio;
import std.utf;
import util;
import derelict.opengl.gl;
import dlisp.dlisp;
import gobject, party, character;
import dataset;
import turn;
import character;
import guichan.all;
import gui... | D |
/**
Tweening
Copyright: (c) Enalye 2019
License: Zlib
Authors: Enalye
*/
module atelier.core.timer;
import std.algorithm.comparison : clamp;
import atelier.common;
/**
Simple updatable timer. \
Start with start() and update with update(Deltatime). \
Returns a value between 0 and 1.
*/
struct Time... | 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() {
auto s = readln.split.map!(to!int);
auto N = s[0];
auto K = s[1].to!long;
auto A = N.iota.map!(_ => readln.sp... | D |
/Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/HandyJSON.build/Objects-normal/x86_64/BuiltInBridgeType.o : /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Pods/HandyJSON/Source/Metadata.swift /Users/GuoYanjun/Desktop/TestDemo/WanAndroid_IOS/Pods/HandyJSON/Source/C... | D |
the home and adjacent grounds occupied by a family
land acquired from the United States public lands by filing a record and living on and cultivating it under the homestead law
dwelling that is usually a farmhouse and adjoining land
settle land given by the government and occupy it as a homestead
| D |
module neuronsim.app;
import gtk.Main;
import neuronsim.sim.mutable_sim_wrapper;
import neuronsim.sim.neural_tree_sim;
import neuronsim.sim.sim_config;
import neuronsim.sim.sim_generator;
import neuronsim.sim.parameter_set;
import neuronsim.gui.control_box;
import neuronsim.gui.neural_tree_window;
import neuronsim.g... | D |
/Users/EmmyChavez/Desktop/Fin-Addict/Fin-Addict/build/Fin-Addict.build/Debug-iphonesimulator/Fin-Addict.build/Objects-normal/x86_64/tableViewController.o : /Users/EmmyChavez/Desktop/Fin-Addict/Fin-Addict/Fin-Addict/AppDelegate.swift /Users/EmmyChavez/Desktop/Fin-Addict/Fin-Addict/Fin-Addict/ViewController.swift /Users/... | D |
/*
Copyright (c) 2013-2015 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 |
module MapElements.SpriteNPC;
import GBAUtils.GBARom;
import GBAUtils.ISaveable;
public class SpriteNPC : ISaveable
{
public ubyte b1;
public ushort bSpriteSet;
public ubyte b4;
public ubyte bX;
public ubyte b6;
public ubyte bY;
public ubyte b8;
public ubyte b9;
public ubyte bBehavior1;
public ubyte b10;
p... | D |
/Users/diana.duan/dev/lab/ipg/FoodPinS/DerivedData/FoodPinS/Build/Intermediates.noindex/FoodPinS.build/Debug-iphonesimulator/FoodPinS.build/Objects-normal/x86_64/RestaurantDetailsViewController.o : /Users/diana.duan/dev/lab/ipg/FoodPinS/FoodPinS/AppDelegate.swift /Users/diana.duan/dev/lab/ipg/FoodPinS/FoodPinS/View/Res... | D |
module hurt.string.spell;
import hurt.container.set;
import hurt.container.deque;
import hurt.math.mathutil;
import hurt.io.stdio;
import hurt.util.pair;
private Set!(string) permutate(string word) {
immutable string perm = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
static assert(perm.length == 52);
... | D |
module wx.SplitterWindow;
public import wx.common;
public import wx.Window;
public enum SplitMode
{
wxSPLIT_HORIZONTAL = 1,
wxSPLIT_VERTICAL
}
//---------------------------------------------------------------------
//! \cond EXTERN
extern (C) {
alias void function(SplitterWindow obj, int x, int y) Vir... | D |
/Users/wilsonvinson/Documents/GitHub/RUST01/rust01_01/target/debug/deps/interpolation-6784b0afb3a53333.rmeta: /Users/wilsonvinson/.cargo/registry/src/github.com-1ecc6299db9ec823/interpolation-0.2.0/src/lib.rs /Users/wilsonvinson/.cargo/registry/src/github.com-1ecc6299db9ec823/interpolation-0.2.0/src/ease.rs /Users/wils... | D |
// Written in the D programming language.
/**
Definition of standard actions commonly used in dialogs and controls.
Synopsis:
----
import dlangui.core.stdaction;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopatin, coolreader.org@gmail.com
*/
module dlangui.core.stdaction;
... | D |
func void B_Extro_Avi()
{
PlayVideo("Extro_Xardas.BIK");
PlayVideo("Credits_Extro.BIK");
PlayVideo("Credits2.BIK");
if(!Npc_IsDead(Diego_DI) && !Npc_IsDead(Gorn_DI))
{
// DiegAndGornAreOnboard = TRUE;
PlayVideo("Extro_AllesWirdGut.BIK");
};
ExitSession();
};
| D |
module draw.object;
public import desmath.linear;
public import desgl.base;
enum ShaderSource SS_BASE =
{
`#version 120
attribute vec3 pos;
attribute vec3 col;
uniform mat4 tr;
void main(void)
{
gl_Position = tr * vec4( pos, 1.0 );
gl_FrontColor = vec4( col, 1.0 );
}`
};
class DrawObject : GLObj, Node
{
pr... | D |
/**
$(H2 Assembling Your Own Allocator)
In addition to defining the interfaces above, this package also implements
untyped composable memory allocators. They are $(I untyped) because they deal
exclusively in $(D void[]) and have no notion of what type the memory allocated
would be destined for. They are $(I composable... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.