content stringlengths 4 1.04M | lang stringclasses 358
values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
; v0.1.0.0 (built on 2021-09-29)
; https://github.com/HyperDbg/HyperDbg
[Components]
Name: "debuggers\hyperdbg"; Description: "HyperDbg"; Types: full; Check: Is64BitInstallMode
[Files]
Source: "{#MySrcDir}\debuggers\hyperdbg\*"; DestDir: "{app}\debuggers\hyperdbg"; Components: "debuggers\hyperdbg"; Flags: igno... | Inno Setup | 3 | reckdo/retoolkit | src/installer/debuggers/hyperdbg.iss | [
"Apache-2.0"
] |
#+TITLE: Nyxt Developer's Manual
# Please install org-make-toc so the the TOC below will be automatically
# generated.
# https://github.com/alphapapa/org-make-toc
* Table of contents :TOC:
:PROPERTIES:
:TOC: :include all :ignore this
:END:
:CONTENTS:
- [[#develo... | Org | 5 | atlas-engineer/next | documents/README.org | [
"BSD-3-Clause"
] |
DAFETF NAIF DAF ENCODED TRANSFER FILE
'DAF/CK '
'2'
'6'
'JUNO Reconstructed SC Bus CK File by NAIF/JPL '
BEGIN_ARRAY 1 755
'JUNO SC BUS REC ATT_RECON QUATS '
'1F536AFD75^A'
'1F536B5961^A'
'-EE48'
'1'
'3'
'1'
755
'18CDC18467200D^0'
'B5878A6ED39FB^0'
'-20DC004174A0AC^0'
'AFC0059B63D0D^0'
'344544FE3... | XC | 4 | ladoramkershner/ale | tests/pytests/data/JNCR_2016240_01M06152_V01/juno_sc_rec_160821_160827_v01_1_sliced_-61000.xc | [
"Unlicense"
] |
last yield continuation = nil
last result continuation = nil
yield (n, yield continuation) =
last yield continuation := yield continuation
last result continuation (nil, n)
coroutine (block) =
run (result continuation) =
last result continuation := result continuation
if (last yield conti... | PogoScript | 3 | featurist/pogoscript | examples/coroutines.pogo | [
"BSD-2-Clause"
] |
/* This is the StyleCatcher theme addition. Do not remove this block. */
@import url(<$mt:SupportDirectoryURL$>theme_static/rainier/css/base.css);
@import url(<$mt:SupportDirectoryURL$>theme_static/rainier/css/rainier-white/screen.css);
/* end StyleCatcher imports */
<mt:Assets type="image" tag="@SITE_COVER_IMAGE" lim... | MTML | 3 | movabletype/mt-theme-rainier | themes/rainier/templates/styles.mtml | [
"MIT"
] |
Import mojo
Import brl.httprequest
Class MyApp Extends App Implements IOnHttpRequestComplete
Field get_req:HttpRequest,post_req:HttpRequest
Method OnHttpRequestComplete:Void( req:HttpRequest )
If req=get_req
Print "Http GET complete!"
Else
Print "Http POST complete!"
Endif
Print "Status="+req.S... | Monkey | 4 | blitz-research/monkey | bananas/mak/httprequest/httprequest.monkey | [
"Zlib"
] |
"""
https://en.wikipedia.org/wiki/Component_(graph_theory)
Finding connected components in graph
"""
test_graph_1 = {0: [1, 2], 1: [0, 3], 2: [0], 3: [1], 4: [5, 6], 5: [4, 6], 6: [4, 5]}
test_graph_2 = {0: [1, 2, 3], 1: [0, 3], 2: [0], 3: [0, 1], 4: [], 5: []}
def dfs(graph: dict, vert: int, visited: list) -> li... | Python | 5 | JB1959/Python | graphs/connected_components.py | [
"MIT"
] |
// check-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#[derive(Clone)]
enum Test<'a> {
Slice(&'a isize)
}
fn main() {}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/issues/issue-15689-2.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
{
"title": "Billedbehandling"
} | JSON | 0 | domwillcode/home-assistant | homeassistant/components/image_processing/translations/da.json | [
"Apache-2.0"
] |
-----BEGIN PGP SIGNATURE-----
Version: Crypt::OpenPGP 1.06
iQEcBAABAgAGBQJSkoiwAAoJELjE6ZtM/TdMOi8H/RxlKR2wQp5l+AGoHnSSSuiT
uM6W0CLaxKHRWln5LsvZpKs5Sg5CHJLl2yULZwauX49dzjlSYPPfsAOHzbHDXqgu
92UjqCA25KGFcL2+jS1o8RDZBxkjc52+RkY4/f822t6RGfBHH3bjLO5hwkeK/6PZ
PQodAMyFA4CFV/k3bQ3SjQl65olsC33Y4CdskFqC2YlO7nduqo8mvvt7h1OwdzPd
... | Standard ML | 0 | weiminyu/nomulus | core/src/test/resources/google/registry/tmch/dnl-latest.sig | [
"Apache-2.0"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | TypeScript | 4 | kklt2002/vscode | src/vs/base/test/node/testUtils.ts | [
"MIT"
] |
package com.baeldung.metrics.core;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import com.codahale.metrics.CachedGauge;
public class ActiveUsersGauge extends CachedGauge<List<Long>> {
public ActiveUsersGauge(long timeout, TimeUnit timeoutUnit) {
super(timeout,... | Java | 4 | zeesh49/tutorials | metrics/src/main/java/com/baeldung/metrics/core/ActiveUsersGauge.java | [
"MIT"
] |
// https://dom.spec.whatwg.org/#nonelementparentnode
interface mixin NonElementParentNode {
Element? getElementById(DOMString elementId);
};
Document includes NonElementParentNode;
DocumentFragment includes NonElementParentNode;
| WebIDL | 4 | Bkucera/jsdom | lib/jsdom/living/nodes/NonElementParentNode.webidl | [
"MIT"
] |
import { test } from './file1';
import { test as test2 } from './file2';
import { test as test3 } from './file3';
import { test as test4 } from './file4';
var obj = { test, test2, test3, test4 };
var nested = { array: [ { test, test2, test3, test4 }]};
function f(test = test2, { test2: t2 } = { test2 }, { t3 = test3 ... | JavaScript | 3 | 1shenxi/webpack | test/cases/scope-hoisting/renaming-shorthand-5027/module.js | [
"MIT"
] |
import styles from '../styles/Home.module.css'
import Link from 'next/link'
export default function About() {
return (
<div className={styles.container}>
<main className={styles.main}>
<h1>About Page</h1>
<p className={styles.description}>
<Link href="/">
<a>← Go ... | JavaScript | 4 | blomqma/next.js | examples/with-playwright/pages/about.js | [
"MIT"
] |
nldge::ParticleLogLikeli()
{ decl it, ip,
mss, mbas, ms, my, mx, vw, vwi, dws,
mhi, mhdet, loglikeli, mData,
vxm, vxs, mxm=<>, mxsu=<>, mxsl=<>,
time, timeall, timeran=0, timelik=0, timefun=0, timeint=0, timeres=0;
mData = GetData(m_asY);
mhdet = sqrt((2*M_PI)^m_cY * determinant(m_mMSbE.^2)); // covaria... | Ox | 3 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Ox/particle.oxo | [
"MIT"
] |
--TEST--
Test file_get_contents() function : error when passing folder
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) === "WIN") { print "skip - not valid for Windows"; }
?>
--FILE--
<?php
file_get_contents(__DIR__);
?>
--EXPECTF--
Notice: file_get_contents(): Read of %d bytes failed with errno=21 Is a directory in %s on li... | PHP | 3 | NathanFreeman/php-src | ext/standard/tests/file/file_get_contents_error_folder.phpt | [
"PHP-3.01"
] |
;Change this file to customize zip2exe generated installers with a classic interface
Page directory
Page instfiles | NSIS | 0 | etaletai13/nwjs-builder-phoenix | assets/nsis/Contrib/zip2exe/Classic.nsh | [
"MIT"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | TypeScript | 5 | sbj42/vscode | src/vs/workbench/contrib/terminal/test/common/history.test.ts | [
"MIT"
] |
require("open3")
class System {
"""
System class. Holds system-wide relevant methods.
"""
def System exit {
"""
Exit the running Fancy process.
"""
Kernel exit()
}
def System exit: exitcode {
"""
@exitcode Exit code (Fixnum) to be returned to the parent process.
Exit the run... | Fancy | 4 | bakkdoor/fancy | lib/rbx/system.fy | [
"BSD-3-Clause"
] |
/*
** Case Study Financial Econometrics 4.3
**
** Purpose:
** Estimate all linear realized t-quasi GAS model parameters (gamma, omega, alpha and beta)
**
** Date:
** 10/01/2015
**
** Author:
** Tamer Dilaver, Koen de Man & Sina Zolnoor
**
** Supervisor:
** L.F. Hoogerheide & S.J. Koopman
**
*/
#include <... | Ox | 5 | tamerdilaver/Group4_Code_Data | CS_EMP_11_linear_t-QuasiRealGAS.ox | [
"MIT"
] |
key botID;
default
{
state_entry()
{
//Creates the bot in the sim
botID = botCreateBot("Test", "Bot", "", llGetPos(), BOT_CREATE_DEFAULT);
}
touch_start(integer n)
{
//Causes the bot to give the object that is in the
// object that contains this script to the specified
... | LSL | 4 | Asterionworld/ether | doc/bot LSL Functions/Examples/bot Give Object.lsl | [
"BSD-3-Clause"
] |
F_{n} \alpha \phi^{n} | TeX | 0 | sethaldini/paip-lisp | docs/images/chapter9/si2_e.tex | [
"MIT"
] |
#!/usr/bin/awk -f
# Copyright (c) 2016 Scott Vokes <vokes.s@gmail.com>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "A... | Awk | 4 | ckiee/dunst | test/greenest.awk | [
"BSD-3-Clause"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | CSS | 3 | sbj42/vscode | src/vs/workbench/contrib/debug/browser/media/debugToolBar.css | [
"MIT"
] |
(* Parsing yum's config files *)
module Yum =
autoload xfm
(************************************************************************
* INI File settings
*************************************************************************)
let comment = IniFile.comment "#" "#"
let sep = IniFile.sep "=" "="
let empty ... | Augeas | 4 | zwass/launcher | pkg/augeas/assets/lenses/yum.aug | [
"MIT"
] |
<!DOCTYPE html>
<html>
<head>
<!-- Styles -->
<link rel="stylesheet" type="text/css" media="screen, projection" href="css/pdftest.css" />
<style>
body {
width: 100%;
height: 100%;
background-color:#000;
}
body {
margin: 0;
padding: 0;
overflow: scroll;
position: r... | HTML | 3 | frank-dspeed/nw.js | test/sanity/issue6171-sdk-start-crash/index.html | [
"MIT"
] |
type DeepOptions = {
PropB: string;
};
type Options = {
/**
* This jsdoc will be ignored
*/
PropA: string;
TestProps: DeepOptions;
};
export default function Foo(props: Options) {
const { PropA, TestProps } = props;
return <div></div>;
}
| TypeScript | 4 | omidtajik/material-ui | packages/typescript-to-proptypes/test/options-test/input.tsx | [
"MIT"
] |
--TEST--
Hash: snefru algorithm
--FILE--
<?php
echo hash('snefru', ''), "\n";
echo hash('snefru', 'The quick brown fox jumps over the lazy dog'), "\n";
echo hash('snefru', 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'), "\n";
echo hash('snefru', 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa... | PHP | 4 | thiagooak/php-src | ext/hash/tests/snefru.phpt | [
"PHP-3.01"
] |
#!/bin/bash
sudo apt-get update
# also install ssh to avoid error of:
# --------------------------------------------------------------------------
# The value of the MCA parameter "plm_rsh_agent" was set to a path
# that could not be found:
# plm_rsh_agent: ssh : rsh
sudo apt-get install -y ssh
sudo apt-get install ... | Shell | 3 | Hacky-DH/pytorch | .circleci/docker/common/install_openmpi.sh | [
"Intel"
] |
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build libfuzzer
// +build libfuzzer
#include "go_asm.h"
#include "go_tls.h"
#include "textflag.h"
// Based on race_amd64.s; see commentary there.
#ifdef... | GAS | 3 | rleungx/go | src/runtime/libfuzzer_amd64.s | [
"BSD-3-Clause"
] |
--TEST--
Phar: copy-on-write test 3 [cache_list]
--INI--
default_charset=UTF-8
phar.cache_list={PWD}/copyonwrite3.phar.php
phar.readonly=0
--EXTENSIONS--
phar
--FILE_EXTERNAL--
files/write3.phar
--EXPECT--
bool(true)
bool(true)
bool(false)
bool(false)
ok
| PHP | 3 | NathanFreeman/php-src | ext/phar/tests/cache_list/copyonwrite3.phar.phpt | [
"PHP-3.01"
] |
/*
options := System getOptions(args) clone
options foreach(k, v,
if(v type == List type,
v foreach(i, j, writeln("Got unnamed argument with value: " .. j))
continue
)
writeln("Got option: " .. k .. " with value: " .. v)
)
*/
| Io | 3 | akluth/io | libs/iovm/io/_test/System.io | [
"BSD-3-Clause"
] |
package {
public class Test {
}
}
trace("//var a = new Array(\"a\", \"b\", \"c\");");
var a = new Array("a", "b", "c");
trace("//var b = new Array(1, 2, 3);");
var b = new Array(1, 2, 3);
trace("//var c = new Array(a, b);");
var c = new Array(a, b);
trace("//var d = new Array(\"str\", 123, undefined, null, true,... | ActionScript | 3 | Sprak1/ruffle | tests/tests/swfs/avm2/array_join/Test.as | [
"Apache-2.0",
"Unlicense"
] |
/* @generated */
digraph cfg {
}
| Graphviz (DOT) | 0 | JacobBarthelmeh/infer | infer/tests/codetoanalyze/cpp/frontend/include_header/include_only.cpp.dot | [
"MIT"
] |
@import '~library/style.less'; | Less | 0 | acidburn0zzz/parcel | packages/core/integration-tests/test/integration/less-webpack-import-error/index.less | [
"MIT"
] |
% Copyright (C) 1993 Digital Equipment Corporation
% All rights reserved.
% See the file COPYRIGHT for a full description.
% Last modified on Fri Jun 18 17:07:55 PDT 1993 by horning
list(E): trait
% Trait for sequences implemented as linked lists.
% L$Hd and L$Tl correspond to the .head and .tail fields.
includ... | LSL | 5 | jaykrell/cm3 | m3-libs/libm3/src/list/list.lsl | [
"BSD-4-Clause-UC",
"BSD-4-Clause",
"BSD-3-Clause"
] |
(defmodule ltest
(export all))
(include-lib "include/ltest-macros.lfe")
(include-lib "include/ltest-records.lfe")
(defun skip-test-patt () ".*_skip")
(defun skip-test-group-patt () "(.*)(_skip)")
;; XXX this code actually assumes two possible layouts for different versions of
;; rebar; those paths don't belong... | LFE | 4 | ioolkos/ltest | src/ltest.lfe | [
"BSD-3-Clause"
] |
-- Namespaces are currently allowed to be empty, as modules are, but also
-- require their contents to be indented to denote where they end.
-- Whereas a module's end is the end of the file.
-- Since there's no indentation each namespace ends imediately. So each Test
-- defines things at the module level, causing an `... | Idris | 4 | Qqwy/Idris2-Erlang | idris2/tests/idris2/namespace001/Dup.idr | [
"BSD-3-Clause"
] |
const { getProjectPath } = require('./get-project-path');
describe('getProjectPath helper', () => {
it('should return the calling dir path', () => {
const mockCallingDir = 'calling/dir';
const expected = `${mockCallingDir}/`;
// Add mock to test condition
process.env.CALLING_DIR = mockCallingDir;
... | JavaScript | 4 | rawatrahul/freeCodeCamp | tools/challenge-helper-scripts/helpers/get-project-path.test.js | [
"BSD-3-Clause"
] |
/*
Navicat Premium Data Transfer
Source Server : dev
Source Server Type : MySQL
Source Server Version : 50732
Source Host : localhost:3306
Source Schema : spring-boot-demo
Target Server Type : MySQL
Target Server Version : 50732
File Encoding : 65001
Date: 26/10/2020... | SQL | 4 | zcy2095/spring-boot-demo | demo-ureport2/doc/sql/t_user_ureport2.sql | [
"MIT"
] |
#!/bin/bash
# Assume x86_64 Ubuntu 16.04 base system
apt-get install build-essential \
gcc-5-multilib \
gcc-5-multilib-arm-linux-gnueabi \
gcc-5-multilib-arm-linux-gnueabihf \
gcc-5-multilib-mips-linux-gnu \
gcc-5-multilib-mips64-linux-gnuabi64 \
gcc-5-multilib-mips64el-linux-gnuabi64 \
gcc-5-multilib-mi... | Shell | 3 | OsmanDere/metasploit-framework | data/exploits/CVE-2017-7494/install-deps.sh | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
{:enums
{:Result
{:values [OK FAIL]}}
:queries
{:ok {:type :Result
:resolve :null}
:bad {:type (non-null :Result)
:resolve :null}}}
| edn | 3 | hagenek/lacinia | dev-resources/opt-req-enum.edn | [
"Apache-2.0"
] |
#foo(
test()'string
)
class #foo (
test() {
"5"
}
) { this }
a: class() as #foo
bob'heap string : a.test() | Objective-J | 0 | justinmann/sj | tests/interface3.sj | [
"Apache-2.0"
] |
QT.sql_private.VERSION = 5.9.4
QT.sql_private.name = QtSql
QT.sql_private.module =
QT.sql_private.libs = $$QT_MODULE_LIB_BASE
QT.sql_private.includes = $$QT_MODULE_INCLUDE_BASE/QtSql/5.9.4 $$QT_MODULE_INCLUDE_BASE/QtSql/5.9.4/QtSql
QT.sql_private.frameworks =
QT.sql_private.depends = core_private sql
QT.sql_private.use... | QMake | 2 | PLohrmannAMD/renderdoc | qrenderdoc/3rdparty/qt/x64/mkspecs/modules/qt_lib_sql_private.pri | [
"MIT"
] |
#include "caffe2/opt/shape_info.h"
#include "caffe2/core/operator.h"
#include "caffe2/core/tensor_int8.h"
#include "caffe2/utils/string_utils.h"
#include <cctype>
namespace caffe2 {
namespace {
bool isNumber(const std::string& s) {
bool empty = true;
for (const char c : s) {
if (std::isalpha(c)) {
retur... | C++ | 5 | Hacky-DH/pytorch | caffe2/opt/shape_info.cc | [
"Intel"
] |
#!/usr/bin/env node
const path = require('path')
const fs = require('fs')
const getSequenceGenerator = require('random-seed')
const generate = require('@babel/generator').default
const t = require('@babel/types')
const MIN_COMPONENT_NAME_LEN = 18
const MAX_COMPONENT_NAME_LEN = 24
const MIN_CHILDREN = 4
const MAX_CHIL... | JavaScript | 5 | nazarepiedady/next.js | bench/nested-deps/fuzzponent.js | [
"MIT"
] |
#define EMITTEDPARTICLE_DISTORTION
#include "emittedparticlePS_soft.hlsl"
| HLSL | 0 | rohankumardubey/WickedEngine | WickedEngine/shaders/emittedparticlePS_soft_distortion.hlsl | [
"MIT"
] |
$! File: curl_Startup.com
$!
$! $Id$
$!
$! Procedure to setup the CURL libraries for use by programs from the
$! VMS SYSTARTUP*.COM procedure.
$!
$! Copyright 2009 - 2020, John Malmberg
$!
$! Permission to use, copy, modify, and/or distribute this software for any
$! purpose with or without fee is hereby granted, provi... | DIGITAL Command Language | 4 | jjatria/curl | packages/vms/curl_startup.com | [
"curl"
] |
%{^
#include <pthread.h>
#ifdef ATS_MEMALLOC_GCBDW
#undef GC_H
#define GC_THREADS
#include <gc/gc.h>
#endif
#include "CATS/nproc.cats"
#include "pthread_mac.h"
%}
#include "share/atspre_staload.hats"
#include "share/HATS/atslib_staload_libats_libc.hats"
#include "DATS/shared.dats"
#include "$PATSHOMELOCS/ats-concurre... | ATS | 4 | lambdaxymox/polyglot | src/polyglot.dats | [
"BSD-3-Clause"
] |
/* Copyright (c) 2017-2019 Netronome Systems, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <single_ctx_test.uc>
#include "pkt_inc_pat_9K_x88.uc"
#include <config.h>
#include <gro_cfg.uc>
#include <global.uc>
#include <pv.uc>
#include <stdmac.uc>
#macro fail_alloc_macro
br... | UnrealScript | 4 | pcasconnetronome/nic-firmware | test/datapath/pv_seek_lin_words_9K_x88_test.uc | [
"BSD-2-Clause"
] |
CLASS ltcl_run_checks DEFINITION DEFERRED.
CLASS zcl_abapgit_filename_logic DEFINITION LOCAL FRIENDS ltcl_run_checks.
CLASS ltcl_run_checks DEFINITION FOR TESTING RISK LEVEL HARMLESS
DURATION SHORT FINAL.
PRIVATE SECTION.
DATA mo_dot TYPE REF TO zcl_abapgit_dot_abapgit.
METHODS:
setup,
file_t... | ABAP | 5 | IvxLars/abapGit | src/objects/core/zcl_abapgit_filename_logic.clas.testclasses.abap | [
"MIT"
] |
var $g i32
var $h i32
func $multiwayfunc ( var %n i32) i32 {
multiway (dread i32 %n) @labdft {
(add i32 (dread i32 $g, dread i32 $h)): goto @lab0
(dread i32 $h): goto @lab1
(constval i32 888): goto @lab0
(constval i32 'Y'): goto @lab0
(neg i32 (dread i32 $h)) : goto @lab9 }
@lab0
return (constval i32 -... | Maple | 3 | harmonyos-mirror/OpenArkCompiler-test | test/testsuite/irbuild_test/I0057-mapleall-irbuild-edge-multiway/Main.mpl | [
"MulanPSL-1.0"
] |
% :- library(test).
%:- multifile ytest:test/4.
:- source.
:- [library(ytest)].
:- [library(ytest/preds)].
meta_expand(InputCl, C1) :-
source_module(SM),
'$yap_strip_module'(SM:InputCl, M, ICl),
'$expand_a_clause'( M:ICl, SM, C1, _CO).
:- [meta_tests].
:- run_tests.
| Prolog | 3 | ryandesign/yap | regression/modules/meta.yap | [
"Artistic-1.0-Perl",
"ClArtistic"
] |
DAFETF NAIF DAF ENCODED TRANSFER FILE
'DAF/CK '
'2'
'6'
' < DAFCAT: CK CONCATENATION > '
BEGIN_ARRAY 1 19
'LRO_LROCNACR DATA TYPE 3 '
'1021C7912B1^C'
'1021C79B9469^C'
'-14E6A'
'-14C08'
'3'
'1'
19
'4ABD83D35E2DE^-2'
'-28456EF713458^-2'
'-27874B957BBE4^-1'
'-FFFCE4A6F74FF^0'
... | XC | 2 | ladoramkershner/ale | tests/pytests/data/M103595705LE/lrolc_2009181_2009213_v10_1_sliced_-85610.xc | [
"Unlicense"
] |
This help page was generated from [http://git.wikimedia.org/blob/mediawiki%2Fvagrant.git/HEAD/puppet%2Fmodules%2Fpayments%2Ffiles%2FMain_Page.wiki a file], please submit improvements back to that code repo.
__NOTOC__
Beware that you are using a '''beta''' version of the WMF Fundraising Paymentswiki development puppet... | MediaWiki | 5 | hpdang/mediawiki-vagrant | puppet/modules/payments/files/Main_Page.wiki | [
"MIT"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | CSS | 3 | sbj42/vscode | src/vs/workbench/browser/parts/panel/media/panelpart.css | [
"MIT"
] |
;; system.lsp -- system-dependent lisp code
; local definition for play
; this one is for Mac OS-X:
(if (not (boundp '*default-sf-format*))
(setf *default-sf-format* snd-head-wave))
(if (not (boundp '*default-sound-file*))
(compute-default-sound-file))
(if (not (boundp '*default-sf-dir*))
(setf *defaul... | Common Lisp | 5 | joshrose/audacity | lib-src/libnyquist/nyquist/sys/unix/osx/system.lsp | [
"CC-BY-3.0"
] |
FROM python:3.8.2-slim
# note: a single RUN to avoid too many image layers being produced
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install git apt-utils -y \
&& git config --global user.email "black@psf.github.com" \
&& git config --global user.name "Gallery/Black"
COPY gallery.py /
ENTRYPOINT ["py... | Dockerfile | 4 | StarryInternet/black | gallery/Dockerfile | [
"MIT"
] |
name = "TOML"
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
version = "1.0.0"
[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[targets]
test = ["Test"]
| TOML | 3 | vanillajonathan/julia | stdlib/TOML/Project.toml | [
"Zlib"
] |
fn main() {
#[clippy::author]
let _ = ::std::cmp::min(3, 4);
}
| Rust | 3 | Eric-Arellano/rust | src/tools/clippy/tests/ui/author/call.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
-- start query 46 in stream 0 using template query46.tpl
select
c_last_name,
c_first_name,
ca_city,
bought_city,
ss_ticket_number,
amt,
profit
from
(select
ss_ticket_number,
ss_customer_sk,
ca_city bought_city,
sum(ss_coupon_amt) amt,
sum(ss_net_profit) profit
from
store_sales,... | SQL | 3 | OlegPt/spark | sql/core/src/test/resources/tpcds-modifiedQueries/q46.sql | [
"Apache-2.0"
] |
# Copyright (c) 2020 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License.
Feature: Test match used in pipe
Background:
Given a graph with space named "nba"
Scenario: Order by after match
When executing query:
"""
MATCH (n:player{name:"Tim Duncan"})-[]-(m)... | Cucumber | 4 | liuqian1990/nebula | tests/tck/features/bugfix/MatchUsedInPipe.feature | [
"Apache-2.0"
] |
From d82434785ecab16223a0bd4ec8ede020bf244003 Mon Sep 17 00:00:00 2001
From: Keno Fischer <keno@juliacomputing.com>
Date: Mon, 1 Mar 2021 16:42:05 -0500
Subject: [PATCH 4/4] AArch64: Remove Bad optimization
Removes the code responsible for causing https://bugs.llvm.org/show_bug.cgi?id=49357.
A fix is in progress upstr... | Diff | 2 | jonas-schulze/julia | deps/patches/llvm-11-AArch64-FastIsel-bug.patch | [
"MIT"
] |
" Vim compiler file
" Compiler: Pylint for Python
" Maintainer: Daniel Moch <daniel@danielmoch.com>
" Last Change: 2016 May 20
if exists("current_compiler")
finish
endif
let current_compiler = "pylint"
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
command -nargs=* CompilerSet setlocal <args>
e... | VimL | 4 | uga-rosa/neovim | runtime/compiler/pylint.vim | [
"Vim"
] |
1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -90.00
-1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -... | Matlab | 1 | yinrun/LOPDC-Benchmarks | strippacking/matlab/sp-15-33-one.matlab | [
"MIT"
] |
#include "mop.h"
MODULE = Class::MOP::Package PACKAGE = Class::MOP::Package
PROTOTYPES: DISABLE
BOOT:
INSTALL_SIMPLE_READER_WITH_KEY(Package, name, package);
| XS | 1 | skington/Moose | xs/Package.xs | [
"Artistic-1.0"
] |
(import [hy.models.string [HyString]]
[hy.models.symbol [HySymbol]]
[hy.models.list [HyList]]
[hy.models.keyword [HyKeyword]]
[hy.models.expression [HyExpression]])
(defclass MatchFailure [Exception] [])
(defn match-failed []
(raise (MatchFailure "match failed")))
(defn try-func [f]... | Hy | 3 | ajnavarro/language-dataset | data/github.com/refi64/hyskell/ed88f8dc557b4392bae37ef2404cd5d2e7cbaa76/hyskell.hy | [
"MIT"
] |
<!DOCTYPE html>
<!--
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 ... | HTML | 4 | DominiqueDeCordova/echarts | test/dataset-performance.html | [
"Apache-2.0"
] |
%{
/******************************************************************************
*
* Module Name: aslcompiler.y - Bison/Yacc input file (ASL grammar and actions)
*
*****************************************************************************/
/*********************************************************************... | Yacc | 5 | piano1029/runtime | deps/acpica/source/compiler/aslcompiler.y | [
"Apache-2.0"
] |
Array<T> struct #RefType {
dataPtr pointer
count int
cons<T>(count int) {
numBytes := CheckedMath.mulPositiveSsize(count, sizeof(T))
result := Array<T> { dataPtr: ::currentAllocator.alloc(numBytes), count: count }
Memory.memset(result.dataPtr, 0, cast(numBytes, usize))
return result
}
fromTypedPtr(dataP... | mupad | 5 | jturner/muon | lib/containers.mu | [
"MIT"
] |
2016-03-07 17:43:27 Ben^_^ Oh denis you can't steam me on weekends, too many DOS games!
2016-03-07 17:43:45 Ben^_^ I can't put steam on my 120mhz Pentium! D:
2016-03-07 17:46:49 fsociety hahaha..... NOT ENOUGH DOS AND HIMEM.SYS
2016-03-07 17:47:32 Ben^_^ Haha oh man I had to throw some more stuff from my AUTOEXEC.BAT i... | IRC log | 0 | 0x4b1dN/2016-dots | misc/weechat/logs/irc.bitlbee.ben^_^.weechatlog | [
"MIT"
] |
--TEST--
bcpow() function
--EXTENSIONS--
bcmath
--INI--
bcmath.scale=0
--FILE--
<?php
echo bcpow("1", "2"),"\n";
echo bcpow("-2", "5", 4),"\n";
echo bcpow("2", "64"),"\n";
echo bcpow("-2.555", "5", 2),"\n";
?>
--EXPECT--
1
-32.0000
18446744073709551616
-108.88
| PHP | 4 | NathanFreeman/php-src | ext/bcmath/tests/bcpow.phpt | [
"PHP-3.01"
] |
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <math.h>
#include "time64.h"
#define myPUSHi(int) PUSHs(sv_2mortal(newSViv(int)));
#define myPUSHn(num) PUSHs(sv_2mortal(newSVnv(num)));
#define myPUSHs(str) PUSHs(sv_2mortal(str));
static const char * const dayname[] =
{"Sun", "Mon", "Tue"... | XS | 4 | userx14/y2038 | perl/Time-y2038/lib/Time/y2038.xs | [
"MIT"
] |
#!/usr/bin/osascript
# Dependency: Requires SideNotes (https://apptorium.com/sidenotes)
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title SideNotes create
# @raycast.mode silent
# @raycast.packageName SideNotes
# Optional parameters:
# @raycast.packageName SideNotes
# @raycast.icon images/sidenotes.... | AppleScript | 5 | daviddzhou/script-commands | commands/apps/sidenotes/sidenotes-create-note.applescript | [
"MIT"
] |
package com.baeldung.multipledb;
import java.util.HashMap;
import javax.sql.DataSource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.jdbc.DataSourceBuilder;
import org.springframework.context... | Java | 4 | flyingcanopy/tutorials | persistence-modules/spring-data-jpa/src/main/java/com/baeldung/multipledb/PersistenceUserAutoConfiguration.java | [
"MIT"
] |
var $g_i8_u <i8>
var $g_i8 <i8> = 8
var $g_u8_u <u8>
var $g_u8 <u8> = 8
var $g_i16_u <i16>
var $g_i16 <i16> = 16
var $g_u16_u <u16>
var $g_u16 <u16> = 16
var $g_i32_u <i32>
var $g_i32 <i32> = 32
var $g_u32_u <u32>
var $g_u32 <u32> = 32
var $g_i64_u <i64>
var $g_i64 <i64> = 0x123456789a
var $g_u64_u <u64>
var $g_u64 ... | Maple | 3 | harmonyos-mirror/OpenArkCompiler-test | test/testsuite/irbuild_test/I0038-mapleall-irbuild-edge-global/Main.mpl | [
"MulanPSL-1.0"
] |
extern int f(int x);
| Harbour | 0 | ueki5/cbc | test/src1.hb | [
"Unlicense"
] |
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
src: url(./web-font/KFOkCnqEu92Fr1MmgVxGIzQ.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(./web-font/KFOlCnqEu92Fr1MmSU5fChc-.woff) format('woff');
}
@font-face {
font... | CSS | 3 | ygyg70/quasar | extras/roboto-font-latin-ext/roboto-font-latin-ext.css | [
"MIT"
] |
#!/bin/bash
# Copyright 2017 gRPC authors.
#
# 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 t... | Shell | 4 | samotarnik/grpc | tools/distrib/pull_requests_interval.sh | [
"Apache-2.0"
] |
{{#hasAuthMethods}}
{{>libraries/ktor/_principal}}
if (principal == null) {
call.respond(HttpStatusCode.Unauthorized)
} else {
{{#examples}}
{{#-first}}
{{#lambda.indented}}{{>_response}}{{/lambda.indented}}
{{/-first}}
{{/examples}}
{{^examples}}
call.respond(HttpStatusCode.NotImplement... | HTML+Django | 3 | MalcolmScoffable/openapi-generator | modules/openapi-generator/src/main/resources/kotlin-server/libraries/ktor/_api_body.mustache | [
"Apache-2.0"
] |
<p class="lowercase">on cryptee, you can download <i>all your data, your documents, files and photos – everything –</i> directly inside our applications Cryptee Photos and Cryptee Docs. Everything you've uploaded, including these files' metadata can be accessed and downloaded in bulk directly inside Cryptee Docs & ... | Kit | 1 | pws1453/web-client | source/imports/app/account-tab-my-data-files-photos.kit | [
"MIT"
] |
sub main()
external()
end sub
function foo()
printStackTrace()
end function
| Brightscript | 2 | pureinertia/brs | test/e2e/resources/components/stack-trace/main.brs | [
"MIT"
] |
%h3 403 Forbidden
%hr
%p
Forbidden.
| Scaml | 1 | mohno007/skinny-framework | example/src/main/webapp/WEB-INF/views/error/403.html.scaml | [
"MIT"
] |
\section{Versions of {\tt append}}
\begin{code}
{-# LANGUAGE MagicHash #-}
module Append where
import GHC.Exts
import Types
\end{code}
\begin{code}
append_ :: [a] -> [a] -> [a]
append_ (x:xs) ys = x : (append_ xs ys)
append_ [] ys = ys
append_L_S_S :: String -> S Char -> S Char
append_L_S_S (a: b: c: d: e: a1: b1:... | Literate Haskell | 4 | ocharles/ghc | testsuite/tests/programs/cvh_unboxing/Append.lhs | [
"BSD-3-Clause"
] |
// @noEmit: true
// @allowJs: true
// @checkJs: true
// @Filename: a.js
// mixed prototype-assignment+function declaration
function C() { this.p = 1; }
C.prototype = { q: 2 };
const c = new C()
c.p
c.q
| TypeScript | 3 | nilamjadhav/TypeScript | tests/cases/conformance/salsa/typeFromPropertyAssignment27.ts | [
"Apache-2.0"
] |
/*************************************************************************
* *
* YAP Prolog *
* *
* Yap Prolog was developed at NCCUP - Universidade do Porto *
* *
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
* *
************************************... | Prolog | 4 | KuroLevin/yap-6.3 | pl/ground.yap | [
"Artistic-1.0-Perl",
"ClArtistic"
] |
(* ****** ****** *)
//
// HX-2013-11
//
// Implementing a variant of
// the problem of Dining Philosophers
//
(* ****** ****** *)
//
#include
"share/atspre_define.hats"
#include
"share/atspre_staload.hats"
//
(* ****** ****** *)
staload
UN = "prelude/SATS/unsafe.sats"
(* ****** ****** *)
staload "{$LIBATSHWXI}/teach... | ATS | 3 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/ATS/DiningPhil2_fork.dats | [
"MIT"
] |
import {mount} from 'enzyme';
import {AccountStore, Account, Actions, React} from 'nylas-exports';
import {ipcRenderer} from 'electron';
import AccountErrorNotification from '../lib/items/account-error-notif';
describe("AccountErrorNotif", function AccountErrorNotifTests() {
describe("when one account is in the `in... | JSX | 5 | cnheider/nylas-mail | packages/client-app/internal_packages/notifications/spec/account-error-notif-spec.jsx | [
"MIT"
] |
--TEST--
Bug #76839: socket_recvfrom may return an invalid 'from' address on MacOS
--EXTENSIONS--
sockets
--SKIPIF--
<?php
if (strtolower(substr(PHP_OS, 0, 3)) === 'win') {
die('skip not valid for Windows.');
}
--FILE--
<?php
// This bug only occurs when a specific portion of memory is unclean.
// Unfortunately, l... | PHP | 4 | NathanFreeman/php-src | ext/sockets/tests/bug76839.phpt | [
"PHP-3.01"
] |
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
f(x) &= \bigg\lvert 0 \bigg\rvert \\
f(x) &= \Bigg\lVert 0 \Bigg\rVert \\
\end{align}
\[
\begin{multlined}[b]
\framebox[4cm]{first} \\
\framebox[4cm]{last}
\end{multlined} = B
\begin{multlined}[b][7cm]
\framebox[4cm]{... | TeX | 2 | IngoMeyer441/vimtex | test/test-syntax/test-mathtools.tex | [
"MIT"
] |
module.exports (terms) = terms.term {
constructor (expr, implicit: false) =
self.isReturn = true
self.expression = expr
self.isImplicit = implicit
generateStatement (scope) =
self.generateIntoBuffer @(buffer)
if (self.expression)
buffer.write ('return ')
buffer.write (self.exp... | PogoScript | 3 | Sotrek/Alexa | Alexa_Cookbook/Workshop/StatePop/4_IOT/tests/node_modules/aws-sdk/node_modules/cucumber/node_modules/pogo/lib/terms/returnStatement.pogo | [
"MIT"
] |
# Copyright (c) 2021 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License.
Feature: Round the float/double when insert them into integer column
# issue https://github.com/vesoft-inc/nebula/issues/3473
Scenario: Insert float/double into a integer column
Given an empty graph... | Cucumber | 4 | liuqian1990/nebula | tests/tck/features/bugfix/RoundFloat.feature | [
"Apache-2.0"
] |
(set-logic AUFLIRA)
(set-info :source | Buggy list theorem |)
(set-info :smt-lib-version 2.0)
(set-info :category "crafted")
(set-info :status sat)
(declare-sort List 0)
(declare-fun cons (Real List) List)
(declare-fun nil () List)
(declare-fun car (List) Real)
(declare-fun cdr (List) List)
(declare-fun len (List) Int)... | SMT | 4 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/SMT/list4.smt2 | [
"MIT"
] |
Call argAt = method(
"evaluates and returns the argument at 'n'. this is just a short hand for 'call message evalArgAt(n, call ground)'",
n,
message evalArgAt(n, ground))
| Ioke | 2 | olabini/ioke | src/builtin/D10_call.ik | [
"ICU",
"MIT"
] |
module language/grandpa3 ---- the final model in fig 4.4
abstract sig Person {
father: lone Man,
mother: lone Woman
}
sig Man extends Person {
wife: lone Woman
}
sig Woman extends Person {
husband: lone Man
}
fact Biology {
no p: Person | p in p.^(mother+father)
}
fact Terminology {
wife = ~husband
}
f... | Alloy | 5 | Kaixi26/org.alloytools.alloy | org.alloytools.alloy.extra/extra/models/book/chapter4/grandpa3.als | [
"Apache-2.0"
] |
"""
Regression tests for proper working of ForeignKey(null=True). Tests these bugs:
* #7512: including a nullable foreign key reference in Meta ordering has
unexpected results
"""
from django.db import models
# The first two models represent a very simple null FK ordering case.
class Author(models.Model):
n... | Python | 4 | ni-ning/django | tests/null_fk_ordering/models.py | [
"CNRI-Python-GPL-Compatible",
"BSD-3-Clause"
] |
from fastapi import FastAPI
my_awesome_api = FastAPI()
@my_awesome_api.get("/")
async def root():
return {"message": "Hello World"}
| Python | 3 | Aryabhata-Rootspring/fastapi | docs_src/first_steps/tutorial002.py | [
"MIT"
] |
/*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/lice... | C | 4 | xumia/debian-openssl | crypto/store/store_local.h | [
"OpenSSL"
] |
(*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
module Ast = Flow_ast
module LMap = Loc_collections.LocMap
module LSet = Loc_collections.LocSet
open Insert_type_utils
open Reason
... | OCaml | 4 | zhangmaijun/flow | src/codemods/annotate_empty_object.ml | [
"MIT"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.