code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
module info.data.distance;
///////////////////////
import std.math;
/////////////////////
class DistanceFunc(T,Z=double) {
this(){
}
Z opCall(in T[] data1, in T[] data2) const
in {
assert(!(data1 is null));
assert(!(data2 is null));
assert(data2.length == data2.length);
}
out(result){
assert(result >= 0);... | D |
/Users/apple-1/Downloads/HouseKeeping/Build/Intermediates/HouseKeeping.build/Debug-iphonesimulator/HouseKeeping.build/Objects-normal/x86_64/viewAdminTask.o : /Users/apple-1/Downloads/HouseKeeping/HouseKeeping/DetailsPending.swift /Users/apple-1/Downloads/HouseKeeping/HouseKeeping/tblAssignTasksPending.swift /Users/appl... | D |
/Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/HanekeSwift.build/Objects-normal/x86_64/String+Haneke.o : /Users/Fares/Documents/Projects/TransitApp/Pods/HanekeSwift/Haneke/Cache.swift /Users/Fares/Documents/Projects/TransitApp/Pods/HanekeSwift/Haneke/CGSize+Swift.swift /Users/Fares/Do... | D |
module UnrealScript.UTGame.UTPickupMessage;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.UTGame.UTLocalMessage;
import UnrealScript.Engine.PlayerController;
import UnrealScript.Engine.PlayerReplicationInfo;
import UnrealScript.Core.UObject;
extern(C++) interface UTPickupMessage : UT... | D |
module org.serviio.restlet.HttpCodeException;
import java.lang.RuntimeException;
import java.lang.String;
public class HttpCodeException : RuntimeException
{
private static const long serialVersionUID = -4813502921424204318L;
int httpCode;
public this(int httpCode)
{
this.httpCode = httpCode;... | D |
// PERMUTE_ARGS:
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
/**
* Summary
*
* Description1
*
* Description2
*
* Description3
*
* Macros:
* WIKI = StdStream
* meemie
* See_Also:
* Things to see also.
*
* And more things.
*/
/*
*/
... | D |
/Users/EugeneK/Documents/Developer/freelance/platon_ios_sdk/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Alamofire.o : /Users/EugeneK/Documents/Developer/freelance/platon_ios_sdk/Pods/Alamofire/Source/MultipartFormData.swift /Users/EugeneK/Documents/Developer/freelance/plat... | D |
module std.experimental.allocator.mallocator;
import std.experimental.allocator.common;
/**
The C heap allocator.
*/
struct Mallocator
{
unittest { testAllocator!(() => Mallocator.instance); }
/**
The alignment is a static constant equal to $(D platformAlignment), which
ensures proper alignment fo... | D |
/**
* D header file for POSIX.
*
* Copyright: Copyright Alex Rønne Petersen 2011 - 2012.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Alex Rønne Petersen
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
/* Copyr... | 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;
int dist2(int x1, int y1, int x2, int y2) {
return (x1 - x2) ^^ 2 + (y1 - y2) ^^ 2;
}
int solve(int N, int K) {
int cx = N / 2;
... | 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 |
/*
* QR Code generator library (D)
*
* Copyright (c) Project Nayuki. (MIT License)
* https://www.nayuki.io/page/qr-code-generator-library
*
* 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 S... | D |
// PERMUTE_ARGS:
// Note: compiling this overflows the stack if dmd is build with DEBUG
module breaker;
import std.c.stdio;
/**********************************/
U foo(T, U)(U i)
{
return i + 1;
}
int foo(T)(int i)
{
return i + 2;
}
void test1()
{
auto i = foo!(int)(2L);
// assert(i == 4); // no... | D |
module core.internal.gaming;
import vibe.vibe : WebSocket, Json, logInfo, logError, parseJsonString, msecs;
import std.concurrency : Tid, receiveTimeout, send, thisTid;
import std.string : format;
import std.conv : to;
import core.loop : LoopStatus;
import core.game_srv : GOver, Turn, GRetire, ErrorResp;
imp... | D |
module rsa.modulararithmetic;
import std.bigint : BigInt;
/**
Given, a public exponent, e, and modulus, N, the calculates the private
exponent, d, where:
$(MONO (e * d) % Phi(N) == 1)
This uses the Extended Euclidian Algorithm to find d, which, in mathematical
terms, is the $(I modular multiplica... | D |
module utils.stack;
import core.list;
import io.console;
class Stack(T) : List!(T) {
this() {
super();
}
this(uint size) {
super(size);
}
this(T[] withList) {
_data = withList.dup;
_count = _data.length;
}
Stack!(T) dup() {
return new Stack!(T)(_data[0.._count]);
}
T pop() {
T ret;
ret = r... | D |
/**
parsers traits module.
*/
module bcparser.parsers.traits;
import std.traits :
isCallable,
isType,
Parameters,
ParameterStorageClass,
ParameterStorageClassTuple,
ReturnType
;
import bcparser.context : isContext;
import bcparser.result : ParsingResult;
/**
Primitive parser function traits.
... | D |
module kreikey.combinatorics;
import kreikey.stack;
import std.stdio;
import std.typecons;
import std.algorithm;
import std.range;
import std.functional;
import kreikey.bigint;
import std.traits;
import std.experimental.checkedint;
auto permutations(T)(T[] digits) {
return Permutations!T(digits);
}
struct Permutat... | D |
module d2d.shader;
import derelict.opengl3.gl3;
import d2d.errors;
/**
* Shader
* TODO: Change this up so that a string containging the shader can be passed in
*/
class Shader {
private {
uint _program;
}
public this() {}
public ~this() {
if(_program) { glDeleteProgram(_program); }
}
/**
* compileShade... | D |
module X11.Xlib;
extern(System):
struct Display;
| D |
/Users/Lambert/Desktop/demo/DerivedData/demo1/Build/Intermediates/demo1.build/Debug/KituraNet.build/Objects-normal/x86_64/HTTPParser.o : /Users/Lambert/Desktop/demo/Packages/Kitura-net-1.6.1/Sources/KituraNet/BufferList.swift /Users/Lambert/Desktop/demo/Packages/Kitura-net-1.6.1/Sources/KituraNet/ClientRequest.swift /U... | D |
module mysql.test.integration;
import std.algorithm;
import std.conv;
import std.datetime;
import std.digest.sha;
import std.exception;
import std.range;
import std.socket;
import std.stdio;
import std.string;
import std.traits;
import std.variant;
import mysql.common;
import mysql.connection;
import mysql.result;
i... | D |
// The stdio package gives us access to console printing functions.
//
// This is a built-in package
import core.stdc.stdio;
// We have the math package included to have access to the sqrt function
//
// This is a built-in package
import std.math;
// The stopwatch package is what we use to time the actual running of ... | D |
// Copyright Steve Teale 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)
// Written in the D programming language
module noise;
import mainwin;
import constants;
import acomp;
import... | D |
/Users/martyn/Development/AppCoordinatorsLearning/DerivedData/AppCoordinatorsLearning/Build/Intermediates.noindex/AppCoordinatorsLearning.build/Debug-iphonesimulator/AppCoordinatorsLearning.build/Objects-normal/x86_64/RedScreenViewController.o : /Users/martyn/Development/AppCoordinatorsLearning/AppCoordinatorsLearning/... | D |
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/deps/inflate-641d5658aff1cdae.rmeta: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/inflate-0.4.4/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/inflate-0.4.4/src/checksum.rs /home/syx/.cargo/registry/src... | D |
/Users/chrisconner/Desktop/Project5/DerivedData/Project5/Build/Intermediates/Project5.build/Debug-iphonesimulator/Project5.build/Objects-normal/x86_64/ViewController.o : /Users/chrisconner/Desktop/Project5/Project5/AppDelegate.swift /Users/chrisconner/Desktop/Project5/Project5/ViewController.swift /Applications/Xcode.a... | D |
the formation or presence of a thrombus (a clot of coagulated blood attached at the site of its formation) in a blood vessel
| D |
/**
* Collects functions for compile-time floating-point calculations.
*
* Copyright: Copyright (C) 1999-2021 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 License 1.0)
* Sour... | D |
module widget.controller.sales.pies;
package import widget.controller.sales.pies.pies;
| D |
module red.xml.Node;
import red.xml.Document;
abstract class Node
{
private Document _ownerDocument;
@property public Document ownerDocument() {return _ownerDocument;}
@property protected void ownerDocument(Document value) {_ownerDocument = value;}
private Node _parentNode;
@property public Node parentNode() {... | D |
/Users/zhangzhiyong-pd/Projects/SwiftToyApp/.build/debug/PerfectLib.build/File.swift.o : /Users/zhangzhiyong-pd/Projects/SwiftToyApp/Packages/PerfectLib-2.0.4/Sources/PerfectLib/Bytes.swift /Users/zhangzhiyong-pd/Projects/SwiftToyApp/Packages/PerfectLib-2.0.4/Sources/PerfectLib/Dir.swift /Users/zhangzhiyong-pd/Projects... | D |
# FIXED
ICallBLE/icall_api.obj: C:/ti/simplelink/ble_sdk_2_02_01_18/src/icall/app/icall_api.c
ICallBLE/icall_api.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.0.LTS/include/string.h
ICallBLE/icall_api.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.0.LTS/include/linkage.h
ICallBLE/icall_api.obj: c:/ti/simplelink/ble... | D |
module gelf.transport;
private
import std.socket : UdpSocket, InternetAddress;
import std.random : uniform;
import std.outbuffer;
import std.range : chunks;
import gelf.protocol;
public:
enum MAX_CHUNKS = 128; //"A message MUST NOT consist of more than 128 chunks."
/**
Thi... | D |
module CastleStory.Player;
import arsd.jsvar;
import CastleStory.ArbreCoupe;
import CastleStory.Brixtron;
import CastleStory.CastleServer;
import CastleStory.Config;
import CastleStory.Entity;
import CastleStory.Generic;
import CastleStory.Observer;
import CastleStory.Messages;
import CastleStory.Reference;
import s... | D |
a room in a school where lessons take place
| D |
a member of an American Indian people of Yucatan and Belize and Guatemala who had a culture (which reached its peak between AD 300 and 900) characterized by outstanding architecture and pottery and astronomy
a family of American Indian languages spoken by Maya
| D |
instance STRF_1117_Straefling(Npc_Default)
{
name[0] = NAME_Straefling;
guild = GIL_STRF;
id = 1117;
voice = 13;
flags = 0;
npcType = NPCTYPE_AMBIENT;
B_SetAttributesToChapter(self,1);
fight_tactic = FAI_HUMAN_COWARD;
EquipItem(self,ItMw_2H_Axe_L_01);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_... | D |
template WE() {
ErrNo CG(InodeId KL, uint CH, size_t EH, GH , uint ) {
NH OH;
auto PH = KE.RH(KL);
auto dir = PH.dir;
dir.SH(OH, CH, EH);
}
}
| D |
/Users/radibarq/developer/NasaInArabic/build/NasaInArabic.build/Debug-iphonesimulator/NasaInArabic.build/Objects-normal/x86_64/VideoViewController.o : /Users/radibarq/developer/NasaInArabic/NasaInArabic/AppStoreViewController1.swift /Users/radibarq/developer/NasaInArabic/NasaInArabic/Source.swift /Users/radibarq/develo... | D |
(New Testament) disciple of Jesus
one of the Gospels in the New Testament
| D |
module io.iomanager;
import std.exception;
public import core.uri;
/** IO specific exception
*/
class IOException : Exception
{
this(string s, string file = __FILE__, int line = __LINE__) {
super(s, file, line);
}
}
interface IO
{
void close();
//void readAll(InputRange)(InputRange r);
void readTe... | D |
/**
* Windows API header module
*
* Translated from MinGW-w64 API
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_wtsapi32.d)
*/
module core.sys.windows.wtsapi32;
version (Windows):
version (ANSI) {} else version = Unicode;
prag... | D |
// https://bugzilla.gdcproject.org/show_bug.cgi?id=210
// { dg-do run }
// { dg-skip-if "needs gcc/config.d" { ! d_runtime } }
struct S210
{
ubyte a;
uint b;
}
union U210
{
S210 a;
uint b;
}
S210 test210a()
{
S210 s = S210(1, 2);
return s;
}
S210[2] test210b()
{
S210[2] s = [S210(1, 2), ... | D |
module physics;
import gl3n.math;
import gl3n.linalg;
class Node
{
private vec3 _position;
private vec3 _velocity;
private vec3 _acceleration;
private bool _fixed;
this(vec3 position)
{
_position = position;
_velocity = vec3(0.0);
_acceleration = vec3(0.0);
_fixed = false;
}
@property vec3 positio... | D |
/Users/obuchiyuki/Desktop/SaftyDrive/Build/Intermediates/IBDesignables/Intermediates/SafetyDrive.build/Debug-iphonesimulator/SafetyDrive.build/Objects-normal/x86_64/PagingDataController.o : /Users/obuchiyuki/Desktop/SaftyDrive/SaftyDrive/MK/MKSnackbar.swift /Users/obuchiyuki/Desktop/SaftyDrive/SaftyDrive/RMMenu.swift /... | D |
module conc.defaultchannelcapacity;
import conc.synchronizedint;
class ДефолтнаяЁмкостьКанала
{
public static final цел НАЧАЛЬНАЯ_ДЕФОЛТНАЯ_ЁМКОСТЬ = 1024;
private static СинхронЦел дефолтнаяЁмкость_;
static this() {
дефолтнаяЁмкость_ = new СинхронЦел(НАЧАЛЬНАЯ_ДЕФОЛТНАЯ_ЁМКОСТЬ);
}
public static проц ... | D |
const int Value_Sc_Water = 1;
const int Value_Sc_IceLance = 100;
const int Value_Sc_Whirlwind = 200;
const int Value_Sc_Geyser = 100;
const int Value_Sc_Thunderstorm = 200;
const int Value_Sc_Waterfist = 100;
INSTANCE ItSc_Geyser (C_Item)
{
name = NAME_Spruchrolle;
mainflag = ITEM_KAT_RUNE;
flags = ITE... | D |
module UnrealScript.Engine.AITree_DMC_Base;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Core.UObject;
import UnrealScript.Engine.Actor;
import UnrealScript.Engine.AICommandNodeBase;
extern(C++) interface AITree_DMC_Base : UObject
{
public extern(D):
private static __gshared Scri... | D |
/Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/MVC.build/Debug-iphonesimulator/MVC.build/Objects-normal/x86_64/ProductModel.o : /Users/hanykaram/Desktop/MVC/MVC/MVC/Controller/HomeVC.swift /Users/hanykaram/Desktop/MVC/MVC/MVC/Controller/LoginVC.swift /U... | D |
// Copyright © 2011, Jakob Bornecrantz. All rights reserved.
// See copyright notice in src/charge/charge.d (GPLv2 only).
/**
* Source file for RenderQueue and helpers.
*/
module charge.gfx.renderqueue;
import charge.gfx.shader;
import charge.gfx.material;
interface Renderable
{
Material getMaterial();
void dra... | D |
/Users/mac/Documents/GitHub/PerfectServer/.build/x86_64-apple-macosx/debug/PerfectHTTPServer.build/HTTP2/HTTP2Frame.swift.o : /Users/mac/Documents/GitHub/PerfectServer/.build/checkouts/Perfect-HTTPServer/Sources/PerfectHTTPServer/HTTP2/HTTP2.swift /Users/mac/Documents/GitHub/PerfectServer/.build/checkouts/Perfect-HTTPS... | D |
/*
Copyright (c) 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,
exe... | D |
module dabble.meta;
import
std.stdio,
std.conv;
import
dabble.repl,
dabble.grammars;
/**
* See if the given buffer contains meta commands, which are interpreted directly
* and do not trigger recompilation.
*/
bool handleMetaCommand(ref string inBuffer, ref string codeBuffer)
{
import std.conv : text;
... | D |
a thin wedge of material (wood or metal or stone) for driving into crevices
| D |
module android.java.android.icu.text.DateFormat_Field;
public import android.java.android.icu.text.DateFormat_Field_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!DateFormat_Field;
import import0 = android.java.android.icu.text.DateFormat_Field;
import import1 = android.java.java.lang.Class;
| D |
/*
* Hunt - A refined core library for D programming language.
*
* Copyright (C) 2018-2019 HuntLabs
*
* Website: https://www.huntlabs.net/
*
* Licensed under the Apache-2.0 License.
*
*/
deprecated("It's buggy. Use hunt.serialization.JsonSerializer instead.")
module hunt.util.Serialize;
import std.traits;
... | D |
/**
Mirror _floatobject.h
*/
module deimos.python.floatobject;
import deimos.python.pyport;
import deimos.python.object;
import deimos.python.unicodeobject;
import deimos.python.pythonrun;
import core.stdc.stdio;
extern(C):
// Python-header-file: Include/floatobject.h:
/// subclass of PyObject
struct PyFloatObje... | D |
void main() { runSolver(); }
void problem() {
auto N = scan!long;
auto M = scan!long;
auto S = scan!long(N);
auto T = scan!long(M);
auto solve() {
if (T.dup.sort.uniq.any!(t => !S.canFind(t))) return -1;
auto g = S.group.array;
long ans;
long cur = S[0];
bool moved;
g.deb;
fore... | D |
/**
* Instruction tables for inline assembler.
*
* Copyright: Copyright (C) 1985-1998 by Symantec
* Copyright (C) 2000-2021 by The D Language Foundation, All Rights Reserved
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dla... | D |
/*****************************************
* NSC läuft immer zwischen FP-WALK_A und *
* FP-WALK_B hin und her *
*****************************************/
FUNC VOID ZS_Walk ()
{
//PrintDebugNpc(PD_TA_FRAME,"ZS_Walk");
B_SetPerception (self);
AI_SetWalkmode (self,NPC_WALK);... | D |
// Written in the D programming language.
/** This module contains the $(LREF Complex) type, which is used to represent
_complex numbers, along with related mathematical operations and functions.
$(LREF Complex) will eventually $(LINK2 ../deprecate.html, replace)
the built-in types $(D cfloat), $(D cdoubl... | D |
/**
MongoDB client connection settings.
Copyright: © 2012-2016 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 vibe.db.mongo.settings;
import vibe.core.log;
import vibe.data.bson;
import vibe.db.mongo.flags : Quer... | D |
/*
* DSFML - The Simple and Fast Multimedia Library for D
*
* Copyright (c) 2013 - 2020 Jeremy DeHaan (dehaan.jeremiah@gmail.com)
*
* 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.
... | D |
An simple Serial converter RS232 to TTL Signal for burn ATMEGA/PIC/STM Microcontrollers.
| D |
# FIXED
Drivers/RF/RFCC26XX_singleMode.obj: C:/ti/simplelink_cc2640r2_sdk_4_40_00_10/source/ti/drivers/rf/RFCC26XX_singleMode.c
Drivers/RF/RFCC26XX_singleMode.obj: C:/ti/simplelink_cc2640r2_sdk_4_40_00_10/source/ti/drivers/dpl/ClockP.h
Drivers/RF/RFCC26XX_singleMode.obj: C:/ti/ccs1030/ccs/tools/compiler/ti-cgt-arm_20.... | D |
instance SVM_26 (C_SVM)
{
// ------ B_Say_GuildGreetings ---------------------------------------------------------------------------------------
Weather = "SVM_26_Weather" ;//So ein Mistwetter!
// ------ B_Say_AttackReason -----------------------------------------------------------------------------------... | D |
// PERMUTE_ARGS:
module traits;
import std.stdio;
alias int myint;
struct S { void bar() { } int x = 4; static int z = 5; }
class C { void bar() { } final void foo() { } static void abc() { } }
abstract class AC { }
class AC2 { abstract void foo(); }
class AC3 : AC2 { }
final class FC { void foo() { } }
enum E { EMEM... | D |
import std.stdio;
import std.array;
import std.datetime;
import std.range;
immutable source = import("getting-started-with-microformats2.htm");
immutable libs = ["Arsd", "Gumbo-d"];
void main()
{
auto results = benchmark!(runArsd, runGumbo)(10000);
foreach( lib, time; libs[].zip(results[]) ) {
writ... | D |
filled with steam or emitting moisture in the form of vapor or mist
hot or warm and humid
feeling great sexual desire
| D |
instance DIA_DIMITRI_EXIT(C_Info)
{
npc = bau_40005_dimitri;
nr = 999;
condition = dia_dimitri_exit_condition;
information = dia_dimitri_exit_info;
important = FALSE;
permanent = TRUE;
description = Dialog_Ende;
};
func int dia_dimitri_exit_condition()
{
return TRUE;
};
func void dia_dimitri_exit_info()
{
A... | D |
module artemisd.managers.tagmanager;
import artemisd.entity;
import artemisd.manager;
import artemisd.utils.bag;
import artemisd.utils.type;
import artemisd.utils.ext;
public class TagManager : Manager
{
mixin TypeDecl;
private Entity[string] entitiesByTag;
private string[Entity] tagsByEntity;
... | D |
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Vapor.build/File/File+Response.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/AleixDiaz/Documents/VaporProject/HerokuCha... | D |
// **************************************************
// EXIT
// **************************************************
instance Info_Kharim_Exit(C_INFO)
{
npc = Sld_729_Kharim;
nr = 999;
condition = Info_Kharim_Exit_Condition;
information = Info_Kharim_Exit_Info;
permanent = 1;
description = DIALOG_ENDE;
}; ... | D |
/atlas/data18a/helingzh/workplace/summer2016/Run2/FourMuonAna/RootCoreBin/obj/x86_64-slc6-gcc49-opt/JetSubStructureUtils/obj/KtDeltaR.o /atlas/data18a/helingzh/workplace/summer2016/Run2/FourMuonAna/RootCoreBin/obj/x86_64-slc6-gcc49-opt/JetSubStructureUtils/obj/KtDeltaR.d : /cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/... | D |
ZGETRS (F07ASF) Example Program Data
4 2 :Values of N and NRHS
(-1.34, 2.55) ( 0.28, 3.17) (-6.39,-2.20) ( 0.72,-0.92)
(-0.17,-1.41) ( 3.31,-0.15) (-0.15, 1.34) ( 1.29, 1.38)
(-3.29,-2.39) (-1.91, 4.42) (-0.14,-1.35) ( 1.72, 1.35)
( 2.41, 0.39) (-0.56, 1.47) (-0... | D |
/**
Filters.
Based on code from STK library
https://github.com/thestk/stk
https://ccrma.stanford.edu/software/stk/
*/
module soundtab.audio.filters;
import std.math : log2, exp2, sin, cos, pow, PI;
immutable float TWO_PI = PI * 2;
//float linearToDb(float f) {
//
//}
/// decibels to linea... | 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_12_banking-534... | D |
a fundamentalist Islamic militia
| D |
/*
Copyright (c) 1996 Blake McBride
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
notice, this list of conditions and th... | D |
/++
[SumType] is a generic discriminated union implementation that uses
design-by-introspection to generate safe and efficient code. Its features
include:
$(LIST
* [match|Pattern matching.]
* Support for self-referential types.
* Full attribute correctness (`pure`, `@safe`, `@nogc`, and `nothrow` are
... | D |
/**
JSON serialization and value handling.
This module provides the Json struct for reading, writing and manipulating JSON values in a seamless,
JavaScript like way. De(serialization) of arbitrary D types is also supported.
Examples:
---
void manipulateJson(Json j)
{
// object members can be accessed using ... | D |
// Copyright (с) 2013 Gushcha Anton <ncrashed@gmail.com>
/*
* This file is part of Borey Engine.
*
* 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
* th... | D |
module alglib.integration;
import alglib.ap;
import alglib.internal;
import alglib.linalg;
import alglib.specialfunctions;
struct autogkreport
{
ae_int_t terminationtype;
ae_int_t nfev;
ae_int_t nintervals;
}
struct autogkinternalstate
{
double a;
double b;
double eps;
double xwidth;
d... | D |
/*
* Licensed under the GNU Lesser General Public License Version 3
*
* This library 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 3 of the license, or
* (at your option) any late... | D |
module desutil;
public import desutil.helpers;
public import desutil.langpack;
public import desutil.logger;
public import desutil.signal;
public import desutil.timer;
public import desutil.desml;
public import desutil.socket;
| D |
// REQUIRED_ARGS: -d
// PERMUTE_ARGS: -dw
// Test cases using deprecated features
module deprecate1;
import core.stdc.stdio : printf;
import std.traits;
import std.math : isNaN;
// from test23
static int i2 = 1;
/**************************************
typedef
**************************************/
te... | D |
module geometry.GLArray;
import derelict.opengl3.gl;
import geometry;
abstract class GLArray
{
private uint vao;
public this() {
/* Create vertex array object */
glGenVertexArrays(1, &this.vao);
}
public uint getId() {
return this.vao;
}
public void bind() {
... | D |
/**
* D header file for POSIX.
*
* Copyright: Public Domain
* License: Public Domain
* Authors: Sean Kelly
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
module core.sys.posix.signal;
private import core.sys.posix.config;
public import core.stdc.signal;
public impo... | D |
/*
* Oracle Linux DTrace.
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
/*
* ASSERTION:
* Attempt a bogus struct declaration that contains duplicated member names.
*
* SECTI... | D |
instance Mod_1706_SMK_Blackknight_PAT (Npc_Default)
{
//-------- primary data --------
name = Name_SchwarzerKrieger;
npctype = npctype_pat_schwarzerkrieger;
guild = GIL_kdf;
level = 5;
voice = 0;
id = 1706;
//-------- abilities --------
B_SetAttributesToChapter (se... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 1206 10.3999996 18 0.238095238 extrusives, intrusives
346 61 9 41.2000008 35 100 -31.3999996 138.600006 1170 13 15 0.230769231 sediments
333 45 9 16.5 35 100 -30.3999996 139.399994 1161 17 1... | D |
module a;
debug
{
import b;
}
| D |
under terms not final or fully worked out or agreed upon
unsettled in mind or opinion
| D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1985-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 |
/*******************************************************************************
Helper for sequential (half duplex) client-node message exchange.
Copyright: Copyright (c) 2016-2017 sociomantic labs GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE_BOOST.txt for d... | D |
module UnrealScript.TribesGame.TrSeqAct_TrainingMessage;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.SequenceAction;
import UnrealScript.TribesGame.TrHelpTextManager_Training;
extern(C++) interface TrSeqAct_TrainingMessage : SequenceAction
{
public extern(D):
private stati... | D |
// EVT_ADDON_ADANOSDOOR_ENTRANCE_VOICESCRIPT
// (die RavenGehtInDenAdanosTempelTür)
func void EVT_ADDON_ADANOSDOOR_ENTRANCE_VOICESCRIPT ()
{
B_Say (self, self, "$ADDON_OPENADANOSTEMPLE");
};
| D |
/**
* Builds struct member functions if needed and not defined by the user.
* Includes `opEquals`, `opAssign`, post blit, copy constructor and destructor.
*
* Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
*... | D |
/Users/Amna/Desktop/hwrust copy/code/target/debug/build/rayon-core-92612b4df4024451/build_script_build-92612b4df4024451: /Users/Amna/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.0/build.rs
/Users/Amna/Desktop/hwrust copy/code/target/debug/build/rayon-core-92612b4df4024451/build_script_build-92612b4df... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.