code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
the action of an armed force that surrounds a fortified place and isolates it while continuing to attack
| D |
instance VLK_443_Arbeiter (Npc_Default)
{
// ------ NSC ------
name = "Arbeiter";
guild = GIL_VLK;
id = 443;
voice = 1;
flags = 0;
npctype = NPCTYPE_AMBIENT;
//-----------AIVARS----------------
aivar[AIV_ToughGuy] = TRUE;
// ------ Attribute ------
B_SetAttributesToChap... | D |
module derelict.guile.types;
public import core.stdc.config : c_long, c_ulong;
public import std.socket : sockaddr;
alias ssize_t = long;
alias scm_t_intptr = int*;
alias scm_t_uintptr = uint*;
alias scm_t_bits = scm_t_uintptr;
alias scm_t_signed_bits = scm_t_intptr;
alias scm_t_int8 = byte;
alias scm_t_uint8 = ubyt... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1... | D |
#!/usr/bin/env rdmd-dev-module
/** Object Data Persistence.
See_Also: https://stackoverflow.com/questions/20932921/automatic-object-persistence-in-d/20934647?noredirect=1#20934647
*/
module persist;
/// Persistent storage of variables of type `T`.
struct persistent(T, string file = __FILE__, size_t line = __LINE_... | D |
/*
* Problem 47
*
* 04 July 2003
*
*
* The first two consecutive numbers to have two distinct prime factors
* are:
*
* 14 = 2 x 7
* 15 = 3 x 5
*
* The first three consecutive numbers to have three distinct prime
* factors are:
*
* 644 = 2^2 x 7 x 23
* 645 = 3 x 5 x 43
* 646 = 2 x 17 x 19.
*
* Find th... | D |
module org.serviio.upnp.addressing.LocalAddressResolverStrategy;
import java.lang.String;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.... | D |
making a strong or vivid impression
producing a strong effect
| D |
/Users/hdcui/blind_sig_project/bld_sig/target/release/deps/typeable-246b56de8a6fb188.rmeta: /Users/hdcui/.cargo/registry/src/github.com-1ecc6299db9ec823/typeable-0.1.2/src/lib.rs
/Users/hdcui/blind_sig_project/bld_sig/target/release/deps/libtypeable-246b56de8a6fb188.rlib: /Users/hdcui/.cargo/registry/src/github.com-1e... | D |
module ui;
public import ui.button; | D |
/* -------------------- CZ CHANGELOG -------------------- */
/*
v1.02:
ShrinkUse - zrušení omezení kouzla na jediné použití
*/
instance Spell_Shrink(C_Spell_Proto)
{
time_per_mana = 0;
spellType = SPELL_NEUTRAL;
targetCollectAlgo = TARGET_COLLECT_FOCUS;
targetCollectRange = 1200;
};
func int Spell_Logic_Sh... | D |
/*
* (C) Copyright 2001-2009 Wojtek Kaniewski <wojtekka@irc.pl>
* Robert J. Woźny <speedy@ziew.org>
* Arkadiusz Miśkiewicz <arekm@pld-linux.org>
* Tomasz Chiliński <chilek@chilan.com>
* Piotr Wysocki <wysek@li... | D |
module hunt.time.format.CompositePrinterParser;
import hunt.time.format.DateTimeParseContext;
import hunt.time.format.DateTimePrinterParser;
import hunt.time.format.DateTimePrintContext;
import hunt.time.temporal.TemporalField;
import hunt.util.StringBuilder;
import hunt.collection.List;
//--------------------------... | D |
module des.math.method.calculus.diff;
import des.math.linear;
import std.traits;
import des.util.testsuite;
version(unittest) import std.math;
///
auto df(size_t N, size_t M, T, E=T)
( Vector!(M,T) delegate( in Vector!(N,T) ) f, in Vector!(N,T) p, E step=E.epsilon*10 )
if( isFloatingPoint!T && isFloatingPoi... | 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 |
/Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Never.o : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/... | D |
module fun;
import pegged.grammar;
import program;
import std.string, std.conv, std.stdio;
import expression;
import std.algorithm.mutation;
import stringliteral;
Fun FunFactory(ParseTree node, Program program) {
string funName = join(node.children[0].matches);
Fun fun;
switch (funName) {
case "pe... | D |
/**************************************************************************
Является ли slf злом: TRUE - является, FALSE - нет.
***************************************************************************/
func int C_NpcIsEvil(var C_Npc slf)
{
// злом являются ищущие, драконы, орки, люди-ящеры, демоны (в том числ... | D |
/Users/ben/Documents/w/code/project/learn/learn-cargo/target/rls/debug/deps/rand_core-fd69b2d5d6281ad8.rmeta: /Users/ben/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.4.2/src/lib.rs /Users/ben/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.4.2/src/error.rs /Users/ben/.cargo/... | D |
module miao.common.skip_table;
@trusted:
struct Skip_table(KeyType) {
public pure nothrow:
this(in int default_val)
{
default_val_ = default_val;
}
int opIndex(in KeyType idx) const
{
const ret = idx in skip_table_;
return ret? *ret: default_val_;
}
int opIndexAss... | D |
/Users/hoff.silva/Documents/Personal/Git/vap_tech_project/VAP-JOBS/Bin/DerivedData/VAP-JOBS/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ResponseSerialization.o : /Users/hoff.silva/Documents/Personal/Git/vap_tech_project/VAP-JOBS/Pods/Alamofire/Source/MultipartFormD... | D |
# FIXED
Startup/main.obj: C:/ti/simplelink/ble_sdk_2_02_01_18/src/examples/simple_ap/cc26xx/app/main.c
Startup/main.obj: C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/bios_6_46_01_38/packages/ti/sysbios/BIOS.h
Startup/main.obj: C:/ti/xdctools_3_32_00_06_core/packages/xdc/std.h
Startup/main.obj: C:/ti/ccsv7/tools/comp... | D |
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/Console.build/Output/ConsoleTextFragment.swift.o : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/console/Sources/Console/Terminal/ANSI.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checko... | D |
module GameObject;
import dsfml.graphics;
interface IUpdateable
{
void Update();
}
interface IDrawable
{
void Draw(DrawLayer dl, RenderTarget target);
}
enum DrawLayer {Background=0, LocalBackground, LowDraw, HighDraw, TopDraw, UI}
| D |
/Users/bradleyhoffman/Desktop/Rust/projects/adder/target/debug/adder-6927724b719888ac: /Users/bradleyhoffman/Desktop/Rust/projects/adder/src/lib.rs
| D |
instance BAU_915_Bauer(Npc_Default)
{
name[0] = NAME_Bauer;
npcType = npctype_ambient;
guild = GIL_BAU;
level = 2;
voice = 4;
id = 915;
attribute[ATR_STRENGTH] = 15;
attribute[ATR_DEXTERITY] = 11;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 76;
attribute[ATR_HITPOIN... | D |
module core.sys.wasi.signal;
version (WebAssembly) {
version = WASI;
}
version (WASI):
private import core.sys.wasi.config;
public import core.stdc.signal;
public import core.sys.wasi.sys.types;
private alias void function(int) sigfn_t;
private alias void function(int, siginfo_t*, void*) sigactfn_t;
// nothrow... | D |
/Users/Vishnu/QBurst/Internal/Pod/QAHelper/DerivedData/QAHelper/Build/Intermediates/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/DateFormatterTransform.o : /Users/Vishnu/QBurst/Internal/Pod/QAHelper/Pods/ObjectMapper/Sources/CustomDateFormatTransform.swift /Users/Vishnu/QBurst/Internal/Pod/... | D |
/Users/thomaslacan/git/MyJogs-vapor/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.build/Database/DatabaseConfig.swift.o : /Users/thomaslacan/git/MyJogs-vapor/.build/checkouts/database-kit.git-836978699575343433/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/thomaslacan/git/MyJogs-vapor/.build/checkouts/datab... | D |
/Volumes/cogzidel/Aravind/git/AnimationsSwift/DerivedData/Swift-Animations/Build/Intermediates.noindex/Swift-Animations.build/Debug-iphonesimulator/Swift-Animations.build/Objects-normal/x86_64/DefaultNotificationCenter.o : /Volumes/cogzidel/Aravind/git/AnimationsSwift/Swift-Animations/AppleSystemService.swift /Volumes/... | D |
high in price or charging high prices
| D |
/**
* D header file for POSIX.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Sean Kelly
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
/* Copyright Sean Kelly 2005 - 2009.
... | D |
instance DIA_SLD_760_Soeldner_INTRO(C_Info)
{
npc = SLD_760_Soeldner;
condition = DIA_SLD_760_Soeldner_INTRO_CONDITION;
information = DIA_SLD_760_Soeldner_INTRO_INFO;
important = 1;
permanent = 0;
};
func int DIA_SLD_760_Soeldner_INTRO_CONDITION()
{
if(Npc_GetDistToNpc(self,hero) < 200)
{
return 1;
};
};
... | D |
small edible marine snail
edible marine gastropod
emit or reflect light in a flickering manner
gleam or glow intermittently
remove or displace from a position
| D |
import std.array;
import gfm.opengl, gfm.math, gfm.sdl2;
import engine;
import inputhandler, player, limiter, perlin,
doxel_world, doxel_stage, doxel_scene, doxel_pieces, doxel_height_map,
chunk_stage_world_generator, world_surface_generator, chunk_column_provider,
skybox, quadoverlay;
class DoxelGame : Ga... | D |
E: c680, c563, c663, c291, c85, c916, c475, c207, c280, c729, c303, c473, c548, c883, c934, c695, c773, c694, c377, c232, c766, c307, c102, c974, c573, c66, c812, c569, c322, c704, c200, c738, c411, c828, c786, c164, c992, c98, c665, c559, c764, c29, c476, c611, c618, c243, c416, c96, c875, c353, c795, c478, c619, c152... | D |
const ulong RUNS= 50_000;
ulong[] rank( int[] list ...){
ulong[] count;
count.length= Rank.max+1;
for( long i= 1; i<=RUNS; i++){
auto talon= new Talon;
auto visible= new Visible( talon, list);
count[ cast(int)visible.analyze()]++;
delete visible;
delete talon;
}
return count;
}
// bei 1_00... | D |
/Users/dali/Documents/GitHub/rustlings/target/release/build/syn-6f19f7ed684f7896/build_script_build-6f19f7ed684f7896: /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/syn-1.0.74/build.rs
/Users/dali/Documents/GitHub/rustlings/target/release/build/syn-6f19f7ed684f7896/build_script_build-6f19f7ed684f... | 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="modelSQSv7.notation#_n34NAL4xEeOYw... | D |
instance VLK_4002_Buergerin(Npc_Default)
{
name[0] = NAME_Buergerin;
guild = GIL_VLK;
id = 4002;
voice = 17;
flags = 0;
npcType = NPCTYPE_AMBIENT;
B_SetAttributesToChapter(self,3);
level = 1;
fight_tactic = FAI_HUMAN_COWARD;
B_CreateAmbientInv(self);
B_SetNpcVisual(self,FEMALE,"Hum_Head_Babe0",FaceBabe_N_An... | D |
module UnrealScript.TribesGame.TrDevice_TripSensorDeployable;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.TribesGame.TrDevice_Deployable;
extern(C++) interface TrDevice_TripSensorDeployable : TrDevice_Deployable
{
public extern(D):
private static __gshared ScriptClass mStaticClass... | D |
/Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SerialDisposable.o : /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/RxSwift/RxSwift/Observables/S... | D |
/**
This module is a submodule of $(MREF std, range).
It defines the bidirectional and forward range primitives for arrays:
$(LREF empty), $(LREF front), $(LREF back), $(LREF popFront), $(LREF popBack) and $(LREF save).
It provides basic range functionality by defining several templates for testing
whether a given ob... | D |
////////////////
// SPECIES.D //
//////////////
// ACHTUNG! die Turn-Speed ist durch einen "hack" im kampfmodus auf die doppelte geschwindigkeit gesetzt.
// deshalb ist die Turn-Speed der Monster im Spiel doppelt so schnell wie hier angegeben, da sie immer im Kampfmode sind!
INSTANCE Gil_Values(C_GILVALUES)
{
... | D |
#!/usr/bin/env rund
module day5;
import intcode;
import std.array;
import std.algorithm;
import std.conv;
import std.file;
import std.stdio;
import std.string;
long[] runProgram(long[] tape, long[] input ...) {
auto computer = Computer(tape);
auto output = appender!(long[]);
auto result = computer.run();... | D |
module intcode;
alias IntCode = IntCodeT!int;
alias LongCode = IntCodeT!long;
struct IntCodeT(T) {
alias Word = T;
this(Word[] program) {
memory = program.dup;
}
Word[] memory;
Word[] input;
Word[] output;
alias Addr = Word;
Addr PC, RB;
bool halted = true;
bool feedback = false;
enum O... | D |
// Written in the D programming language.
/++
$(P The $(D std.uni) module provides an implementation
of fundamental Unicode algorithms and data structures.
This doesn't include UTF encoding and decoding primitives,
see $(REF decode, std,_utf) and $(REF encode, std,_utf) in $(MREF std, utf)
for this... | D |
module widget.controller.project.project;
import widget;
class ProjectController : WidgetControllerPrototype{
private ProjectIndexController _index = null;
private ProjectProjectsController _projects = null;
private ProjectTasksController _tasks = null;
@property public ProjectIndexController index(){ retur... | D |
module android.java.android.view.Window_OnRestrictedCaptionAreaChangedListener_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.android.graphics.Rect_d_interface;
import import1 ... | D |
// Written in the D programming language.
/**
This module contains Combo Box widgets implementation.
Synopsis:
----
import dlangui.widgets.combobox;
// creation of simple strings list
ComboBox box = new ComboBox("combo1", ["value 1"d, "value 2"d, "value 3"d]);
// select first item
box.selectedItemIndex = 0;
// ... | D |
import _containers._stack;
public import SkiboCard:SkiboCard;
import Player:Player;
import std.stdio:writeln;
import std.algorithm:map;
import std.conv:to;
import std.exception:enforce;
alias map!(stack => stack.view) tops;
abstract class CardStack : Stack!SkiboCard {
interface Viewable:IStack!SkiboCard {
fina... | D |
/Users/DanielChang/Documents/Vapor/Hello/.build/debug/Core.build/Box.swift.o : /Users/DanielChang/Documents/Vapor/Hello/Packages/Core-1.1.1/Sources/Core/Array.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Core-1.1.1/Sources/Core/Bool+String.swift /Users/DanielChang/Documents/Vapor/Hello/Packages/Core-1.1.1/So... | D |
AD.d AD.p1: C:/Users/FMV/Dropbox/PIC-project/PIC_XC8/pic18f2550/AD/AD.c | D |
instance DIA_Talbin_NW_EXIT(C_Info)
{
npc = VLK_4132_Talbin_NW;
nr = 999;
condition = DIA_Talbin_EXIT_Condition;
information = DIA_Talbin_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Talbin_NW_EXIT_Condition()
{
return TRUE;
};
func void DIA_Talbin_NW_EXIT_Info()
{
AI_StopProcessI... | D |
/Users/olegp/Desktop/XCoordinatorPlayground/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Completable+AndThen.o : /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Obs... | D |
an official who is appointed
a person who is appointed to a job or position
| D |
/**
Implementation of the stdcall calling convention for x86 Windows.
Authors: Daniel Keep <daniel.keep@gmail.com>
Copyright: See LICENSE.
*/
module ouro.util.invoke.X86_Windows.Stdcall;
import Integer = tango.text.convert.Integer;
import ouro.util.invoke.CallBuilder;
import ouro.util.invoke.CallConv : ... | D |
/Users/chris/Documents/rust/wildfire/target/debug/deps/scopeguard-8931b8b799274a65.rmeta: /Users/chris/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs
/Users/chris/Documents/rust/wildfire/target/debug/deps/libscopeguard-8931b8b799274a65.rlib: /Users/chris/.cargo/registry/src/github.com-1ecc... | D |
// Authors: tspike (github.com/tspike2k)
// Copyright: Copyright (c) 2019
// License: Boost Software License 1.0 (https://www.boost.org/LICENSE_1_0.txt)
module strings;
@nogc nothrow:
ulong length(const(char)* s)
{
ulong result = 0;
while(s[result] != '\0')
{
result++;
}
return r... | D |
import Pizza;
import SimplePizzaFactory;
import PizzaStore;
import NYCheesePizza;
import NYPepperoniPizza;
import NYGreekPizza;
public class NYPizzaStore : PizzaStore
{
public override Pizza createPizza(string type)
{
Pizza pizza = null;
if (type == "cheese")
{
pizza = new N... | D |
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Leaf.build/Constants.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Embed.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/le... | D |
#!/usr/bin/rdmd
import std.stdio;
void main() {
writeln("Hello, world!");
}
| D |
/**
This module contains the core functionality of the vibe.d framework.
Copyright: © 2012-2017 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.core.core;
public import vibe.core.task;
import eventcore.core;... | D |
// Written by Christopher E. Miller
// This code is public domain.
// www.dprogramming.com
// To compile:
// dfl dnote dnote.res -gui
module dnote;
private import std.file, std.path, std.stream, std.system;
private import std.utf;
private import dfl.all, dfl.internal.winapi;
const string TITLE = "DNote";
const ... | 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="model.notation#_K4D7YCTpEeOePa... | D |
module example.factories.systemFactory;
import ecs;
// import your systems
import example.systems;
void generateSystems(ref Hub hub)
{
/*
* generate all of your systems through the hub;
* the order you add your systems is the order they will get updated
* so the systems who needs to be updated first should be... | D |
# FIXED
HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/simplelink_cc2640r2_sdk_1_30_00_25/source/ti/blestack/hal/src/target/_common/hal_flash_wrapper.c
HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/simplelink_cc2640r2_sdk_1_30_00_25/source/ti/blestack/hal/src/inc/hal_board.h
HAL/Target/CC2650/Drivers/... | D |
/**
* FewDee's Allegro Manager.
*
* The Allegro Manager manages which Allegro subsystems have been loaded, and
* provides means to load them. It also unloads them when the time comes.
*
* FewDee users should rarely use this class directly. In fact, the only
* situation in which end users should use the Allegro M... | D |
/**
* Windows API header module
*
* Translated from MinGW Windows headers
*
* Authors: Stewart Gordon
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC src/core/sys/windows/_winnetwk.d)
*/
module core.sys.windows.winnetwk;
version (Windows):
version (ANSI) {} e... | D |
/* REQUIRED_ARGS: -preview=bitfields
* TEST_OUTPUT:
---
fail_compilation/biterrors4.d(109): Error: cannot take address of bit-field `a`
---
*/
#line 100
struct S
{
int a:3;
}
void test()
{
S s;
int* p = &s.a;
}
| D |
# FIXED
Application/simple_peripheral.obj: C:/ti/simplelink/ble_sdk_2_02_01_18/src/examples/simple_peripheral/cc26xx/app/simple_peripheral.c
Application/simple_peripheral.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/string.h
Application/simple_peripheral.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6... | D |
a forward on a soccer team
someone receiving intensive training for a naval technical rating
an employee on strike against an employer
someone who hits
the part of a mechanical device that strikes something
| D |
the posterior part of a human (or animal) body from the neck to the end of the spine
the side that goes last or is not normally seen
the part of something that is furthest from the normal viewer
(football) a person who plays in the backfield
the series of vertebrae forming the axis of the skeleton and protecting the sp... | D |
module vayne.compiler;
import std.algorithm;
import std.array;
import std.file;
import std.path;
import std.stdio;
import std.string;
import vayne.ast.node;
import vayne.ast.printer;
import vayne.code.emitter;
import vayne.op;
import vayne.serializer;
import vayne.source.compress;
import vayne.source.parser;
import ... | D |
// REQUIRED_ARGS: -o-
// https://issues.dlang.org/show_bug.cgi?id=24055
// is(x == __parameters) does not work on function pointer/delegate types
void function(int) fp;
void delegate(int) dg;
static assert(is(typeof(fp) == __parameters));
static assert(is(typeof(*fp) == __parameters));
static assert(is(typeof(dg) == ... | D |
instance VLK_6025_TOM(Npc_Default)
{
name[0] = "Том";
guild = GIL_VLK;
id = 6025;
voice = 11;
flags = 0;
npcType = NPCTYPE_BL_MAIN;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_1h_Vlk_Dagger);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_P... | D |
// *************************************************************
// B_SelectSpell
// -------------
// Magieauswahl für Menschen und Monster
// Wenn Auswahlkriterien erfüllt (je nach Gilde unterschiedlich)
// --> TRUE, sonst FALSE
// Humans zaubern nur als KdF, PAL oder DMT
// *******************************************... | D |
/Users/admin/Desktop/Day4/DemoClass/DerivedData/DemoClass/Build/Intermediates/DemoClass.build/Debug-iphonesimulator/DemoClass.build/Objects-normal/x86_64/DemoPolymorphism.o : /Users/admin/Desktop/Day4/DemoClass/DemoClass/ReverseFile.swift /Users/admin/Desktop/Day4/DemoClass/DemoClass/PropertyDemo.swift /Users/admin/Des... | D |
# FIXED
Application/rcosc_calibration.obj: C:/ti/simplelink_cc13x0_sdk_1_50_00_08/source/ti/blestack/common/cc26xx/rcosc/rcosc_calibration.c
C:/ti/simplelink_cc13x0_sdk_1_50_00_08/source/ti/blestack/common/cc26xx/rcosc/rcosc_calibration.c:
| D |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ma... | D |
/*
* Copyright (C) 2006 Frank Benoit <benoit@tionex.de>
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any pur... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
190 78 1.89999998 483 56 67 44 -73 1551 2.5 2.5 0.91025641 sediments, limestones
189 68 14 76 50 65 40 -105.300003 3256 18 23 0.622222222 intrusives, rhyolite
62.9000015 64.5 10.8000002 39.2999992 55 65 40.7999992 -105.199997 3236 6.4000001 11.8... | D |
func int C_NpcIsReadyToObservePlayer(var C_Npc slf)
{
if(Npc_IsInState(slf,ZS_Potion_Alchemy))
{
return TRUE;
};
if(Npc_IsInState(slf,ZS_Read_Bookstand))
{
return TRUE;
};
if(Npc_IsInState(slf,ZS_Sit_Bench))
{
return TRUE;
};
if(Npc_IsInState(slf,ZS_Sit_Campfire))
{
return TRUE;
};... | 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_10_BeT-2242113... | D |
/** avgtime - Runs a command with an optional repetition and shows
* statistics of the time it took.
*
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Juan Manuel Cabo
* Version: 0.5
* Source: avgtime.d
* Last update: 2012-03-27
*/
/* Copyright Juan... | D |
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/Validation.build/Validators/URLValidator.swift.o : /Users/mu/Hello/.build/checkouts/validation/Sources/Validation/Validatable.swift /Users/mu/Hello/.build/checkouts/validation/Sources/Validation/ValidatorType.swift /Users/mu/Hello/.build/checkouts/validation/Sources/Vali... | D |
// Written in the D programming language.
/**
This module contains list widgets implementation.
Similar to lists implementation in Android UI API.
Synopsis:
----
import dlangui.widgets.lists;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopatin, coolreader.org@gmail.com
*/
mod... | D |
feel or have a desire for
expect and wish
express a desire for
| D |
module spells;
import engine;
import std.stdio;
import std.random;
//import gctrack;
import core.memory;
import logger;
import std.string;
import std.ascii : toLower;
import std.traits : EnumMembers;
import data;
import std.algorithm : min, max;
//TODO: group (Entity ent, HexXY target)
SLList!(Spell, Spell.listNext) ... | D |
var MonitorRunning 0
var MonitorCommandList 0
var MonitorLine 0
var MonitorLinePoint 0
var MonitorNvramrc 0
var MonitorOldCI 0
var MonitorOldCIM 0
var MonitorNvramrcBuf 0
var MonitorNvramrcLen 0
var MonitorNvramrcPtr 0
var MonitorPastNvramrc 0
struct MonitorCommand
4 Name
4 Callback
4 HelpText
endstruct
#includ... | D |
// for optional dependency
/++
Module for interacting with the user's terminal, including color output, cursor manipulation, and full-featured real-time mouse and keyboard input. Also includes high-level convenience methods, like [Terminal.getline], which gives the user a line editor with history, completion, etc. See... | D |
void main()
{
import std.algorithm;
assert("one two three".until("two", OpenRight.no).equal("one t"));
}
| D |
module ui.proposalreplyrenderer;
import client;
import constants;
import ui.renderhelper;
import ui.widgetrenderer;
import ui.widgets.characterinfo;
import ui.widgets.image;
import ui.widgets.label;
import ui.widgets.labelbutton;
import world.character;
import derelict.sdl2.sdl;
import std.string;
class Proposa... | D |
// This source code is in the public domain.
// Nodes - Setting up Hotspots
import std.stdio;
import std.conv;
import std.math;
import gtk.MainWindow;
import gtk.Main;
import gtk.Box;
import gtk.DrawingArea;
import gtk.Widget;
import gtk.Layout;
import gtk.Image;
import gdkpixbuf.Pixbuf;
import gdk.Event;
import ca... | D |
module openwebifbaseintent;
import openwebif.api;
import ask.ask;
import texts;
///
abstract class OpenWebifBaseIntent : BaseIntent
{
protected OpenWebifApi apiClient;
///
this(OpenWebifApi api)
{
apiClient = api;
}
///
protected AlexaResult returnError(Exception e)
{
import std.format : format;
imp... | D |
typedef int myint = 4;
struct S
{
int i;
union
{ int x = 2;
int y;
}
int j = 3;
myint k;
}
void main()
{
S s = S( 1, 5, 6 );
assert(s.i == 1);
assert(s.x == 5);
assert(s.y == 5);
assert(s.j == 3);
assert(s.k == 4);
}
| D |
module java.util;
public import java.util.AbstractCollection;
public import java.util.AbstractList;
public import java.util.AbstractMap;
public import java.util.AbstractSet;
public import java.util.ArrayList;
public import java.util.Arrays;
public import java.util.Calendar;
public import java.util.Collection;... | D |
instance Mod_7455_TPL_Angar_IR (Npc_Default)
{
// ------ NSC ------
name = "Cor Angar";
guild = GIL_OUT;
id = 7455;
voice = 34;
flags = 0; //NPC_FLAG_IMMORTAL oder 0
npctype = NPCTYPE_MAIN;
// ------ AIVARS ------
aivar[AIV_ToughGuy] = TRUE;
aivar[AIV_ToughGuyNewsOverride] = TRUE;
ai... | D |
/**
Example of how to use autoparsed to define a grammar for S-Expressions
It also shows how to annotate tokens so they work with [autoparsed.Lexer].
The annotations are based on PEG grammars.
**/
module sexpGrammar;
import autoparsed.autoparsed;
import autoparsed.lexer;
import autoparsed.syntax;
import sum... | D |
// https://issues.dlang.org/show_bug.cgi?id=22410
alias A(T...) = T;
void fun0(const A!(int, string) x = A!(1, "asdf"))
{
static assert(is(typeof(x) == A!(const int, const string)));
}
void fun1(const A!(immutable int, string) x = A!(1, "asdf"))
{
static assert(is(typeof(x) == A!(immutable int, const string)... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.