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 |
|---|---|---|---|---|---|
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
ClassCount=2
ResourceCount=2
NewFileInclude1=#include "stdafx.h"
Class1=CChildFrame
LastClass=CPortView
LastTemplate=CFormView
Resource1=IDR_PORT
Class2=CPortView
Resource2=IDD_FORMVIEW
[CLS:CChildFrame]
Type=0
HeaderFile=ChildFrame.h
Im... | Clarion | 2 | CarysT/medusa | Tools/CollectionPort/CollectionPort.clw | [
"MIT"
] |
package com.baeldung.jna;
import com.sun.jna.LastErrorException;
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Platform;
import com.sun.jna.Pointer;
public interface StdC extends Library {
StdC INSTANCE = Native.load(Platform.isWindows() ? "msvcrt" : "c", StdC.class );
Pointer mall... | Java | 4 | DBatOWL/tutorials | java-native/src/main/java/com/baeldung/jna/StdC.java | [
"MIT"
] |
vec3 a_position : POSITION;
vec2 a_texcoord0 : TEXCOORD0;
vec2 v_texcoord0 : TEXCOORD0 = vec2(0.0, 0.0); | Io | 2 | ValtoForks/EtherealEngine | engine_data/data/shaders/vs_clip_quad.io | [
"BSD-2-Clause"
] |
#!/usr/bin/env sh
# This scripts downloads the CIFAR10 (binary version) data and unzips it.
DIR="$( cd "$(dirname "$0")" ; pwd -P )"
cd "$DIR"
echo "Downloading..."
wget --no-check-certificate http://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz
echo "Unzipping..."
tar -xf cifar-10-binary.tar.gz && rm -f cifar-1... | Shell | 4 | Jiawei-Gu/caffe_gu | data/cifar10/get_cifar10.sh | [
"BSD-2-Clause"
] |
.included
color: red | Sass | 1 | acidburn0zzz/parcel | packages/core/integration-tests/test/integration/sass-include-paths-import/include-path/style.sass | [
"MIT"
] |
class Quine
{
static Void main()
{
s := "\n echo(\"class Quine\n {\n static Void main()\n {\n s := \$s.toCode\$s\")\n }\n}"
echo("class Quine
{
static Void main()
{
s := $s.toCode$s")
}
}
| Fantom | 3 | MakeNowJust/quine | quine.fan | [
"Beerware"
] |
Theo Van Gogh had shot the movie "Submission" with Ayaan Hirsi Ali, a well-known critic of Islam, about the abuse <MASK_REP> women in Muslim families.
The outlook for the global economy would have been very bleak over the past few months, the Institute declared: " <MASK_REP> are on a global decline."
I promise that ... | Mask | 0 | ZhenYangIACAS/WeTS | corpus/de2en/de2en.test1.mask | [
"Unlicense"
] |
---
permalink: {{ nb.metadata.get("plotly")["permalink"].replace("python/", "python/next/") }}
redirect_to: https://plot.ly/{{ nb.metadata.get("plotly")["permalink"] }}
sitemap: false
---
| Smarty | 1 | sgn/plotly.py | doc/next_redirect.tpl | [
"MIT"
] |
// This file is a part of Julia. License is MIT: https://julialang.org/license
/*
pointer hash table
optimized for storing info about particular values
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <limits.h>
#include "dtypes.h"
#include "hashing.h"
#include "ptrhash.... | C | 4 | greimel/julia | src/support/ptrhash.c | [
"Zlib"
] |
CREATE TABLE lists (
uuid text,
id bigserial PRIMARY KEY,
inserted_at timestamp without time zone DEFAULT timezone('utc' :: text, now()) NOT NULL,
updated_at timestamp without time zone DEFAULT timezone('utc' :: text, now()) NOT NULL
);
CREATE TABLE tasks (
task_text text NOT NULL,
complete boolean DEFAULT... | SQL | 4 | ProPiloty/supabase | examples/react-todo-list-collaborative/db/todo_list_schema.sql | [
"Apache-2.0"
] |
i 00001 17 24 02000 00 037 0003
i 00002 16 24 00100 00 042 0016
i 00003 00 005 2012 00 26 00044
i 00004 00 004 2013 00 27 00044
i 00005 00 015 0000 00 27 00044
i 00006 00 010 2014 00 006 2013
i 00007 00 005 2015 00 27 00044
i 00010 00 015 0000 00 27 00044
i 00011 00 010 2014 00 003 2013
i 00012 00 003 2014 00 003 2016
... | Octave | 0 | besm6/mesm6 | test/a+x_a-x_x-a/a+x_a-x_x-a.oct | [
"MIT"
] |
<template>
<uni-progress
class="uni-progress"
v-on="$listeners"
>
<div
:style="outerBarStyle"
class="uni-progress-bar"
>
<div
:style="innerBarStyle"
class="uni-progress-inner-bar"
/>
</div>
<template v-if="showInfo">
<p class="uni-... | Vue | 4 | 24minFan/uni-app | src/core/view/components/progress/index.vue | [
"Apache-2.0"
] |
package jadx.core.dex.instructions;
public enum InsnType {
CONST,
CONST_STR,
CONST_CLASS,
ARITH,
NEG,
NOT,
MOVE,
MOVE_MULTI,
CAST,
RETURN,
GOTO,
THROW,
MOVE_EXCEPTION,
CMP_L,
CMP_G,
IF,
SWITCH,
SWITCH_DATA,
MONITOR_ENTER,
MONITOR_EXIT,
CHECK_CAST,
INSTANCE_OF,
ARRAY_LENGTH,
FILL_ARRAY,... | Java | 3 | Dev-kishan1999/jadx | jadx-core/src/main/java/jadx/core/dex/instructions/InsnType.java | [
"Apache-2.0"
] |
{{- define "imagePullSecret" }}
{{- printf "{\"auths\": {\"%s\": {\"auth\": \"%s\"}}}" .Values.inf.registry.server (printf "%s:%s" .Values.inf.registry.login .Values.inf.registry.pwd | b64enc) | b64enc }}
{{- end }} | Smarty | 3 | slizard00/eShopOnContainers | k8s/helm/eshop-common/templates/_names.tpl | [
"MIT"
] |
class: draw;
dpi: 96;
size: A6*;
text {
text: "hello world";
position: 50% 20mm;
}
| CLIPS | 3 | asmuth-archive/travistest | test/draw/text_position.clp | [
"Apache-2.0"
] |
%define api.pure full
%define parse.error verbose
%code requires {
#pragma once
#include <string>
#include "tile/lang/ops.h"
#include "tile/lang/sym_poly.h"
#include "base/util/logging.h"
using vertexai::tile::math::Integer;
using vertexai::tile::math::Rational;
struct Context {
std::string id;
vertexai::tile:... | Yacc | 5 | redoclag/plaidml | tile/lang/tile.y | [
"Apache-2.0"
] |
--TEST--
Bug #39583 (FTP always transfers in binary mode)
--EXTENSIONS--
ftp
pcntl
--FILE--
<?php
$bug39583=1;
require 'server.inc';
$ftp = ftp_connect('127.0.0.1', $port);
if (!$ftp) die("Couldn't connect to the server");
var_dump(ftp_login($ftp, 'user', 'pass'));
$source_file = __FILE__;
$destination_file = basena... | PHP | 3 | NathanFreeman/php-src | ext/ftp/tests/bug39583.phpt | [
"PHP-3.01"
] |
USING: project-euler.002 tools.test ;
{ 4613732 } [ euler002 ] unit-test
{ 4613732 } [ euler002a ] unit-test
{ 4613732 } [ euler002b ] unit-test
| Factor | 2 | alex-ilin/factor | extra/project-euler/002/002-tests.factor | [
"BSD-2-Clause"
] |
>gi|4218935|gb|AF074388.1|AF074388 Sambucus nigra hevein-like protein HLPf gene, partial cds
ATGAAGTTAAGCACTCTTCTCATCTTATCTTTTCCTTTCCTGCTCGGTACTATTGTCTTTGCAGATGATG
CAGATAATGGCCCCTGGCAGTGTGGAAGGGATGCAGGTGGTGCCTTGTGTCATGATAATCTTTGTTGTAG
CTTTTGGGGCTTTTGTGGTAGCACATATCAGTACTGTGAAGATGGTTGCCAGAGTCAATGTAGGGATACC
TCACGTTTGA... | Nu | 1 | lukasz-kozlowski/biopython | Tests/Fasta/elderberry.nu | [
"BSD-3-Clause"
] |
--TEST--
Bug #48697 (mb_internal_encoding() value gets reset by parse_str() or mb_parse_str()
--EXTENSIONS--
mbstring
--FILE--
<?php
ini_set('mbstring.internal_encoding', 'ISO-8859-15');
ini_set('mbstring.encoding_translation', true);
var_dump(mb_internal_encoding());
mb_internal_encoding('UTF-8');
var_dump(mb_internal... | PHP | 3 | NathanFreeman/php-src | ext/mbstring/tests/bug48697.phpt | [
"PHP-3.01"
] |
/**
* This file is part of the Phalcon Framework.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Phalcon\Image\Adapter;
use Phalcon\Image\Enum;
use Phalcon\Image\Exception;
... | Zephir | 5 | tidytrax/cphalcon | phalcon/Image/Adapter/AbstractAdapter.zep | [
"BSD-3-Clause"
] |
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"><g><g class="svg-grey"><path d="M49.2,0.9v448.8c0,33.8,27.4,61.2,61.2,61.2h292.2c33.8,0,61.2-27.4,61.2-61.2V0.9H49.2z M150,453.5... | Kit | 3 | smola/language-dataset | data/github.com/bishless/static-tpa/587eb692b618fda0063824408a389dca17bcbd7a/_kit/_svg-icon_act-svcs.kit | [
"MIT"
] |
%!PS-Adobe-3.0
%%Creator: groff version 1.22.3
%%CreationDate: Wed Sep 7 17:16:26 2016
%%DocumentNeededResources: font Times-Roman
%%+ font Times-Bold
%%+ font Times-Italic
%%+ font Courier
%%DocumentSuppliedResources: procset grops 1.22 3
%%Pages: 16
%%PageOrder: Ascend
%%DocumentMedia: Default 612 792 0 () ()
%%Orie... | PostScript | 4 | bkmgit/ruby-packer | vendor/readline/doc/readline_3.ps | [
"MIT"
] |
-include ../tools.mk
all:
$(RUSTC) foo.rs -g -O
RUSTC="$(RUSTC_ORIGINAL)" $(call RUN,foo)
| Makefile | 3 | Eric-Arellano/rust | src/test/run-make-fulldeps/long-linker-command-lines/Makefile | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
--TEST--
ReflectionClass::getDefaultProperties()
--FILE--
<?php
class Foo {
public $test = "ok";
}
$class = new ReflectionClass("Foo");
$props = $class->getDefaultProperties();
echo $props["test"];
?>
--EXPECT--
ok
| PHP | 4 | thiagooak/php-src | ext/reflection/tests/012.phpt | [
"PHP-3.01"
] |
light 0,-10,10
//rotate
//stroke
fill
DECAY: 0.1
ballDetail 0.1
color hotPink,255
i: i + 0.01
for x: -20 to 25 step 4
for y: -10 to 14 step 4
push
move x,y,-1
rotate 270,0,1,0
rotate (1 - noise(i)) * 360
particle 0,noise(x,y,i) * 0.5,noise(y,x,i) * 0.3,0
// color hsb(100,255,255),HEALTH
rotate
box 0.2, 1, 2
... | Cycript | 2 | Psykopear/cyril | bin/data/code/1.cy | [
"MIT"
] |
/*
Copyright (c) Microsoft Corporation.
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... | CSS | 3 | burner/playwright | packages/playwright-core/src/web/traceViewer/ui/networkResourceDetails.css | [
"Apache-2.0"
] |
@import 'other3.scss';
$var: red;
.className {
background: $var;
color: yellow;
}
| SCSS | 4 | blomqma/next.js | test/integration/scss-fixtures/nm-module-nested/node_modules/example/other.scss | [
"MIT"
] |
/**
* 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.
*
*/
'use strict';
const babelRegister = require('@babel/register');
babelRegister({
ignore: [/[\\\/](build|server\/server|node_m... | JavaScript | 5 | GBKstc/react-analysis | fixtures/ssr2/server/server.js | [
"MIT"
] |
ruleset G2S.indy_sdk.wallet {
meta {
description <<
Wallet Module,
use example, use module G2S.indy_sdk.wallet alias wallet.
This Ruleset/Module provides...
>>
shares __testing, wallets, listDids,openWalletFun, openWallet, closeWallet,createWallet,newDid,openWalletFun,closeWalletF... | KRL | 4 | Picolab/G2S | krl/g2s.indy_sdk.wallet.krl | [
"MIT"
] |
OBTW
author: Ibrahim Hasan
comment: My first time to write in LOLCODE language it's hilarious
TLDR
HAI 1.2
I HAS A COUNTER ITZ 0
I HAS A COUNTER2 ITZ 0
IM IN YR LOOPY UPPIN YR COUNTER TIL BOTH SAEM COUNTER AN 10
IM IN YR LOOPO UPPIN YR COUNTER2 TIL BOTH SAEM COUNTER2 AN COUNTER
VISIBLE ... | LOLCODE | 3 | kennethsequeira/Hello-world | LOLCODE/LOL-Hello World.lol | [
"MIT"
] |
import React from 'react';
import { expect } from 'chai';
import { shallow } from 'enzyme';
import moment from 'moment';
import sinon from 'sinon-sandbox';
import CalendarMonth from '../../src/components/CalendarMonth';
import CalendarMonthGrid from '../../src/components/CalendarMonthGrid';
import getTransformStyles ... | JSX | 4 | tasdrake/react-dates | test/components/CalendarMonthGrid_spec.jsx | [
"MIT"
] |
/* No definition for ESP32-C3 target */
| Linker Script | 0 | lovyan03/esp-idf | components/bootloader/subproject/main/ld/esp32c3/bootloader.rom.ld | [
"Apache-2.0"
] |
Map { background-color:#fff; }
#admin {
line-color: #cccccc;
line-width: 1;
}
#water {
polygon-fill: #dddddd;
} | CartoCSS | 3 | BuloZB/mapbox-studio | test/fixtures-upload/style.mss | [
"BSD-3-Clause"
] |
very is_bork = false
| Dogescript | 0 | PinkDiamond1/dogescript | test/language-spec/bork/identifier-part/source.djs | [
"MIT"
] |
Length Array: {{ arr|length }}
Length Object: {{ obj|length }}
Length String: {{ str|length }}
Length No String: {{ no_str|length }}
Slice Array: {{ arr[0:]|join(',') }}
Slice Array: {{ arr[1:2]|join(',') }}
Slice Array: {{ arr[0:2]|join(',') }}
Slice Object: {{ obj[1:]|join(',') }}
Slice Object: {{ obj[1:2]|join(',') ... | Volt | 3 | tidytrax/cphalcon | tests/_data/fixtures/views/builtinfunction/index.volt | [
"BSD-3-Clause"
] |
"""Tests for the generic_hygrostat component."""
| Python | 0 | MrDelik/core | tests/components/generic_hygrostat/__init__.py | [
"Apache-2.0"
] |
package com.baeldung.tutorials.bookkeeper;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
impo... | Java | 4 | DBatOWL/tutorials | persistence-modules/apache-bookkeeper/src/test/java/com/baeldung/tutorials/bookkeeper/BkHelperLiveTest.java | [
"MIT"
] |
;; nyqmisc.lsp -- misc functions for nyquist
(init-global *snd-display-max-samples* 10000)
(init-global *snd-display-print-samples* 100)
; (snd-display sound) -- describe a sound
(defun snd-display (sound)
(let (t0 srate len extent dur samples)
(setf srate (snd-srate sound))
(setf t0 (snd-t0 sound))
(s... | Common Lisp | 4 | joshrose/audacity | nyquist/nyqmisc.lsp | [
"CC-BY-3.0"
] |
h1.text-error CoinRPC::ConnectionRefusedError
p Have you started bitcoind?
| Slim | 1 | gsmlg/peatio | app/views/errors/connection.html.slim | [
"MIT"
] |
.esh-orders_detail{min-height:80vh;}.esh-orders_detail-section{padding:1rem 0;}.esh-orders_detail-section--right{text-align:right;}.esh-orders_detail-titles{padding-bottom:1rem;padding-top:2rem;}.esh-orders_detail-title{text-transform:uppercase;}.esh-orders_detail-items--border{border-bottom:1px solid #eee;padding:.5r... | CSS | 2 | slizard00/eShopOnContainers | src/Web/WebMVC/wwwroot/css/orders/orders-detail/orders-detail.component.min.css | [
"MIT"
] |
package com.baeldung.truth;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.Multimap;
import com.google.common.collect.Range;
import com.google.common.collect.Table;
import com.google.common.collect.TreeBasedTable;
import com.google.common.collect.TreeMultiset;
import static com.ba... | Java | 5 | DBatOWL/tutorials | testing-modules/assertion-libraries/src/test/java/com/baeldung/truth/GoogleTruthUnitTest.java | [
"MIT"
] |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "pBKdH1A6EKoH"
},
"source": [
"# Demo code for \"[Similarity of Neural Network Representations Revisited](https://arxiv.org/abs/1905.00414)\"\n",
"\n",
"Copyright 2019 ... | Jupyter Notebook | 5 | deepneuralmachine/google-research | representation_similarity/Demo.ipynb | [
"Apache-2.0"
] |
module: dm-internals
synopsis: Mapping between "source positions" in a compilation context,
and runtime instruction addresses.
author: Paul Howard
Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc.
All rights reserved.
License: See License.txt in thi... | Dylan | 4 | kryptine/opendylan | sources/runtime-manager/debugger-manager/source-code-mapping.dylan | [
"BSD-2-Clause"
] |
FORMAT: 1A
# Machines API
# Group Machines
# Machines Collection [/machines]
## Create New Machine [POST]
+ Request (application/json)
{
"type": "bulldozer",
"name": "willy"
}
+ Response 201 (application/json)
{
"mesage": "Created"
}
## List A... | API Blueprint | 4 | tomoyamachi/dredd | packages/dredd-transactions/test/fixtures/apib/ordinary.apib | [
"MIT"
] |
const std = @import("std");
const expect = std.testing.expect;
const expectEqual = std.testing.expectEqual;
const expectError = std.testing.expectError;
test "break and continue inside loop inside defer expression" {
testBreakContInDefer(10);
comptime testBreakContInDefer(10);
}
fn testBreakContInDefer(x: usi... | Zig | 5 | mogud/zig | test/behavior/defer.zig | [
"MIT"
] |
/*
* KOTLIN CODEGEN BOX SPEC TEST (POSITIVE)
*
* SPEC VERSION: 0.1-300
* MAIN LINK: expressions, constant-literals, boolean-literals -> paragraph 1 -> sentence 2
* NUMBER: 18
* DESCRIPTION: The use of Boolean literals as the identifier (with backtick) in the typeAlias.
* NOTE: this test data is generated by Feat... | Kotlin | 4 | Mu-L/kotlin | compiler/tests-spec/testData/codegen/box/linked/expressions/constant-literals/boolean-literals/p-1/pos/2.18.kt | [
"ECL-2.0",
"Apache-2.0"
] |
#!/usr/bin/tclsh
set read_running 0
set write_running 0
set read_eof 0
set theend 0
set nread 0
set nwritten 0
proc ReadBack {fd} {
if { !$::write_running } {
puts stderr "ERROR: connection closed unexpectedly!"
set ::theend 1
return
}
set r [read $fd 4096]
if {$r == ""} {
if {[eof $fd]} {
puts st... | Tcl | 4 | attenuation/srs | trunk/3rdparty/srt-1-fit/scripts/tcp-echo-client.tcl | [
"MIT"
] |
import base64
import json
from localstack import config
from localstack.services.generic_proxy import ProxyListener
from localstack.services.infra import start_proxy
from localstack.utils import testutil
from localstack.utils.aws import aws_stack
from localstack.utils.aws.aws_stack import lambda_function_arn
from loca... | Python | 5 | localstack-dotnet/localstack | tests/integration/test_firehose.py | [
"Apache-2.0"
] |
- dashboard: attribution_dash
title: Attribution
layout: newspaper
elements:
- title: Number of Conversions
name: Number of Conversions
model: attribution
explore: conversion_attribution
type: single_value
fields: [conversion_attribution.share_of_conversions]
filters: {}
limit: 500
... | LookML | 4 | EffinAmazing/segment_attribution | attribution_dash.dashboard.lookml | [
"MIT"
] |
#! /bin/bash
set -e
if [ -z "${PYTORCH_REPO_PATH}" ]; then
echo "Please specify \`PYTORCH_REPO_PATH\`"
exit 1
fi
cd "${PYTORCH_REPO_PATH}"
# Helper function to manage conda environments.
make_clean_env(){
ENV_NAME="$1"
# Cleanup prior if it exists
conda env remove --name "${ENV_NAME}" 2> /dev/null |... | Shell | 4 | Hacky-DH/pytorch | torch/utils/benchmark/examples/prepare_e2e.sh | [
"Intel"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- generated with COPASI 4.27 (Build 217) (http://www.copasi.org) at 2020-04-29T11:47:15Z -->
<?oxygen RNGSchema="http://www.copasi.org/static/schema/CopasiML.rng" type="xml"?>
<COPASI xmlns="http://www.copasi.org/static/schema" versionMajor="4" versionMinor="27" versionDevel="2... | Component Pascal | 5 | pmendes/COVID19 | Models/SIDARTHE.cps | [
"MIT"
] |
BITS 32
inc eax
hlt
| Assembly | 0 | brenden7158/v86 | tests/expect/tests/inc.asm | [
"BSD-2-Clause"
] |
--TEST--
Test array_slice() function : usage variations - pass different int values as $length arg
--FILE--
<?php
/*
* Pass different integer values as $length argument to array_slice() to test behaviour
*/
echo "*** Testing array_slice() : usage variations ***\n";
$input = array ('one' => 1, 2 => 'two', 'three', 9... | PHP | 4 | NathanFreeman/php-src | ext/standard/tests/array/array_slice_variation6.phpt | [
"PHP-3.01"
] |
*,
*:before,
*:after {
box-sizing: border-box;
}
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
}
body {
margin: 0;
background:... | CSS | 4 | pipaliyajaydip/gatsby | examples/route-api/styles.css | [
"MIT"
] |
Extension { #name : #AsyncBehaviorAllSortedMethodsStream }
{ #category : #'*GToolkit-Extensions' }
AsyncBehaviorAllSortedMethodsStream >> gtCompositionChildren [
^ { instanceStream . classStream }
]
| Smalltalk | 3 | feenkcom/gtoolk | src/GToolkit-Extensions/AsyncBehaviorAllSortedMethodsStream.extension.st | [
"MIT"
] |
'0.1'
'
Copyright 2016 AUTHORS.
See the LICENSE file for license information and AUTHORS for authors.
'
["preFileIn" self] value
'-- Module body'
bootstrap addSlotsTo: bootstrap stub -> 'globals' -> 'modules' -> () From: ( | {
'ModuleInfo: Module: webBuilders InitialContents: FollowSlot'
... | Self | 5 | russellallen/self-webbuilder | objects/webBuilders.self | [
"MIT"
] |
ILY(X) ;IS IT A LEAP YEAR?
QUIT ((X#4=0)&(X#100'=0))!((X#100=0)&(X#400=0))
| M | 3 | LaudateCorpus1/RosettaCodeData | Task/Leap-year/MUMPS/leap-year.mumps | [
"Info-ZIP"
] |
name: PC bug report
description: For issues with running openpilot on PC
labels: ["PC"]
body:
- type: markdown
attributes:
value: >
Before creating a **bug report**, please check the following:
* Ensure you're running the latest openpilot release.
* Ensure there isn't an existin... | YAML | 4 | GratefulJinx77/comma | .github/ISSUE_TEMPLATE/pc_bug_report.yml | [
"MIT"
] |
PREFIX : <http://www.example.org/>
SELECT ?s (AVG(?o) AS ?avg)
WHERE {
?s ?p ?o
}
GROUP BY ?s
HAVING (AVG(?o) <= 2.0)
| SPARQL | 4 | alpano-unibz/ontop | test/sparql-compliance/src/test/resources/testcases-dawg-sparql-1.1/aggregates/agg-avg-02.rq | [
"Apache-2.0"
] |
#content
= email_default_heading(_("Hello, %{name}!") % { name: @resource.name })
%p
= _("Your GitLab account has been locked due to an excessive number of unsuccessful sign in attempts. You can wait for your account to automatically unlock in %{duration} or you can click the link below to unlock now.") % { dur... | Haml | 4 | Testiduk/gitlabhq | app/views/devise/mailer/unlock_instructions.html.haml | [
"MIT"
] |
#pragma once
#include "envoy/common/pure.h"
#include "envoy/stream_info/filter_state.h"
#include "absl/strings/string_view.h"
namespace Envoy {
namespace Router {
/**
* Contains a string in a form which is usable with FilterState and
* allows lazy evaluation if needed. All values meant to be accessible to the
* ... | C | 4 | dcillera/envoy | envoy/router/string_accessor.h | [
"Apache-2.0"
] |
{
version: '1.0.0',
componentsMap: [
{
package: '@alilc/antd-lowcode',
version: '0.5.4',
exportName: 'Typography',
main: 'dist/antd-lowcode.esm.js',
destructuring: true,
subName: 'Text',
componentName: 'Typography.Text',
},
{
package: '@alilc/antd-lowcode'... | JSON5 | 3 | raymondtm/lowcode-engine | modules/code-generator/test-cases/react-app/demo5/schema.json5 | [
"MIT"
] |
- dashboard: shipping_logistics__operations_overview
title: Shipping Logistics & Operations Overview
layout: newspaper
description: 'Shipping and logistics overview for an ecommerce store - showing things like how many orders are processing, and where things are shipping'
embed_style:
background_color: ''
... | LookML | 4 | Honcharov12/pylookml | lookml/tests/files/the_look/dashboards/shipping_logistics_overview.dashboard.lookml | [
"MIT"
] |
html {
head {
title(title)
}
body {
bodyContents()
}
} | Smarty | 1 | nicchagil/spring-framework | spring-webmvc/src/test/resources/org/springframework/web/servlet/view/groovy/layout-main.tpl | [
"Apache-2.0"
] |
-- Copyright 2021 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local json = require("json")
name = "Quake"
type = "api"
function start()
set_rate_limit(1)
end
function check()
local c
local cfg = datasrc_config()
i... | Ada | 4 | Elon143/Amass | resources/scripts/api/quake.ads | [
"Apache-2.0"
] |
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.2/notation" xmlns:tv.samsung.sdk="http://www.samsung.com/visualkit">
<tv.samsung.sdk:VisualKit xmi:id="_vi8fcOWTEeSqEtsrIqz2HA" ID="5ieq69tywid37" type="visualKit... | Kit | 3 | smola/language-dataset | data/github.com/hoomi/PhotoView_SamsungSmartTv/436e1cb9e5becf28f74a4b7f2c85af8c5898b44f/layout/Scene1.kit | [
"MIT"
] |
---
layout: default.liquid
templated: false
---
= header 1 =
some paragraph of text with *bold* text, _italic_ text, ^super^ text,
,,sub,, text, `code` text, $math$ text, TODO keywords, and [[links]].
== header 2 ==
{{{python
def my_func():
print('hello world!')
}}}
| test | test |
|------|------|
| 12 | 123... | MediaWiki | 3 | nott/cobalt.rs | tests/fixtures/vimwiki_not_templated_no_syntax/index.wiki | [
"MIT"
] |
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CMfctestDlg
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "mfctest.h"
ClassCount=4
Class1=CMfctestApp
Class2=CMfctestDlg
Class3=CAboutDlg
ResourceCount=3
Resource1=IDD_ABOUTBO... | Clarion | 2 | gxw1/review_the_national_post-graduate_entrance_examination | books_and_notes/professional_courses/Security/sources/extra_books/加密与解密第四版光盘资料/chap12/mfctest/mfctest.clw | [
"MIT"
] |
@program cmd-meetme.muf
1 1000 d
i
( cmd-meetme.muf by Natasha@HLM
A simple, free mjoin/msummon program for Fuzzball 6.
Invitations are stored on the inviter. For example, if A msummons B without
a prior invitation, A's _meetme/summon/#B property is set to the current
time. When X mjoins Y, meetme will look fo... | MUF | 4 | natmeox/hlm-suite | meetme.muf | [
"MIT"
] |
(kicad_pcb (version 20171130) (host pcbnew 5.1.6-c6e7f7d~87~ubuntu18.04.1)
(general
(thickness 1.6)
(drawings 186)
(tracks 160)
(zones 0)
(modules 22)
(nets 21)
)
(page A4)
(title_block
(title PSLab)
(date 2019-03-24)
(rev v6.1)
(company FOSSASIA)
)
(layers
(0 ... | KiCad | 3 | CloudyPadmal/pslab-grove-shield | schematics/PSLab-GroveShield.kicad_pcb | [
"Apache-2.0"
] |
IDENTIFICATION DIVISION.
PROGRAM-ID. OWO.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
PROCEDURE DIVISION.
DISPLAY " *Notices Bulge*"
DISPLAY
"__ ___ _ _ _ _ _ "
... | COBOL | 1 | doczkal/OwO | COBOL/OwO.cbl | [
"MIT"
] |
,y
20751,-16.91666666666667
20753,-17.16666666666667
20754,-17.66666666666667
20755,-17.25
20756,-17.08333333333333
20758,3.1666666666666714
20759,-16.75
20760,-17.0
20761,-17.0
20763,-17.0
20764,-17.0
20765,-17.16666666666667
20766,-17.16666666666667
20768,-17.0
20769,-16.75
20770,-16.91666666666667
20771,-16.91666666... | CSV | 0 | zduey/shap | data/NHANESI_y.csv | [
"MIT"
] |
.project-services {
margin: 0;
pre {
background: #efefef;
}
} | SCSS | 1 | jiyeking/yapi | exts/yapi-plugin-gen-services/Services/Services.scss | [
"Apache-2.0"
] |
<!DOCTYPE html>
<html>
<body>
<button data-cy="btn1" data-test="btn1" data-testid="btn1" id="btn1" class="btn1" type="button">data-cy</button>
<button data-test="btn2" data-testid="btn2" id="btn2" class="btn2" type="button">data-test</button>
<button data-testid="btn3" id="btn3" class="btn3" type="button"... | HTML | 3 | bkucera2/cypress | packages/driver/cypress/fixtures/studio-selectors.html | [
"MIT"
] |
import QtQuick 2.2
import QtQuick.Controls 1.0
import QtQuick.Layouts 1.0
import im.ricochet 1.0
ApplicationWindow {
id: chatWindow
width: 500
height: 400
title: contact !== null ? contact.nickname : ""
property alias contact: chatPage.contact
signal closed
onVisibleChanged: {
if ... | QML | 4 | garrettr/ricochet | src/ui/qml/ChatWindow.qml | [
"OpenSSL"
] |
ClearAll(a,b)
ClearTemporary()
T b^0 == 1
T b^1 == b
T b*1 == b
T 1*b == b
T -(a+b) == -a - b # lhs is expanded
T -1*(a+b) == -a - b
ClearAll(a,b)
T Chop(Abs(Apply(Plus,J(range(1, stop=10, length=100))) - 550.0)) == 0
T Chop(Abs(Apply(Times,J(range(1, stop=3.0, length=10))) - 583.0397134081362)) == 0
mx = Expan... | Objective-J | 4 | UnofficialJuliaMirrorSnapshots/Symata.jl-a906b1d5-d016-55c4-aab3-8a20cba0db2a | symata_test/expression_test.sj | [
"MIT"
] |
FORMAT: 1A
# Beehive API
## Honey [/honey{?beekeeper,amount}]
+ Parameters
+ beekeeper: Adam (string)
### Remove [DELETE]
+ Parameters
+ amount: 42 (number)
+ Request (application/json)
+ Parameters
+ beekeeper: Honza
+ Response 200
| API Blueprint | 3 | tomoyamachi/dredd | packages/dredd-transactions/test/fixtures/apib/parameters-inheritance.apib | [
"MIT"
] |
"""The bluetooth_tracker component."""
| Python | 0 | domwillcode/home-assistant | homeassistant/components/bluetooth_tracker/__init__.py | [
"Apache-2.0"
] |
package org.jetbrains.kotlin.aspects.refactoring;
import org.aspectj.lang.annotation.SuppressAjWarnings;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.search.SearchMatch;
import org.eclipse.jdt.internal.corext.refactoring.base.ReferencesInBinaryContext;
import org.eclipse.ltk.core.refactoring.R... | AspectJ | 4 | jan-zajic/kotlin-eclipse | kotlin-eclipse-aspects/src/org/jetbrains/kotlin/aspects/refactoring/KotlinBinaryReferencesAspect.aj | [
"Apache-2.0"
] |
/*
** Master Thesis Econometrics
**
** Purpose:
** For some fixed parameter values simulate and estimate T-GAS(1,1) model parameters
** with Maximum Likelikhood many times. s.t. stationarity conditions of Bougerol's Theorem
**
** Date:
** 15/08/2015
**
** Author:
** Tamer Dilaver
**
** Supervisor:
** Fran... | Ox | 5 | tamerdilaver/Simulation_t-GAS | SIM_t-GAS_5.ox | [
"MIT"
] |
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
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 a... | C++ | 5 | yage99/tensorflow | tensorflow/core/common_runtime/lower_case_op.cc | [
"Apache-2.0"
] |
insert into USERS(name, status, id) values('Peter', 1, 7);
insert into USERS(name, status, id) values('David', 1, 8);
insert into USERS(name, status, id) values('Ed', 1, 9);
| SQL | 2 | zeesh49/tutorials | spring-boot-persistence/src/test/resources/migrated_users.sql | [
"MIT"
] |
import scrapy
class NormalSpider(scrapy.Spider):
name = 'normal'
custom_settings = {
'ITEM_PIPELINES': {
'test_spider.pipelines.TestSpiderPipeline': 300
}
}
def parse(self, response):
pass
| Python | 3 | FingerCrunch/scrapy | tests/test_cmdline_crawl_with_pipeline/test_spider/spiders/normal.py | [
"BSD-3-Clause"
] |
[
{
"ProfileName": "X-Headers-Collaborator-combined",
"Name": "",
"Enabled": true,
"Scanner": 1,
"Author": "@Sy3Omda",
"Payloads": [
"true,http://{BC}"
],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [],
"Tags": [
"Collaborator",
... | BitBake | 3 | upenderadepu/BurpBounty | profiles/X-Headers-Collaborator-combined.bb | [
"Apache-2.0"
] |
template(name="spinnerWave")
.sk-spinner.sk-spinner-wave(class=currentBoard.colorClass)
+spinnerWaveRaw
template(name="spinnerWaveRaw")
.sk-rect1
|
.sk-rect2
|
.sk-rect3
|
.sk-rect4
|
.sk-rect5
|
| Jade | 4 | UBessle/wekan | client/components/main/spinner_wave.jade | [
"MIT"
] |
#!/bin/bash
# shellcheck disable=SC2155
# shellcheck disable=SC1090
# Originally from, https://stackoverflow.com/questions/33041109
# Modified to work in RVM and non RVM environments
#
# Xcode 7 (incl. 7.0.1) seems to have a dependency on the system ruby.
# xcodebuild has issues by using rvm to map to another non-syst... | Shell | 4 | Baumchen/fastlane | gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh | [
"MIT"
] |
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {createInjectableType, R3InjectableMetadata} from '../../injectable_compiler_2';
import * as o from '../../outp... | TypeScript | 5 | John-Cassidy/angular | packages/compiler/src/render3/partial/injectable.ts | [
"MIT"
] |
(*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*)
(* Title: Adaptation of example from HOL/Hoare/Separation
Author: Rafal Kolanski,... | Isabelle | 5 | pirapira/eth-isabelle | sep_algebra/ex/VM_Example.thy | [
"Apache-2.0"
] |
--- lenses/postgresql.aug.orig 2018-03-08 17:37:53 UTC
+++ lenses/postgresql.aug
@@ -70,6 +70,7 @@ let lns = (Util.empty | Util.comment | e
(* Variable: filter *)
let filter = (incl "/var/lib/pgsql/data/postgresql.conf" .
+ incl "%%PREFIX%%/pgsql/data/postgresql.conf" .
incl "/var/lib/pg... | Augeas | 3 | jrmarino/ravensource | bucket_61/augeas/patches/patch-lenses_postgresql.aug | [
"FTL"
] |
SELECT
count(),
sum(ns)
FROM
(
SELECT intDiv(number, NULL) AS k
FROM system.numbers_mt
GROUP BY k
)
ARRAY JOIN ns; -- { serverError 47 }
| SQL | 1 | pdv-ru/ClickHouse | tests/queries/0_stateless/01538_fuzz_aggregate.sql | [
"Apache-2.0"
] |
( Generated from test_oper_power_in.muv by the MUV compiler. )
( https://github.com/revarbat/pymuv )
: _main[ _ang -- ret ]
2 var! _a
3 var! _b
_a @ _b @ pow var! _c
8 var! _d
0
;
: __start
"me" match me ! me @ location loc ! trig trigger !
_main
;
| MUF | 2 | revarbat/pymuv | tests/test_oper_power_cmp.muf | [
"MIT"
] |
--TEST--
Bug #62922: Truncating entire string should result in string
--FILE--
<?php
var_dump(substr("", 0));
var_dump(substr("a", 1));
var_dump(substr("ab", 2));
?>
--EXPECT--
string(0) ""
string(0) ""
string(0) ""
| PHP | 4 | thiagooak/php-src | ext/standard/tests/streams/bug62922.phpt | [
"PHP-3.01"
] |
# Copyright (c) 2022 Fyde Innovations Limited and the openFyde Authors.
# Distributed under the license specified in the root directory of this project.
EAPI="5"
EGIT_REPO_URI="https://github.com/FydeOS/rpi-boot-bin.git"
inherit git-r3
DESCRIPTION="Raspberry Pi boot binary files"
HOMEPAGE="https://fydeos.io"
LICENSE... | Gentoo Ebuild | 4 | FydeOS/chromium_os_for_raspberry_pi | baseboard-rpi3/chromeos-base/rpi-boot-bin/rpi-boot-bin-0.0.1.ebuild | [
"BSD-2-Clause"
] |
[
{
"http://example/foo#bar": [{
"@value": "foobar"
}]
}
]
| JSONLD | 0 | donbowman/rdflib | test/jsonld/1.1/expand/pr24-out.jsonld | [
"BSD-3-Clause"
] |
i 00001 02277777 16400000
i 00002 17400031 16500001
i 00003 17500031 02200000
i 00004 02277777 02200000
i 00005 16400000 17400031
i 00006 16500001 17500031
i 00007 02302000 16400000
i 00010 17400031 16500001
i 00011 17500031 02302000
i 00012 16400000 17400031
i 00013 16500001 17500031
i 00014 02277771 02200010
i 00015 ... | Octave | 1 | x86128/pymesm | test/04_utc_wtc.oct | [
"MIT"
] |
KIDS Distribution saved on May 28, 2015@14:24:26
ADDED VACCINE GROUP, CNG 920.4, 920.5 FILE NAME, FIX SKHS
**KIDS**:PX*1.0*206^
**INSTALL NAME**
PX*1.0*206
"BLD",9189,0)
PX*1.0*206^PCE PATIENT CARE ENCOUNTER^0^3150528^y
"BLD",9189,1,0)
^^15^15^3150416^
"BLD",9189,1,1,0)
The Veterans Health Information Systems and Tech... | Genshi | 4 | mdgeek/VistA-FHIR-CWF | Scripts/Install/CWF/kid/24-PX_1_206_STS23.kid | [
"Apache-2.0"
] |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports System.Collections.Immutable
Imports System.Composition
Imports System.Diagnostics.CodeAnalysis
Imports System... | Visual Basic | 5 | ffMathy/roslyn | src/Features/VisualBasic/Portable/CodeFixes/IncorrectExitContinue/IncorrectExitContinueCodeFixProvider.vb | [
"MIT"
] |
Hello out there,
This is some kind of test-file...
test
test
test
| Inno Setup | 0 | JackeyEting/sample | atom-editorconfig-master/spec/fixtures/test.iss | [
"MIT"
] |
# $1 is the target name, eg. test.txt
# $2 in the same as $1. We'll talk about
# that in a later example.
# $3 is the temporary output file we should
# create. If this script is successful,
# redo will atomically replace $1 with $3.
if [ -e "$1.in" ]; then
# if a .in file exists, then do some
# text... | Stata | 5 | BlameJohnny/redo | docs/cookbook/defaults/default.do | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.