code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
module godot.packetpeer;
import std.meta : AliasSeq, staticIndexOf;
import std.traits : Unqual;
import godot.d.meta;
import godot.core;
import godot.c;
import godot.d.bind;
import godot.object;
import godot.reference;
@GodotBaseClass struct PacketPeer
{
static immutable string _GODOT_internal_name = "PacketPeer";
publ... | D |
instance DIA_VIPER_EXIT(C_Info)
{
npc = vlk_986_viper;
nr = 999;
condition = dia_viper_exit_condition;
information = dia_viper_exit_info;
permanent = TRUE;
description = Dialog_Ende;
};
func int dia_viper_exit_condition()
{
return TRUE;
};
func void dia_viper_exit_info()
{
AI_StopProcessInfos(self);
};
in... | D |
/*
* Forest File Finder by erik wikforss
*/
module forest.nodes.iconnode;
import forest.nodes.node;
import brew.box;
import brew.vec;
import brew.dim;
import brew.insets;
import gio.FileIcon;
import gdk.Pixbuf;
import gdk.Cairo;
import cairo.Context;
import std.stdio;
class IconNode : Node
{
enum... | D |
/*
* Collie - An asynchronous event-driven network framework using Dlang development
*
* Copyright (C) 2015-2016 Shanghai Putao Technology Co., Ltd
*
* Developer: putao's Dlang team
*
* Licensed under the Apache-2.0 License.
*
*/
module collie.codec.http.exception;
import std.exception;
class HTTPMessageT... | 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_All_agm-532369... | D |
import std.stdio, std.algorithm, std.string, std.array, std.file;
void main()
{
string line = readText("s1.txt");
int ct;
int cnum;
int[string] lib;
stderr.writeln(line);
int i=0;
while(i < line.length-6){
if(line.lastIndexOf(line[i..i+6]) != i){
//... | D |
/****************************************************************************
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy ... | 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.
*
*/
module hunt.io.TcpStream;
import hunt.io.channel.Common;
import hunt.io.TcpStreamOptions;
import hunt.collection.ByteBuff... | D |
/*
* expressionunit.d
*
* This module parses expressions.
*
*/
module parsing.d.declaratortypeunit;
import parsing.parseunit;
import parsing.token;
import parsing.d.tokens;
import parsing.d.nodes;
import io.console;
import djehuty;
class DeclaratorTypeUnit : ParseUnit {
override bool tokenFound(Token curren... | D |
/Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Observable+Creation.o : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/Rx... | D |
module mach.range.rotate;
private:
import mach.meta : Any, All, Map, varmap;
import mach.traits : isFiniteIterable, isFiniteRange;
import mach.traits : isMutableFrontRange, ElementType;
import mach.range.asrange : asrange, validAsMutableFrontRange;
public:
/// Determine whether rotation is a meaningful operation ... | D |
/Users/cansoykarafakili/Desktop/Hello/build/Intermediates/Hello.build/Debug/HTTP.build/Objects-normal/x86_64/Body.o : /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/engine.git-3311994267206676365/Sources/HTTP/Async/Response+Async.swift /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/engine.git-3311994267... | D |
/home/gaurava/work/learning/rust/rust_programming/Greeter/target/debug/deps/traitobject-b988aee4fdcb87b5.rmeta: /home/gaurava/.cargo/registry/src/github.com-1ecc6299db9ec823/traitobject-0.0.1/src/lib.rs
/home/gaurava/work/learning/rust/rust_programming/Greeter/target/debug/deps/libtraitobject-b988aee4fdcb87b5.rlib: /h... | D |
/**
* TypeInfo support code.
*
* Copyright: Copyright Digital Mars 2004 - 2009.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright
*/
/* Copyright Digital Mars 2004 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanyin... | D |
#
# Parameters to be passed to distccd
#
# You must explicitly add IPs (or subnets) that are allowed to connect,
# using the --allow switch. See the distccd manpage for more info.
#
DISTCC_ARGS="--allow 127.0.0.1"
#DISTCC_ARGS="--allow 192.168.0.0/24 --log-level error --log-file /tmp/distccd.log"
| D |
/Users/lee_bennett/Desktop/MadeSimple/Playground/Extensions/Build/Intermediates/Extensions.build/Debug-iphonesimulator/Extensions.build/Objects-normal/x86_64/ViewController.o : /Users/lee_bennett/Desktop/MadeSimple/Playground/Extensions/Extensions/SceneDelegate.swift /Users/lee_bennett/Desktop/MadeSimple/Playground/Ext... | D |
.\" $Header: XLine.d,v 1.1 87/09/09 14:34:15 mento Exp $
The
.PN XDrawLine
funtion draws a single line between two points in the specified drawable.
.LP
The
.PN XDrawLines
function draws multiple lines in the specified drawable.
.LP
The
.PN XDrawSegments
function draws multiple, but not necessarily connected, lines in ... | D |
import std.conv;
import typeless;
auto mypointer(T)(T a){
return "mypointer!"~a.size.to!string~" "~a.name;}
auto myarray(T)(T a){
return "voidarray!("~a.size.to!string~",n) "~a.name;}
auto plusplus(T)(T a){
return "++"~a.name;}
auto minusminus(T)(T a){
return "--"~a.name;}
static string header1(T)(T a){
return "r... | D |
module SimpleWindow;
import tango.text.convert.Integer;
import tango.core.Thread; // For Thread.yield
import xf.hybrid.Hybrid; //For widgets and general API
import xf.hybrid.backend.GL; // For OpenGL Renderer
void main() {
//load config file
scope cfg = loadHybridConfig(`./SimpleWindow.cfg`);
scope renderer = new ... | D |
module nes.filter;
import std.math;
interface Filter {
float step(float x);
}
// First order filters are defined by the following parameters.
// y[n] = B0*x[n] + B1*x[n-1] - A1*y[n-1]
class FirstOrderFilter : Filter {
this(float b0, float b1, float a1, float prevX, float prevY) {
this.b0 = b0;
... | D |
INSTANCE Mod_1617_PIR_Brandon_SS (Npc_Default)
{
// ------ NSC ------
name = "Brandon";
guild = GIL_out;
id = 1617;
voice = 4;
flags = 2;
npctype = NPCTYPE_MAIN;
// ------ Aivars ------
aivar[AIV_Partymember] = TRUE;
// ------ Attribute ------
B_SetAttributesToChapter (self... | D |
module org.serviio.library.local.service.VideoService;
import java.lang.Long;
import java.lang.Integer;
import java.lang.String;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.serviio.db.dao.DAOFactory;
import org.serviio.library.entities.AccessGroup;
import or... | D |
#!/usr/bin/env dub
/+
dub.sdl:
name "snippet76"
dependency "dwt" path="../../../../../../"
libs \
"atk-1.0" \
"cairo" \
"dl" \
"fontconfig" \
"gdk-x11-2.0" \
"gdk_pixbuf-2.0" \
"glib-2.0" \
"gmodule-2.0" \
"gnomeui-2" \
"gnomevfs-2" \
"gobjec... | D |
a message expressing an opinion based on incomplete evidence
an estimate based on little or no information
expect, believe, or suppose
put forward, of a guess, in spite of possible refutation
judge tentatively or form an estimate of (quantities or time
guess correctly
| D |
module app;
import std.stdio;
import std.datetime;
import per;
import emp;
void main()
{
writeln("OOP in D");
Employee a = new Employee(Date.fromISOString("19700508"));
// Composition - Demographics object in Employee
writeln("Age: ", a.Demo.GetAge());
// Polymorphism as base class
poly... | D |
/*
* Copyright (c) 2004-2009 Derelict Developers
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice... | D |
instance PIR_1357_Addon_Garett(Npc_Default)
{
name[0] = "Гаретт";
guild = GIL_PIR;
id = 1357;
voice = 9;
flags = FALSE;
npcType = npctype_main;
B_SetAttributesToChapter(self,2);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_Piratensaebel);
CreateInvItems(self,ItBe_Addon_Prot_EdgPoi,1);
B_SetNpcVisual... | D |
module Structures.MapID;
public class MapID
{
private int bank, map;
public this(int bank, int map)
{
this.bank = bank;
this.map = map;
}
public int getBank()
{
return bank;
}
public int getMap()
{
return map;
}
}
| D |
import forge;
import compute_copy;
import core.stdc.math;
import core.stdc.stdio;
const DIMX = 1000;
const DIMY = 800;
const float FRANGE_START = 0f;
const float FRANGE_END = 2f * 3.1415926f;
extern (C) float dummy (float);
void map_range_to_vec_vbo(float range_start, float range_end, float dx,
... | D |
/**
Array utilities.
Copyright: Denis Shelomovskij 2013
License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Denis Shelomovskij
Source: $(DRUNTIMESRC rt/util/_array.d)
*/
module core.internal.util.array;
import core.internal.string;
import core.stdc.stdint;
@safe /* pure dmd @@@BUG11461@@@ */ no... | D |
// PERMUTE_ARGS:
static if (__traits(compiles, __vector(float[4])))
{
alias float4 = __vector(float[4]);
void foo(float4* ptr, float4 val)
{
assert((cast(ulong) &val & 0xf) == 0);
}
void main()
{
float4 v;
foo(&v, v);
}
}
else
void main(){}
| D |
/*
* Copyright (C) 2017 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 |
/*******************************************************************************
Information interface for channels-based node
Note: at the moment, the assumption is that a node with channels is also a
storage engine of some kind. This is not necessarily the case, and could be
modified if need be at s... | D |
module leetcode.reverselinkedlist;
/*
https://leetcode.com/problems/reverse-linked-list/
206. Reverse Linked List
Given the head of a singly linked list, reverse the list, and return the reversed list.
Example 1:
Input: head = [1,2,3,4,5]
Output: [5,4,3,2,1]
Example 2:
Input: head = [1,2]
Output: [2,1]
Examp... | D |
prototype Default_AmbientDementor(C_Npc)
{
name[0] = NAME_Dementor;
guild = GIL_DMT;
voice = 19;
flags = 0;
npcType = NPCTYPE_AMBIENT;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_NORMAL;
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_N_MadPsi,BodyTex_N,ITAR_Dementor);
... | D |
// PERMUTE_ARGS:
// REQUIRED_ARGS: -o-
// EXTRA_FILES: imports/ice13403a.d
import imports.ice13403a;
void main() {}
| D |
/*
* Copyright 2015-2018 HuntLabs.cn
*
* 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 la... | D |
/Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/URLEncodedForm.build/Utilities/URLEncodedFormError.swift.o : /Users/Khanh/vapor/TILApp/.build/checkouts/url-encoded-form.git--8133570518800567758/Sources/URLEncodedForm/Data/URLEncodedFormData.swift /Users/Khanh/vapor/TILApp/.build/checkouts/url-encoded-fo... | D |
module android.java.android.icu.math.MathContext_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
final class MathContext : IJavaObject {
static im... | D |
/Users/ahmed/Library/Developer/Xcode/DerivedData/StoreSearch-clgfazlaxpnrqcedwamkjzyxocfe/Build/Intermediates.noindex/StoreSearch.build/Debug-iphonesimulator/StoreSearch.build/Objects-normal/x86_64/SearchViewController.o : /Users/ahmed/Desktop/MyProjects/StoreSearch/StoreSearch/UIImageView+DownloadImage.swift /Users/ah... | 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="modelica.primitivetype.notatio... | D |
/home/anon/Downloads/git/RustyToDo/RustyToDo/target/debug/deps/console-9a438d9a945a4e53.rmeta: /home/anon/.cargo/git/checkouts/console-3b8322584ad9113f/663ccc1/src/lib.rs /home/anon/.cargo/git/checkouts/console-3b8322584ad9113f/663ccc1/src/common_term.rs /home/anon/.cargo/git/checkouts/console-3b8322584ad9113f/663ccc1/... | D |
/Users/kidboy/Programming/github.com/learn_programming/rust/http-request/target/debug/build/proc-macro2-a39d38b068b33cf2/build_script_build-a39d38b068b33cf2: /Users/kidboy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.19/build.rs
/Users/kidboy/Programming/github.com/learn_programming/rust/http-reques... | D |
/**
* This is a set of OpenGL bindings.
*
* Generated by ./ogl_gen ....
* Do not modify. Regenerate if changes are required.
*
* Macros:
* D_CODE = <pre><code class="D">$0</code></pre>
*/
module opengl.gl4;
import std.traits : Unqual;
alias int64_t = long;
alias uint64_t = ulong;
alias int32_t = int;
///
a... | 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 godot.audioeffectdelay;
import std.meta : AliasSeq, staticIndexOf;
import std.traits : Unqual;
import godot.d.meta;
import godot.core;
import godot.c;
import godot.object;
import godot.classdb;
import godot.audioeffect;
@GodotBaseClass struct AudioEffectDelay
{
static immutable string _GODOT_internal_name = "Au... | D |
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/SQL.build/Objects-normal/x86_64/SQLIndexModifier.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/sql.git-6484346812122690078/Sources/SQL/SQLBind.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/sql.git-648... | D |
// FIXME: add classList. it is a live list and removes whitespace and duplicates when you use it.
// FIXME: xml namespace support???
// FIXME: https://developer.mozilla.org/en-US/docs/Web/API/Element/insertAdjacentHTML
// FIXME: parentElement is parentNode that skips DocumentFragment etc but will be hard to work in wit... | D |
/Volumes/iMacProjetos/Curso/Rocketseat/GoNative/module4/ios/build/module4/Build/Intermediates.noindex/RNTrackPlayer.build/Debug-iphonesimulator/RNTrackPlayer.build/Objects-normal/x86_64/AVPlayerWrapper.o : /Volumes/iMacProjetos/Curso/Rocketseat/GoNative/module4/node_modules/react-native-track-player/ios/RNTrackPlayer/M... | D |
uint BIT = 1;
enum uint BIT = 1;
enum ABCD BIT = 1; | D |
module UnrealScript.Engine.MaterialExpressionFluidNormal;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.MaterialExpression;
extern(C++) interface MaterialExpressionFluidNormal : MaterialExpression
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@prope... | D |
/*
* Copyright (C) 2010 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 |
/*
* Copyright 2015-2018 HuntLabs.cn
*
* 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 la... | D |
/Users/KAB/Desktop/Development/ICE/Build/Intermediates/ICE.build/Debug-iphonesimulator/ICE.build/Objects-normal/x86_64/ICEFileCell.o : /Users/KAB/Desktop/Development/ICE/ICE/ICEFilesCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersC... | D |
import autowrap;
enum str = wrapDlang!(
LibraryName("std_signals"),
Modules(
Yes.alwaysExport,
"std.signals",
)
);
// pragma(msg, str);
mixin(str);
| 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 Settings;
import dlangui.core.settings;
import std.socket;
import std.conv;
import std.string;
import std.stdio;
import std.file;
import dlangui;
class FrameSettings : AppFrame
{
const Action ACTION_VALIDATE = new Action(ActionCode.Valide,
"MENU_ACTION_VALIDATE"c, "Validate"c);
EditLine tb... | D |
regarded with great favor, approval, or affection especially by the general public
carried on by or for the people (or citizens) at large
representing or appealing to or adapted for the benefit of the people at large
(of music or art) new and of general appeal (especially among young people)
| D |
/Users/mac/Documents/Bhupendra/RedialAnimateMenuBar/build/Pods.build/Debug-iphonesimulator/Macaw.build/Objects-normal/x86_64/Point.o : /Users/mac/Documents/Bhupendra/RedialAnimateMenuBar/Pods/Macaw/Source/export/MacawView+PDF.swift /Users/mac/Documents/Bhupendra/RedialAnimateMenuBar/Pods/Macaw/Source/MCAMediaTimingFill... | D |
module resources.json5.J5Parser;
import resources.json5.all;
import std.string : toLower;
final class J5Parser {
public:
this(J5Token[] tokens, string src) {
this.tokens = new Tokens(tokens, src);
}
J5Value parse(bool includeComments) {
// // If there are no tokens return empty J5Object
... | D |
module UnrealScript.UDKBase.UDKSkelControl_SpinControl;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.SkelControlSingleBone;
extern(C++) interface UDKSkelControl_SpinControl : SkelControlSingleBone
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@prop... | D |
// D import file generated from 'src/mongod/net.d'
module mongod.net;
private import std.stdio;
private import std.c.string;
private import std.c.stdlib;
private import std.socket;
import mongod.mongo_h;
import mongod.bson_h;
int send(Socket sock, void* buf, size_t len, int flags)
{
void[] bb = buf[0..len];
int ll ... | 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.
module std.windows.iunknown;
version (Windows):
// Replaced by:
public import std.c.windows.com;
| D |
// Compiler implementation of the D programming language
// Copyright (c) 1999-2016 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.hdrgen;
import core.std... | D |
FUNC VOID WaffenCheck()
{
var C_Item Waffentest;
Waffentest = Npc_GetEquippedMeleeWeapon(hero);
if (!Hlp_IsValidItem(Waffentest))
{
return;
};
if (Hlp_IsItem(Waffentest, ItMw_AxtDesUntergangs))
&& (Npc_IsInFightMode(hero, FMODE_NONE))
&& (AxtUpgrade == 0)
{
AI_UnequipWeapons (hero);
if (AxtDamage == ... | D |
module log;
import std.stdio;
alias trace = log!(Level.trace);
alias info = log!(Level.info);
alias warn = log!(Level.warn);
alias error = log!(Level.error);
alias fatal = log!(Level.fatal);
template log(Level level)
{
void log(string fmt, string file = __FILE__, size_t line = __LINE__, A...)(lazy A args)
{
... | D |
/*******************************************************************************
User-facing API for the client's Put request.
Copyright:
Copyright (c) 2017 dunnhumby Germany GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
*************... | D |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010-2011 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICE... | D |
module foo.bar;
import core.vararg;
import std.stdio;
pragma (lib, "test");
pragma (msg, "Hello World");
static assert(true, "message");
alias mydbl = double;
int testmain()
in
{
assert(1 + (2 + 3) == -(1 - 2 * 3));
}
out(result)
{
assert(result == 0);
}
body
{
float f = (float).infinity;
int i = cast(int)f;
write... | D |
instance VLK_520_BUDDLER(NPC_DEFAULT)
{
name[0] = NAME_BUDDLER;
npctype = NPCTYPE_MAIN;
guild = GIL_VLK;
level = 2;
voice = 1;
id = 520;
attribute[ATR_STRENGTH] = 13;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 64;
attribute[ATR_HITPOI... | D |
/**
Implements a compile-time Diet template parser.
Diet templates are an more or less compatible incarnation of Jade templates but with
embedded D source instead of JavaScript. The Diet syntax reference is found at
$(LINK http://vibed.org/templates/diet).
Copyright: © 2012-2015 RejectedSoftware e.K.
License: S... | D |
/Users/markmoussa/HackathonProjects/Rhabit/DerivedData/Rhabit/Build/Intermediates/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChartYAxisRendererRadarChart.o : /Users/markmoussa/HackathonProjects/Rhabit/Pods/Charts/Charts/Classes/Data/Implementations/Standard/BarChartData.swift /Users/markmoussa/... | D |
module mesh.Geometry;
public import geom.LoopSchemeMask, geom.MathDefs, linalg.Matrix, linalg.Vector, geom.Plane3d, linalg.VectorTypes, linalg.Quadric; | D |
/Volumes/Element-Mac/_development/_ios/_training/Bandsintown/Build/Intermediates/Pods.build/Debug-iphonesimulator/Marshal.build/Objects-normal/x86_64/MarshaledObject.o : /Volumes/Element-Mac/_development/_ios/_training/Bandsintown/Pods/Marshal/Sources/JSON.swift /Volumes/Element-Mac/_development/_ios/_training/Bandsint... | D |
// URL: https://yukicoder.me/problems/no/9007
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;
auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r,v);}
void r... | D |
capacity or power to produce a desired effect
| D |
instance BDT_1090_ADDON_RAVEN(NPC_DEFAULT)
{
name[0] = "Raven";
guild = GIL_BDT;
id = 1090;
voice = 10;
flags = 0;
npctype = NPCTYPE_MAIN;
level = 50;
attribute[ATR_STRENGTH] = 50;
attribute[ATR_DEXTERITY] = 50;
attribute[ATR_MANA_MAX] = 100;
attribute[ATR_MANA] = 100;
attribute[ATR_HITPOINTS_MAX] = 500;
... | D |
/**
A simple HTTP/1.1 client implementation.
Copyright: © 2012-2014 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig, Jan Krüger
*/
module vibe.http.client;
public import vibe.core.net;
public import vibe.http.common;
public... | D |
a woman pimp
| D |
used of hair
having a very rough nap or covered with hanging shags
| D |
a firearm that is held and fired with one hand
| D |
import std.bigint;
import std.math;
import std.stdio;
void fun(ref BigInt a, ref BigInt b, int c) {
auto t = a;
a = b;
b = b * c + t;
}
void solvePell(int n, ref BigInt a, ref BigInt b) {
int x = cast(int) sqrt(cast(real) n);
int y = x;
int z = 1;
int r = x << 1;
BigInt e1 = 1;
Big... | D |
// Written in the D programming language.
/**
$(SCRIPT inhibitQuickIndex = 1;)
$(DIVC quickindex,
$(BOOKTABLE,
$(TR $(TH Category) $(TH Symbols))
$(TR $(TD File handles) $(TD
$(MYREF __popen)
$(MYREF File)
$(MYREF isFileHandle)
$(MYREF openNetwork)
$(MYREF stderr)
$(MYREF stdin)
$(MYREF std... | D |
module model.battler;
import std.range;
import std.algorithm;
import std.math : abs;
import allegro;
import geometry.all;
import graphics.all;
import util.math;
import util.sound;
import gui.all;
import model.character;
import model.item;
import model.attackable;
import model.talent;
import tilemap.object;
private en... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail346.d(16): Error: undefined identifier `P`
fail_compilation/fail346.d(16): Error: variable `fail346.S.T!0.T` cannot use template to add field to aggregate `S`
fail_compilation/fail346.d(16): Error: a struct is not a valid initializer for a `const(_error_)`
fail_compilation/fail3... | D |
instance VLK_3001_dancer (Npc_Default)
{
// ------ NSC ------
name = "Tancerka";
guild = GIL_VLK;
id = 3001;
voice = 16;
flags = 0;
npctype = NPCTYPE_MAIN;
//-----------AIVARS----------------
aivar[AIV_ToughGuy] = TRUE;
// ------ Attribute ------
B_SetAttributesToChapte... | D |
module org.serviio.dlna.SamplingMode;
public class SamplingMode
{
enum SamplingModeEnum
{
UNKNOWN = (-2), DEFAULT = (-1), YUV444 = (17), YUV422 = (33), YUV420 = (34), YUV411 = (65)
}
SamplingModeEnum samplingMode;
alias samplingMode this;
//private int mode;
//
//private this(int mode) { this.mode = mod... | D |
// REQUIRED_ARGS: -w
/*
TEST_OUTPUT:
---
fail_compilation/fail8724.d(14): Error: `object.Exception` is thrown but not caught
fail_compilation/fail8724.d(12): Error: nothrow constructor `fail8724.Foo.this` may throw
---
*/
struct Foo
{
this(int) nothrow
{
throw new Exception("something");
}
}
| D |
dependencies: /Users/christianmeyer/Cpp/ch12/P12_6-10/P12_6-10/main.cpp \
/Users/christianmeyer/Cpp/ch12/P12_6-10/P12_6-10/List.hpp \
/Users/christianmeyer/Cpp/ch12/P12_6-10/P12_6-10/Node.hpp \
/Users/christianmeyer/Cpp/ch12/P12_6-10/P12_6-10/Iterator.hpp
| D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.build/Cipher/AuthenticatedCipher.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/Crypto/Utilities/Base32.swift /Users/panartem/Developer/Study/Microserv... | D |
very far away in space or time
far removed mentally
| D |
module dcv.example.imgmanip;
/**
* Image manipulation example using dcv library.
*/
import std.stdio;
import std.experimental.ndslice;
import dcv.core;
import dcv.imgproc.imgmanip;
import dcv.io;
void main()
{
/**
* Image (array) resize example.
*
* Resize is done by using dcv.imgproc.imgmanip.resize met... | D |
module dagon.core.ownership;
import dlib.core.memory;
import dlib.container.array;
interface Owned
{
}
class Owner: Owned
{
DynamicArray!Owned ownedObjects;
this(Owner owner)
{
if (owner)
owner.addOwnedObject(this);
}
void addOwnedObject(Owned obj)
{
ownedObjects... | D |
[h2] Introduction:
The Small-Scale Experimental Machine (SSEM), also known as the Manchester
Baby is widely considered to be the world's first stored program computer.
Unlike The ENIAC or Z3 which used some form of mechanical storage, the
SSEM stored programs and data electronically and could be changed during
th... | D |
instance NOV_1368_Novize(Npc_Default)
{
name[0] = NAME_MadNovice;
npcType = npctype_main;
guild = GIL_GUR;
level = 30;
flags = 0;
voice = 3;
id = 1368;
attribute[ATR_STRENGTH] = 115;
attribute[ATR_DEXTERITY] = 50;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 250;
at... | D |
/Users/Palash/Downloads/EECS441_UI-master-3/DerivedData/try/Build/Intermediates.noindex/try.build/Debug-iphonesimulator/try.build/Objects-normal/x86_64/MoneyTrackViewController.o : /Users/Palash/Downloads/EECS441_UI-master-3/try/SceneDelegate.swift /Users/Palash/Downloads/EECS441_UI-master-3/try/AppDelegate.swift /User... | D |
/* -------------------- CZ CHANGELOG -------------------- */
/*
v1.02:
CZ_SkillCheckCondition - přidáno zobrazování skill checků
*/
var int hosharpsword;
instance DIA_Hodges_Kap1_EXIT(C_Info)
{
npc = BAU_908_Hodges;
nr = 999;
condition = DIA_Hodges_Kap1_EXIT_Condition;
information = DIA_Hodges_Kap1_EXIT_Inf... | D |
instance PC_Fighter_NW_vor_DJG(Npc_Default)
{
name[0] = "Горн";
guild = GIL_SLD;
id = 813;
voice = 12;
flags = 0;
npcType = NPCTYPE_FRIEND;
aivar[93] = TRUE;
B_SetAttributesToChapter(self,6);
fight_tactic = FAI_HUMAN_MASTER;
EquipItem(self,itmw_gorn_axt);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,... | D |
module android.java.android.app.ApplicationErrorReport_BatteryInfo;
public import android.java.android.app.ApplicationErrorReport_BatteryInfo_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!ApplicationErrorReport_BatteryInfo;
import import2 = android.java.java.lang.Class;
| D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.