code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.numeric;
ulong[100] TS;
T lcm(T)(T a, T b)
{
return a / gcd(a, b) * b;
}
void main()
{
auto N = readln.chomp.to!int;
foreach (i; 0..N) {
TS[i] = readln.chomp.to!ulong;
}
auto res = TS[0];
foreach (t; TS[1..N]) {
... | 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="recurPackages.notation#_beRuwFHjEe... | D |
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | D |
instance Mod_1065_VLK_Buergerin_NW (Npc_Default)
{
// ------ NSC ------
name = Name_Buergerin;
guild = GIL_PAL;
id = 1065;
voice = 16;
flags = 0;
npctype = NPCTYPE_AMBIENT;
//-----------AIVARS----------------
aivar[AIV_ToughGuy] = TRUE;
// ------ Attribute ------
B_SetAt... | D |
module d3d.core.render.itexture;
import d3d.core;
interface ITexture
{
void create(Bitmap bmp);
Bitmap toBitmap();
void destroy();
void resize(Bitmap bmp);
void bind(uint unit);
@property uint id();
@property uint width();
@property uint height();
static @property ITexture white... | D |
/**
* Evaluate compile-time conditionals, such as `static if` `version` and `debug`.
*
* Specification: $(LINK2 https://dlang.org/spec/version.html, Conditional Compilation)
*
* Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.co... | D |
remove the triggering device from
| D |
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/GoogleCloud.build/Common/OAuth/OAuthComputeEngine+AppEngineFlex.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/google-cloud-provider/Sources/GoogleCloud/Storage/API/ObjectACLAPI.swift /Users/Jorge/Desk... | D |
@safe:
import std;
void main(string[] args) {
auto n = args.length > 1 ? args[1] : "";
writeln(format("Hello world %s!", n));
}
| D |
/++
$(H1 Annotated value)
License: $(HTTP www.apache.org/licenses/LICENSE-2.0, Apache-2.0)
Authors: Ilya Yaroshenko
Macros:
+/
module mir.annotated;
import mir.serde: serdeRegister, serdeAnnotation, serdeIsDynamicAlgebraic;
static immutable excMsg = "At least one annotation is required to create an annotated value.... | D |
module util;
import std.file : read;
ushort[] loadBinary(string path, bool littleEndian = true) @trusted
{
auto words = cast(ushort[]) read(path);
nativeToBigEndian(words, littleEndian);
return words;
}
void nativeToBigEndian(ushort[] words, bool littleEndian = true) @safe
{
if (littleEndian)
... | D |
/**
JSON serialization and value handling.
This module provides the Json struct for reading, writing and manipulating
JSON values. De(serialization) of arbitrary D types is also supported and
is recommended for handling JSON in performance sensitive applications.
Copyright: © 2012-2015 RejectedSoftware e.K.
Lic... | 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.dstruct;
import ddmd.ag... | D |
// Copyright Ferdinand Majerech 2010 - 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)
///Game class.
module pong.game;
@safe
import pong.player;
import pong.hud;
import pong.scores... | 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 |
/Users/chenxuewen/testrust/learnrust/rust-outter-crate/target/rls/debug/deps/rand-8fc6e9e10d0e291f.rmeta: /Users/chenxuewen/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.3.23/src/lib.rs /Users/chenxuewen/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.3.23/src/distributions/mod.rs /Use... | D |
var int Martin_ItemsGiven_Chapter_1;
var int Martin_ItemsGiven_Chapter_2;
var int Martin_ItemsGiven_Chapter_3;
var int Martin_ItemsGiven_Chapter_4;
var int Martin_ItemsGiven_Chapter_5;
var int Martin_ItemsGiven_JoinGuild;
func void B_GiveTradeInv_Addon_Martin(var C_Npc slf)
{
if((Kapitel >= 1) && (Martin_ItemsGiven_... | D |
import std.stdio;
import std.getopt;
import std.algorithm;
import std.regex;
import std.uri;
import std.net.browser;
int main(string[] args)
{
if (args.length < 2)
{
writeln("dman: Look up D topics in the manual
Usage:
dman [-man] topic
");
return 1;
}
bool man;
getopt(args, ... | D |
/* https://issues.dlang.org/show_bug.cgi?id=15399
TEST_OUTPUT:
---
fail_compilation/test15399.d(32): Error: field `S1.ptr` cannot modify misaligned pointers in `@safe` code
fail_compilation/test15399.d(33): Error: field `S2.ptr` cannot modify misaligned pointers in `@safe` code
fail_compilation/test15399.d(34): Error: ... | D |
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/FormData.build/ContentDispositionParser.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/multipart.git-4210556629793786970/Sources/FormData/Field.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.b... | D |
func int B_AssessDrawWeapon()
{
if(Npc_IsInFightMode(other,FMODE_NONE))
{
return FALSE;
};
if(Npc_GetDistToNpc(self,other) > PERC_DIST_DIALOG)
{
return FALSE;
};
if(!C_NpcIsBotheredByWeapon(self,other))
{
return FALSE;
};
if(Npc_IsInState(self,ZS_ReactToWeapon))
{
return FALSE;
};
if(Npc_IsInStat... | D |
// Written in the D programming language.
/**
This module contains simple scrollbar-like controls implementation.
ScrollBar - scrollbar control
SliderWidget - slider control
Synopsis:
----
import dlangui.widgets.scrollbar;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopati... | D |
/Users/jesse/Desktop/blockx/foRust/reentrancyGuard/target/debug/build/crunchy-e6b50443d8677a3b/build_script_build-e6b50443d8677a3b: /Users/jesse/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs
/Users/jesse/Desktop/blockx/foRust/reentrancyGuard/target/debug/build/crunchy-e6b50443d8677a3b/build_sc... | D |
# FIXED
F2837xD_Ipc.obj: C:/GitHub/MIT-Pico-Grid/Project/New_MG/Firmware/EVAL/F2837xD_common/source/F2837xD_Ipc.c
F2837xD_Ipc.obj: C:/GitHub/MIT-Pico-Grid/Project/New_MG/Firmware/EVAL/F2837xD_headers/include/F2837xD_device.h
F2837xD_Ipc.obj: C:/GitHub/MIT-Pico-Grid/Project/New_MG/Firmware/EVAL/c2000_15.12.3.LTS/includ... | D |
module ogre.bindings.mini_xaw;
import ogre.config;
static if(!OGRE_GTK && OgrePosix)
{
import ogre.bindings.mini_x11;
pragma(lib, "Xaw");
pragma(lib, "Xt");
alias uint _XtAppStruct;
alias _XtAppStruct * XtAppContext;
alias XID _XRegion;
alias XID _XtEventRec;
alias XID _XtStateRec;
... | D |
a man who is a native or inhabitant of England
| D |
instance PC_Hero(Npc_Default)
{
name[0] = "ß";
guild = GIL_NONE;
id = 0;
voice = 15;
level = 0;
npcType = npctype_main;
bodyStateInterruptableOverride = TRUE;
exp = 0;
exp_next = 500;
lp = 0;
attribute[ATR_STRENGTH] = 10;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_MANA_MAX] = 10;
attrib... | D |
/**
* Implement CTFE for intrinsic (builtin) functions.
*
* Currently includes functions from `std.math`, `core.math` and `core.bitop`.
*
* Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LIN... | D |
in an intensive manner
| D |
/Users/olegp/Desktop/XCoordinatorPlayground/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/RefCountDisposable.o : /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Obse... | D |
/*
* hunt-proton: AMQP Protocol library for D programming language.
*
* Copyright (C) 2018-2019 HuntLabs
*
* Website: https://www.huntlabs.net/
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.proton.amqp.transport.ErrorCondition;
import hunt.proton.amqp.Symbol;
import hunt.loggi... | D |
/*
REQUIRED_ARGS: -preview=rvaluerefparam
PERMUTE_ARGS:
EXTRA_FILES: imports/testmangle.d
TEST_OUTPUT:
---
func
double
All good 1
All good 2
All good 3
_D7imports10testmangle12detectMangleFPSQBlQBg6DetectZQq
_D7imports10testmangle__T10DetectTmplTiZQpFNaNbNiNfZv
true
false
uint
int[]
int[]
const(K5886)
4 ; const(K5886)
... | D |
/Users/ruru/Desktop/CloudsAPP-2017-07-24/DerivedData/CloudsAPP/Build/Intermediates/Alamofire.build/Debug-iphonesimulator/Alamofire\ iOS.build/Objects-normal/x86_64/Alamofire.o : /Users/ruru/Desktop/CloudsAPP-2017-07-24/Alamofire/Source/MultipartFormData.swift /Users/ruru/Desktop/CloudsAPP-2017-07-24/Alamofire/Source/Ti... | D |
/**
Generator for project files
Copyright: © 2012-2013 Matthias Dondorff, © 2013-2016 Sönke Ludwig
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Matthias Dondorff
*/
module dub.generators.generator;
import dub.compilers.compiler;
import dub.generators.cmak... | D |
~ NAME : Sentences
~ NOTE :
~ AUTH : Devine Lu Linvega
@ ENGLISH RUSSIAN
Yes Да
No Нет
Maybe Может быть
Welcome Добро пожаловать!
Hello ... | D |
instance DIA_Darrion_Exit(C_Info)
{
npc = NOV_1312_Darrion;
nr = 999;
condition = DIA_Darrion_Exit_Condition;
information = DIA_Darrion_Exit_Info;
important = 0;
permanent = 1;
description = DIALOG_ENDE;
};
func int DIA_Darrion_Exit_Condition()
{
return 1;
};
func void DIA_Darrion_Exit_Info()
{
AI_StopProc... | D |
/Users/velislavayanchina/Projects/pangofc/pangofc-sys/target/debug/deps/tempdir-640b29888f9ff7db.rmeta: /Users/velislavayanchina/.cargo/registry/src/github.com-1ecc6299db9ec823/tempdir-0.3.7/src/lib.rs
/Users/velislavayanchina/Projects/pangofc/pangofc-sys/target/debug/deps/libtempdir-640b29888f9ff7db.rlib: /Users/veli... | D |
import std.stdio;
import std.typecons;
import std.algorithm;
void main() {
long n, m;
scanf("%ld %ld", &n, &m);
Tuple!(long, long)[] ss;
foreach(i;0..n) {
long a, b;
scanf("%ld %ld", &a, &b);
ss ~= tuple(a, b);
}
ss.sort!((a, b) => a[0] < b[0]);
long p;
foreach(s; ss) {
if (m <= 0) break;
p += s[0] *... | D |
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/wbuild/node-template-runtime/target/release/build/node-template-runtime-1e645d4af955b1ac/build_script_build-1e645d4af955b1ac: /Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-b... | D |
module EdrTest;
import core.memory;
import core.runtime;
import core.thread;
import std.conv;
import std.math;
import std.range;
import std.string;
import std.utf;
//~ extern(C) int _D5mydll12__ModuleInfoZ;
auto toUTF16z(S)(S s)
{
return toUTFz!(const(wchar)*)(s);
}
pragma(lib, "gdi32.lib");
pragma(lib, "comdlg... | D |
module misc.rect;
import derelict.sdl2.sdl;
import misc.coords;
bool pointInRect(Vec_T)(
Vec_T point,
Vec_T rectTopLeft,
Vec_T rectDimensions
) {
auto pointDiff = point - rectTopLeft;
return (
pointDiff.x > 0 &&
pointDiff.y > 0 &&
pointDiff.x < rectDimensions.x &&
pointDiff.y < rectDimensions.y
);
}
S... | 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... | D |
/**
* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_lmbrowsr.d)
*/
module core.sys.windows.lmbrowsr;
version (Windows):
import core.sys.windows.lmcons, core.sy... | D |
module android.java.android.view.textclassifier.TextLanguage_Builder;
public import android.java.android.view.textclassifier.TextLanguage_Builder_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!TextLanguage_Builder;
import import3 = android.java.android.view.textclassifier.TextLanguage;
import... | D |
import std.stdio, std.string, std.array, std.conv;
import core.bitop;
void printBitBoard(ulong board) {
for (int i=63; i>=0; i--) {
if ((to!ulong(1)<<i) & board)
write("X ");
else
write("- ");
if ((i % 8) == 0) {writeln;}
}
writeln;
}
/*
ulong set(ulong bitboard, ulong... | D |
// creal
module std.typeinfo.ti_creal;
class TypeInfo_c : TypeInfo
{
char[] toString() { return "creal"; }
hash_t getHash(void *p)
{
return (cast(uint *)p)[0] + (cast(uint *)p)[1] +
(cast(uint *)p)[2] + (cast(uint *)p)[3] +
(cast(uint *)p)[4];
}
static int _equals(creal f1, cre... | D |
module UnrealScript.Engine.InterpTrackVisibility;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.InterpTrack;
extern(C++) interface InterpTrackVisibility : InterpTrack
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass S... | 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.util.Timer;
import hunt.event;
import hunt.event.timer;
import hunt.logging.ConsoleLogger;
import hunt.Excepti... | D |
#!/usr/bin/env rdmd-dev-module
/** Computer Science Units.
Copyright: Per Nordlöw 2018-.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(WEB Per Nordlöw)
*/
module csunits;
/** Prefix Multipliers.
See_Also: http://searchstorage.techtarget.com/definition/Kilo-mega-giga-tera-pe... | D |
/Users/Mandy_Cho/Documents/GetSwifty/Voice/DerivedData/Voice/Build/Intermediates/Voice.build/Debug-iphonesimulator/Voice.build/Objects-normal/x86_64/SwiftyJSON.o : /Users/Mandy_Cho/Documents/GetSwifty/Voice/Voice/DetailViewController.swift /Users/Mandy_Cho/Documents/GetSwifty/Voice/Voice/MasterViewController.swift /Use... | D |
/*
* Copyright (c) 2017-2018 sel-project
*
* 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, pu... | D |
module content.sound;
import content, sound.sound, util.strings;
struct SoundID
{
import derelict.sdl2.mixer;
uint index;
}
struct SoundManager
{
alias Table = ResourceTable!(Sound, sound.sound.obliterate);
private static Table resources;
static init(A)(ref A allocator, uint capacity)
{
resources = Table(a... | D |
//This is the base file to be imported, which automatically includes all
//of the essential parts of the Magra game engine.
module magra.base;
public import derelict.sdl2.sdl;
public import derelict.sdl2.mixer;
public import derelict.sdl2.image;
public import derelict.sdl2.ttf;
public import magra.actor;
public impor... | D |
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Cipher/CipherProtocol.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/AleixDiaz/Documents/VaporProject/Heroku... | D |
import std.stdio;
import entity;
import std.json;
@Table("user")
class User
{
@AutoIncrement @PrimaryKey
int id;
@NotNull
string name;
float money;
string status;
}
@Table("blog")
class Blog
{
@AutoIncrement @PrimaryKey
int id;
int uid;
string title;
string context;
}... | D |
module std.container.util;
import std.algorithm;
/**
Returns an initialized object. This function is mainly for eliminating
construction differences between structs and classes. It allows code to not
worry about whether the type it's constructing is a struct or a class.
*/
template make(T)
if (is(T == struct) || is(... | D |
INSTANCE Info_Mod_Skinner_Hi (C_INFO)
{
npc = Mod_964_BDT_Skinner_MT;
nr = 1;
condition = Info_Mod_Skinner_Hi_Condition;
information = Info_Mod_Skinner_Hi_Info;
permanent = 0;
important = 0;
description = "Hallo ...";
};
FUNC INT Info_Mod_Skinner_Hi_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Dexter_Hi))
... | 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/varaprasadp/Desktop/React/Example/ios/build/Build/Intermediates/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChartDataEntry.o : /Users/varaprasadp/Desktop/React/Example/ios/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/varaprasadp/Desktop/React/Example/ios/... | D |
// @file pointers.d
import std.stdio;
void main(){
int x = 7;
int* px = &x;
writeln(x);
writeln(*px);
}
| D |
/*
* fontconfig/fontconfig/fontconfig.h
*
* Copyright © 2001 Keith Packard
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright... | D |
module sdpc.combinators;
public import sdpc.combinators.combinators;
| D |
// REQUIRED_ARGS: -d
// PERMUTE_ARGS: -dw
// EXTRA_SOURCES: imports/circularA.d
// This bug is typedef-specific.
// https://issues.dlang.org/show_bug.cgi?id=4543
import core.stdc.stdio;
import imports.circularA;
class bclass {};
alias bclass Tclass;
struct bstruct {}
alias bstruct Tstruct;
/**********************... | D |
module imports.pr98067;
enum MAP_ANON = 0x10;
| 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 |
module test.http.router.handler.body;
import hunt.http.$;
import hunt.http.codec.http.model;
import hunt.http.server.Http2ServerBuilder;
import hunt.Assert;
import hunt.util.Test;
import test.http.router.handler.AbstractHttpHandlerTest;
import javax.servlet.http.Part;
import java.io.IOException;
import java.io.InputS... | D |
/*
* Simple Brainfuck interpreter and x86-compiler written in D2
* 2011
*
*/
import Brainfuck.Compiler;
import Brainfuck.Interpreter;
import Brainfuck.Parser;
import Brainfuck.EvalLoop;
import std.stdio;
import std.array;
import std.conv;
const version_num = 2;
string usage =
"Usage: bfc <OPTION> <SOURCE FILE>... | D |
/Users/wox/Desktop/ios11/Weapons/DerivedData/Weapons/Build/Intermediates.noindex/Weapons.build/Debug-iphonesimulator/Weapons.build/Objects-normal/x86_64/RateController.o : /Users/wox/Desktop/ios11/Weapons/Weapons/AppDelegate.swift /Users/wox/Desktop/ios11/Weapons/Weapons/CardCell.swift /Users/wox/Desktop/ios11/Weapons/... | D |
$(H1 Chapter 9. Styles of Programming)
$(P
p1
)
$(P
p2
)
| D |
import b;
void main()
{
test();
}
| D |
module ecs.exceptions.entity;
public:
import ecs.exceptions.entity.entityDoesNotContainComponentException;
import ecs.exceptions.entity.entityAlreadyContainsComponentException;
import ecs.exceptions.entity.entityComponentIsNotDisabledException;
import ecs.exceptions.entity.entityDoesNotExistException; | 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 |
# FIXED
HAL/Target/CC2650/Drivers/hal_trng_wrapper.obj: C:/ti/simplelink_cc26x2_sdk_2_30_00_34/source/ti/ble5stack/hal/src/target/_common/hal_trng_wrapper.c
HAL/Target/CC2650/Drivers/hal_trng_wrapper.obj: C:/ti/simplelink_cc26x2_sdk_2_30_00_34/source/ti/devices/cc13x2_cc26x2_v1/inc/hw_types.h
HAL/Target/CC2650/Dri... | D |
/Users/lincolnnguyen/Downloads/yelpy_starter_1/DerivedData/Yelpy/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Combine.o : /Users/lincolnnguyen/Downloads/yelpy_starter_1/Pods/Alamofire/Source/MultipartFormData.swift /Users/lincolnnguyen/Downloads/yelpy_starter_1/Pods... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.build/SNIHandler.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/NIOTLS/SNIHandler.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAc... | D |
cause fear in
drive out by frightening
| D |
module player;
import laziness;
import unit;
import tec;
import job;
abstract class Player{
mixin Values!PlayerValues;
protected PUnit instance;
PUnit ins(){
if(instance is null){
instance = create;
}
return instance;
}
bool member;
private this(){
}
... | D |
/Users/chrisconner/Desktop/Checklists/DerivedData/Checklists/Build/Intermediates.noindex/Checklists.build/Debug-iphonesimulator/Checklists.build/Objects-normal/x86_64/AppDelegate.o : /Users/chrisconner/Desktop/Checklists/Checklists/AppDelegate.swift /Users/chrisconner/Desktop/Checklists/Checklists/ChecklistItem.swift /... | D |
a large mountain system in south-central Europe
any high mountain
| D |
/home/top/Workstation/LocalDriveB/Test/Rust/Rust-Wasm-contract (Kovan)/Rust-kovan-parity-/contract/target/wasm32-unknown-unknown/release/deps/libcfg_if-6a4e2b8bafca8b87.rlib: /home/top/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.6/src/lib.rs
/home/top/Workstation/LocalDriveB/Test/Rust/Rust-Wasm-contract... | D |
// Written in the D programming language.
/**
Source: $(PHOBOSSRC std/experimental/logger/core.d)
*/
module std.experimental.logger.core;
import core.sync.mutex : Mutex;
import std.datetime.date : DateTime;
import std.datetime.systime : Clock, SysTime;
import std.range.primitives;
import std.traits;
import std.experi... | D |
/***********************************************************************\
* lmapibuf.d *
* *
* Windows API header module *
* ... | D |
module android.java.java.util.concurrent.ScheduledThreadPoolExecutor_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import9 = android.java.java.util.Collection_d_interface;
import import4 = android.j... | D |
module ddebug.windows.mago;
version(Windows):
version(USE_MAGO):
import ddebug.windows.msdbg;
import dlangui.core.logger;
import core.atomic;
import std.string;
//const GUID CLSID_MAGO = {0xE348A53A, 0x470A, 0x4A70, [0x9B, 0x55, 0x1E, 0x02, 0xF3, 0x52, 0x79, 0x0D]};
const GUID IID_MAGO_NATIVE_ENGINE = {0x97348AC0, 0x... | D |
// Written in the D programming language.
/**
Standard I/O functions that extend $(B core.stdc.stdio). $(B core.stdc.stdio)
is $(D_PARAM public)ally imported when importing $(B std.stdio).
Source: $(PHOBOSSRC std/_stdio.d)
Copyright: Copyright Digital Mars 2007-.
License: $(HTTP boost.org/LICENSE_1_0.txt, Boost Li... | D |
/Users/apple/Desktop/save/HW9.01/build/HW9.01.build/Debug-iphonesimulator/HW9.01.build/Objects-normal/x86_64/CommHouseDetail.o : /Users/apple/Desktop/save/HW9.01/HW9.01/LegiTableViewController.swift /Users/apple/Desktop/save/HW9.01/HW9.01/LegiHouseTableViewController.swift /Users/apple/Desktop/save/HW9.01/HW9.01/BillNe... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
219.300003 -4.19999981 9.39999962 22.3999996 56 65 -10 121 7800 4.9000001 9.60000038 0.46641557 extrusives, basalts, andesites
321.100006 59.7999992 1.29999995 137.5 65 90 -43.5 146.800003 1350 2.4000001 2.5 0.518125744 sediments, limestones
-65... | D |
import std.algorithm;
import std.stdio;
import std.typecons;
struct Edge
{
int u;
int v;
int w;
}
class Result
{
int answer;
Edge [] edges;
}
auto solve (int n, int k)
{
auto res = new Result ();
with (res)
{
int total = 0;
int cur = k - 1;
foreach (step; 0..n - 1)
{
int u = step + 1;
int v = s... | D |
//T compiles:yes
//T lexer:yes
//T parser:yes
//T semantic:yes
//T retval:0
//T Test range foreach.
int main()
{
int i = 0;
foreach(j; 1 .. 5)
{
i += j;
}
assert(i == 10);
string str = "foobar";
string str2 = "raboof";
foreach(size_t j; 0 .. str.length)
{
assert(str[j] == str2[(str2.length - j) - 1])... | D |
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/SQL.build/SQLError.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/sql.git-2678105727451989607/Sources/SQL/SQLBind.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/sql.git-2678105727451989607/Sources/SQL/SQLJoinMethod.swift ... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
273 54 4 0 46 48 -33.5 151.300003 1769 6 6 0.982534559 intrusives, basalt
292.5 65.5 1.60000002 262.700012 34 39 -38.7999992 143.399994 7097 2.5 2.5 0.897163631 sediments, red-brown clays
264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 12... | D |
/Users/hannh/Documents/MyGitHub/ChartsTest2/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChartDataRendererBase.o : /Users/hannh/Documents/MyGitHub/ChartsTest2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/hannh/Documents/MyGitHub/ChartsTest2/Chart... | D |
/Users/bgaliev/Projects/PhotoViewer/PhotoViewer/XcodeBuild/Intermediates.noindex/PhotoViewer.build/Debug-iphonesimulator/PhotoViewer.build/Objects-normal/x86_64/Cancelable.o : /Users/bgaliev/Projects/PhotoViewer/PhotoViewer/PhotoViewer/Common/Entities/Page.swift /Users/bgaliev/Projects/PhotoViewer/PhotoViewer/PhotoView... | D |
# FIXED
FreeRTOS_Source/stream_buffer.obj: C:/mohd/______erts/FreeRTOSv10.1.1/FreeRTOS/Source/stream_buffer.c
FreeRTOS_Source/stream_buffer.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/include/stdint.h
FreeRTOS_Source/stream_buffer.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/include/sys/stdint.h... | D |
/******************************************************************************
WIP
License:
Copyright (c) 2011 Jarrett Billingsley
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... | D |
/**
* Configures and initializes the backend.
*
* 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)
* Source: $(LINK2 https://... | D |
// Written in the D programming language.
/**
* Serializer and Stream Deserializer usage
*/
import std.array;
import std.stdio;
import msgpack;
void main()
{
auto packer = packer(appender!(ubyte[])());
packer.packArray(null, true, "Hi!", -1, [1, 2]);
auto unpacker = StreamingUnpacker(packer.stream.... | D |
module unixtime;
import core.checkedint : adds, subs, muls;
import core.sys.posix.sys.time : time_t, timespec, timeval;
import core.time : dur, convert;
import std.conv : to;
import std.exception : enforce, ErrnoException;
import std.datetime : SysTime;
import std.format : format;
import std.math : abs;
import std.st... | D |
# FIXED
HAL/Common/hal_assert.obj: C:/ti/simplelink_cc26x2_sdk_2_30_00_34/source/ti/ble5stack/hal/src/common/hal_assert.c
HAL/Common/hal_assert.obj: C:/ti/simplelink_cc26x2_sdk_2_30_00_34/source/ti/ble5stack/hal/src/inc/hal_assert.h
HAL/Common/hal_assert.obj: C:/ti/simplelink_cc26x2_sdk_2_30_00_34/source/ti/ble5st... | D |
territory ruled by a prince
| D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.