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
fileFormatVersion: 2 guid: 3b8b241bab4a4ac9a22fcce9c64f1242 timeCreated: 1614334463
Unity3D Asset
0
danyow/xLua
Assets/XLua/Src/Editor/LuaImporter.cs.meta
[ "BSD-3-Clause" ]
; https://github.com/Lexikos/AutoHotkey_L-Docs.git ; AutoHotkey_L https://lexikos.github.io/v2/docs/AutoHotkey.htm ;! keywords =========================================================== ; https://lexikos.github.io/v2/docs/Concepts.htm#names ; https://lexikos.github.io/v2/docs/v2-changes.htm as and Contains False in...
AutoHotkey
3
Novodes/notepad2
tools/lang/AutoHotkey_L.ahk
[ "MIT" ]
/* * Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license * that can be found in the license/LICENSE.txt file. */ package org.jetbrains.kotlin.daemon.common import org.jetbrains.kotlin.cli.common.repl.ILineId interface ReplStateFacadeAsync { suspend fun getId(): I...
Kotlin
4
Mu-L/kotlin
compiler/daemon/daemon-common/src/org/jetbrains/kotlin/daemon/common/ReplStateFacadeAsync.kt
[ "ECL-2.0", "Apache-2.0" ]
// Example of how to create basic boolean logic circuits. Starting with the // definition of basic boolean operations we build a half-adder and then // a 4-bit full adder using 4 registers: 2 summands, 1 sum, 1 carry // https://dev.to/davidk01/some-more-fun-with-alloy-5d7h // 0 or 1 let bits = { i: Int | 0 <= i && i ...
Alloy
5
c-luu/alloy-specs
simple-models/4-bit-adder/4-bit-adder.als
[ "Apache-2.0" ]
/* * Copyright 2018-2019 Jiří Janoušek <janousek.jiri@gmail.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of con...
Vala
4
xcffl/nuvolaruntime
src/nuvolakit-runner/core/MainLoopAdaptor.vala
[ "BSD-2-Clause" ]
#declare Index1 = 0; #while(Index1 <= 9) #declare Index2 = 0; #while(Index2 <= 19) sphere { <Index1, Index2, 0>, .5 } #declare Index2 = Index2 + 1; #end #declare Index1 = Index1 + 1; #end
POV-Ray SDL
3
btashton/pygments
tests/examplefiles/while.pov
[ "BSD-2-Clause" ]
#warning "Test.h found in SDK" extern int TestFrameworkFromSDK;
C
0
lwhsu/swift
validation-test/ClangImporter/Inputs/explicit-system-framework-path/sdkroot/Library/Frameworks/Test.framework/Headers/Test.h
[ "Apache-2.0" ]
/* * Copyright (c) 2004, Technische Universitaet Berlin * 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, * th...
nesC
4
mtaghiza/tinyos-main-1
apps/tests/TestAdc/TestAdcC.nc
[ "BSD-3-Clause" ]
(function(exports) { var invalidParamStr = 'Invalid parameter'; var missingParamStr = 'Missing parameter'; // app id LYUAppId = [NSBundle mainBundle].bundleIdentifier; // mainBundlePath LYUAppPath = [NSBundle mainBundle].bundlePath; // document path LYUDocPath = NSSearchPathForDirectoriesInDomains(NSDocument...
Cycript
4
smola/language-dataset
data/github.com/lvchenqiang/LYUCript/60f3a2750a79e31e3a4dc0f7f782ade9ca580f2b/lyucript.cy
[ "MIT" ]
%% %unicode 4.1 %public %class UnicodeGeneralCategory_4_1 %type int %standalone %include ../../resources/common-unicode-all-enumerated-property-java %% <<EOF>> { printOutput(); return 1; } \p{Cc} { setCurCharPropertyValue("Cc"); } \p{Cf} { setCurCharPropertyValue("Cf"); } \p{Cn} { setCurCharPropertyValue("Cn"); } ...
JFlex
3
Mivik/jflex
testsuite/testcases/src/test/cases/unicode-general-category/UnicodeGeneralCategory_4_1.flex
[ "BSD-3-Clause" ]
#!/usr/bin/env jq -f { "ulid": .ulid, "minTime": (.minTime / 1000 | todateiso8601), "maxTime": (.maxTime / 1000 | todateiso8601), "stats": .stats, "thanos": .thanos, "compaction": { "level": .compaction.level, "sources": .compaction.sources, "sourcesCount": .compaction.sources | length, "pa...
JSONiq
4
kiefersmith/thanos
scripts/thanos-block.jq
[ "Apache-2.0" ]
BEGIN { # If dir is a slash, return a slash and exit if (dir == "/") { print "/" exit } if (cwd !~ dir) { exit } # pos is a position of dir in cwd pos = rindex(cwd, dir) # If it is not find the dir in the cwd, then exit if (pos == 0) { print cwd ...
Awk
4
d3dave/enhancd
functions/enhancd/lib/to_abspath.awk
[ "MIT" ]
; RUN: llc -march=hexagon < %s | FileCheck %s ; CHECK-LABEL: test0000: ; CHECK: v0.h = vasl(v0.h,r0) define <32 x i16> @test0000(<32 x i16> %a0, i16 %a1) #0 { %b0 = insertelement <32 x i16> zeroinitializer, i16 %a1, i32 0 %b1 = shufflevector <32 x i16> %b0, <32 x i16> undef, <32 x i32> zeroinitializer %v0 = shl...
LLVM
3
medismailben/llvm-project
llvm/test/CodeGen/Hexagon/autohvx/shift-64b.ll
[ "Apache-2.0" ]
 BlessJ<
PureBasic
0
HeliWang/onnx-fixed
onnx/backend/test/data/node/test_less/output_0.pb
[ "MIT" ]
/* * Copyright 2006-2007 Adrian Thurston <thurston@colm.net> * Copyright 2011 Josef Goettgens * * 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 li...
Ragel in Ruby Host
4
podsvirov/colm-suite
ragel/rlscan.rl
[ "MIT" ]
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. Describe "Get-Uptime" -Tags "CI" { BeforeAll { $IsHighResolution = [system.diagnostics.stopwatch]::IsHighResolution # Skip Get-Uptime test if IsHighResolution = false # because stopwatch.GetTimestamp() return DateTime.U...
PowerShell
5
rdtechie/PowerShell
test/powershell/Modules/Microsoft.PowerShell.Utility/Get-Uptime.Tests.ps1
[ "MIT" ]
[[getting-started]] = Getting Started To use the Spring Boot Maven Plugin, include the appropriate XML in the `plugins` section of your `pom.xml`, as shown in the following example: [source,xml,indent=0,subs="verbatim,attributes",tabsize=4] ---- include::../maven/getting-started/pom.xml[tags=getting-started] ---- If ...
AsciiDoc
3
techAi007/spring-boot
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/getting-started.adoc
[ "Apache-2.0" ]
--TEST-- Test vfprintf() function : basic functionality - bool format --FILE-- <?php echo "*** Testing vfprintf() : basic functionality - using bool format ***\n"; // Initialise all required variables $format = "format"; $format1 = "%b"; $format2 = "%b %b"; $format3 = "%b %b %b"; $arg1 = array(TRUE); $arg2 = array(TRU...
PHP
4
NathanFreeman/php-src
ext/standard/tests/strings/vfprintf_basic4.phpt
[ "PHP-3.01" ]
import itertools from rich.style import Style from rich.table import _Cell from rich.tabulate import tabulate_mapping def test_tabulate_mapping(): # TODO: tabulate_mapping may not be needed shortly table = tabulate_mapping({"foo": "1", "bar": "2"}) assert len(table.columns) == 2 assert len(table.colum...
Python
3
traviscook21/rich
tests/test_tabulate.py
[ "MIT" ]
CREATE DATABASE IF NOT EXISTS `appwrite` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; USE `appwrite`; CREATE TABLE IF NOT EXISTS `template.abuse.abuse` ( `id` int(11) NOT NULL AUTO_INCREMENT, `_key` varchar(255) NOT NULL, `_time` varchar(45) NOT NULL, `_count` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`),...
SQL
4
nakshatrasinghh/appwrite
tests/resources/docker/mariadb/all.sql
[ "BSD-3-Clause" ]
package com.alibaba.json.bvt.parser; import java.io.StringReader; import junit.framework.TestCase; import org.junit.Assert; import com.alibaba.fastjson.JSONReader; public class JSONReaderScannerTest_enum extends TestCase { public void test_e() throws Exception { JSONReader reader = new JSONReader(new ...
Java
4
Czarek93/fastjson
src/test/java/com/alibaba/json/bvt/parser/JSONReaderScannerTest_enum.java
[ "Apache-2.0" ]
;------------------- Loanding the Simulated Annealing Library ------------------- __includes ["SimulatedAnnealing.nls"] ; ----------- One extension for weighted random choices ----------------- extensions [rnd] ;------------------ Model Specific Procedures ----------------------------------- patches-own [ value ...
NetLogo
5
fsancho/IA
04. Local Search/Simulated Annealing Sudoku.nlogo
[ "MIT" ]
BsizesJ 
PureBasic
0
cnheider/onnx
onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_3.pb
[ "MIT" ]
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/> <script src="js/jquery-3.0.0.min.js" type="text/javascript"></script> <script src="js/jquery.form.min.js" type="text/javascript"></script> <script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="js/watermark.js" type="te...
FreeMarker
4
jerrykcode/kkFileView
server/src/main/resources/web/commonHeader.ftl
[ "Apache-2.0" ]
<?xml version="1.0" encoding="UTF-8"?> <!-- generated with COPASI 4.30 (Build 235) (http://www.copasi.org) at 2020-12-24T14:28:54Z --> <?oxygen RNGSchema="http://www.copasi.org/static/schema/CopasiML.rng" type="xml"?> <COPASI xmlns="http://www.copasi.org/static/schema" versionMajor="4" versionMinor="30" versionDevel="2...
Component Pascal
4
MedAnisse/COPASI
speed-test-suite/Pollution_radau5.cps
[ "Artistic-2.0" ]
--TEST-- JIT MUL: 006 incorrect guard elimination --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update_protection=0 opcache.jit_buffer_size=1M opcache.protect_memory=1 --FILE-- <?php for ($i = 0; $i<6; $i++) { $a + -$a=&$a; $a = 3*$a + 0xff000; $a += $a; } ?> DONE --EXPECT-- DONE
PHP
2
NathanFreeman/php-src
ext/opcache/tests/jit/mul_006.phpt
[ "PHP-3.01" ]
package discriminant_specification is type Buffer(Size : Integer := 100) is record Pos : Integer := 0; Value : String(1 .. Size); end record; procedure append_ch(b : in out Buffer; ch : in character); procedure remove_ch(b : in out Buffer; ch : out character); function make_buf(si...
Ada
3
ouankou/rose
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/discriminant_specification.ads
[ "BSD-3-Clause" ]
/* Open Book Quotes Demo Demonstrates basic usage of the Open Book Arduino library. Displays four quotes in different languages on four pages. Navigate with the left/right or previous/next buttons. Use the up and down buttons to demonstrate Babel's localized case mapping by turning the quotes to uppercase o...
Arduino
5
gvvynplaine/The-Open-Book
Examples/Open_Book_Quotes_Demo/Open_Book_Quotes_Demo.ino
[ "MIT" ]
# Copyright (c) 2018-2021, Carnegie Mellon University # See LICENSE for details # Option Records # ============== # MP, BS, from 01/25/01, GAPv3.4.4 # general default search options SEARCH_DEFAULTS := rec( timeLimit := false, globalUnrolling := false, globalUnrollingMin := 8, globalUnrollin...
GAP
5
sr7cb/spiral-software
namespaces/spiral/search/optrec.gi
[ "BSD-2-Clause-FreeBSD" ]
namespace Ryujinx.HLE.HOS.Kernel.Ipc { enum ChannelState { NotInitialized, Open, ClientDisconnected, ServerDisconnected } }
C#
3
BSoDGamingYT/Ryujinx
Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs
[ "MIT" ]
#%RAML 1.0 Library # This is the file /libraries/resourceTypes.raml usage: This library defines the resource types for the API uses: myTraits: !include traits.raml resourceTypes: collection: usage: Use this resourceType to represent a collection of items description: A collection of <<resourcePathName|!uppe...
RAML
4
zeesh49/tutorials
raml/annotations/libraries/resourceTypes.raml
[ "MIT" ]
>gi|5817701|gb|AF142731.1|AF142731 Wisteria frutescens maturase-like protein (matK) gene, complete cds; chloroplast gene for chloroplast product GCTCCATTTTTTACACATTTCTATGAACTAATTGGTTCATCCATACCATCGGTAGGGTTTGTAAGACCAC GAGTGATCCAGAAAGGAATGAATGGAAAAAGCAGCATGTCGTATCAATGGCGAATTCTAAAAATATTTCA TTCGTATTGGACCCGGCCTAAATTTTTGTT...
Nu
0
lukasz-kozlowski/biopython
Tests/Fasta/wisteria.nu
[ "BSD-3-Clause" ]
[Exposed=Window] interface ValidityState { readonly attribute boolean valueMissing; readonly attribute boolean typeMismatch; readonly attribute boolean patternMismatch; readonly attribute boolean tooLong; readonly attribute boolean tooShort; readonly attribute boolean rangeUnderflow; readonly attribute bo...
WebIDL
3
Bkucera/jsdom
lib/jsdom/living/constraint-validation/ValidityState.webidl
[ "MIT" ]
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="20dp" android:height="20dp" android:viewportWidth="20" android:viewportHeight="20" android:tint="?attr/colorControlNormal"> <path android:fillColor="@android:color/white" android:pathData="M10,2L3.5,4.5v4...
XML
4
Imudassir77/material-design-icons
android/device/gpp_bad/materialiconssharp/black/res/drawable/sharp_gpp_bad_20.xml
[ "Apache-2.0" ]
var qrt = (\dur:1); var eth = (\dur:1/2); SkoarTestRunner(( ppp: [ "ppp ) pp ) p ) mp )", [(amp: 1/8), (amp: 2/8), (amp: 3/8), (amp: 4/8)] ], pppiano: [ "pppiano ) ppiano ) piano ) mezzopiano ) mpiano )", [(amp: 1/8), (amp: 2/8), (amp: 3/8), (amp: 4/8), (amp: 4/8)] ], fff: [ "fff ) ff ) forte ) mf ...
SuperCollider
3
sofakid/Skoarcery
SuperCollider/Testing/levels.scd
[ "Artistic-2.0" ]
BlimitJ
PureBasic
1
cnheider/onnx
onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_1.pb
[ "MIT" ]
--- title: My index page pagination: data: collections.foos size: 12 --- {% for foo in pagination.items -%} {{ foo.data.title }} {% endfor -%} {% for bar in collections.bars -%} {{ bar.data.title }} {% endfor -%}
Liquid
3
binyamin/eleventy
test/stubs/issue-115/index.liquid
[ "MIT" ]
<?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY owl "http://www.w3.org/2002/07/owl#" > <!ENTITY swrl "http://www.w3.org/2003/11/swrl#" > <!ENTITY swrlb "http://www.w3.org/2003/11/swrlb#" > <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > <!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" ...
Web Ontology Language
5
VishalS711/protege
protege-editor-owl/src/test/resources/ontologies/amino-acid.owl
[ "BSD-2-Clause" ]
Rules useless in parser due to conflicts 20 type: IDENTIFIER Stav 18 conflicts: 1 reduce/reduce Gramatika 0 $accept: file $end 1 file: %empty 2 | statement file 3 statement: expression ';' 4 expression: expression '=' expression 5 | '(' type ')' expression 6 ...
Bison
4
YKG/y
testdata/dev/so2.y.bison
[ "BSD-3-Clause" ]
= Command Line Interface showoff [global options] command [command options] [arguments...] - Use the command <tt>help</tt> to get a summary of commands - Use the command <tt>help command_name</tt> to get a help for <tt>command_name</tt> - Use <tt>--</tt> to stop command line argument processing; useful if your ar...
RDoc
3
mehrdad-shokri/showoff
documentation/COMMANDLINE.rdoc
[ "MIT" ]
2016-02-18 21:52:48 > fs0ciety (~whoami@c27-253-43-52.thoms4.vic.optusnet.com.au) has joined #linuxvoice 2016-02-18 21:52:48 [21:52] 2016-02-18 21:52:48 - Topic for #linuxvoice is "An exciting new IRC channel for an exciting new dawn of exciting Linux MAGAZINES. It's very exciting. In accordance with #linuxformat ...
IRC log
0
0x4b1dN/2016-dots
misc/weechat/logs/irc.freenode.#linuxvoice.weechatlog
[ "MIT" ]
CLASS zcl_abapgit_data_config DEFINITION PUBLIC FINAL CREATE PUBLIC . PUBLIC SECTION. INTERFACES zif_abapgit_data_config . PROTECTED SECTION. PRIVATE SECTION. DATA mt_config TYPE zif_abapgit_data_config=>ty_config_tt . METHODS dump IMPORTING !is_config TYPE zif_abapgit_data...
ABAP
4
Manny27nyc/abapGit
src/data/zcl_abapgit_data_config.clas.abap
[ "MIT" ]
/* https://jmblog.github.io/color-themes-for-google-code-prettify/themes/tomorrow.css */ pre.prettyprint .str { color: #718c00; } /* string */ pre.prettyprint .kwd { color: #8959a8; } /* keyword */ pre.prettyprint .com { color: #8e908c; } /* comment */ pre.prettyprint .typ { color: #4271ae; } /* type */ pre.prettyprint...
CSS
3
yangmengwei925/3d
manual/resources/lang.css
[ "MIT" ]
(defproject jepsen.keeper "0.1.0-SNAPSHOT" :injections [(.. System (setProperty "zookeeper.request.timeout" "10000"))] :description "A jepsen tests for ClickHouse Keeper" :url "https://clickhouse.com/" :license {:name "EPL-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :main jepsen.clickhouse...
Clojure
3
zzachimed/ClickHouse
tests/jepsen.clickhouse-keeper/project.clj
[ "Apache-2.0" ]
import 'dart:io'; import 'package:analyzer/dart/ast/token.dart'; main() { // save keywords to a text file final txtFile = File( '../../../modules/openapi-generator/src/main/resources/dart/dart-keywords.txt'); String txtString = ''; for (String keyword in Keyword.keywords.keys.toList()) { txtString +...
Dart
4
MalcolmScoffable/openapi-generator
bin/utils/dart-keywords/save-dart-keywords.dart
[ "Apache-2.0" ]
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. Describe 'ProxyCommand Tests' -Tag 'CI' { BeforeAll { $testCases = @( @{ Name = 'ValidateLengthAttribute'; ParamBlock = '[ValidateLength(1, 10)][int]${Parameter}' } @{ Name = 'ValidateRa...
PowerShell
4
rdtechie/PowerShell
test/powershell/engine/Basic/ProxyCommand.tests.ps1
[ "MIT" ]
lexer grammar CPP14_lexer_common; /* GJ20: covered by new Directive; see below. MultiLineMacro: '#' (~[\n]*? '\\' '\r'? '\n')+ ~ [\n]+ -> channel (HIDDEN); */ /* GJ20: covered by new Directive; see below. Directive: '#' ~ [\n]* -> channel (HIDDEN); */ // GJ20: every preprocessor directive is treated a line c...
ANTLR
5
yingkitw/Project_CodeNet
tools/spt-generator/src/com/ibm/ai4code/parser/cpp_multi/CPP14_lexer_common.g4
[ "Apache-2.0" ]
// scalac: -feature -Xfatal-warnings object O { implicit var x: Int = 0 }
Scala
1
jamesanto/scala
test/files/pos/setter-not-implicit.scala
[ "Apache-2.0" ]
m4_define([m4_list_declare], [m4_do( [m4_define([$1_GET], [m4_expand([m4_list_nth([$1], $][1)])])], [m4_define([$1_FOREACH], [m4_foreach([item], [m4_dquote_elt(m4_list_contents([$1]))], m4_quote($][1))])], )]) m4_define([m4_list_add], [m4_do( [m4_pushdef([_LIST_NAME], [[_LIST_$1]])], [m4_ifndef(_LIST_NAME, [m4_d...
M4
3
JavascriptID/sourcerer-app
src/test/resources/samples/langs/M4Sugar/list.m4
[ "MIT" ]
from tools.lib.url_file import URLFile def FileReader(fn, debug=False): if fn.startswith("http://") or fn.startswith("https://"): return URLFile(fn, debug=debug) return open(fn, "rb")
Python
4
shoes22/openpilot
tools/lib/filereader.py
[ "MIT" ]
// run-pass use std::ops::Index; fn bar() {} static UNIT: () = (); struct S; impl Index<fn()> for S { type Output = (); fn index(&self, _: fn()) -> &() { &UNIT } } fn main() { S.index(bar); S[bar]; }
Rust
4
Eric-Arellano/rust
src/test/ui/issues/issue-40085.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
"This is a simple top level function that does things." shared void coin() { } "Random function for ducks" void quack("Some string" String what, "Why not" Integer who, "Aww yeah" Float why) { }
Ceylon
0
Kopilov/ceylon-ide-intellij
testdata/documentation/toplevelFunction.ceylon
[ "Apache-2.0" ]
serverCode =: 0 : 0 //css_using MicroJ //css_using System.IO //css_using System.Collections.Generic //css_using System.Linq //css_using System.Text //css_using System.Threading.Tasks //css_using System.Net //css_using System.Threading //css_using System.Text.RegularExpressions //css_ref System.Web.Extensions ThreadSta...
J
3
joebo/microj
examples/webrepl/server.ijs
[ "MIT" ]
<GameFile> <PropertyGroup Name="billardsMainLayer" Type="Layer" ID="95e8d62c-fcf1-484e-b5e7-82c6bf296eb8" Version="3.10.0.0" /> <Content ctype="GameProjectContent"> <Content> <Animation Duration="0" Speed="1.0000" /> <ObjectData Name="Layer" Tag="73" ctype="GameLayerObjectData"> <Size X="113...
Csound
3
zhake911/zhuoqiuStudio
CocosStudio/cocosstudio/UI/Billiards/billardsMainLayer.csd
[ "Apache-2.0" ]
#!/bin/bash # Copyright 2016 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
warlock135/grpc
tools/distrib/check_trailing_newlines.sh
[ "Apache-2.0" ]
export { borders } from "./borders" export { breakpoints, breakpointsArray } from "./breakpoints" export { colors } from "./colors" export { fonts, fontsLists } from "./fonts" export { fontSizes, fontSizesPx, fontSizesRaw } from "./font-sizes" export { fontWeights } from "./font-weights" export { letterSpacings } from ...
JavaScript
3
JQuinnie/gatsby
packages/gatsby-design-tokens/src/index.js
[ "MIT" ]
[package] name = "cargo-fmt-test" version = "0.1.0" authors = ["calebcartwright"] edition = "2018" [dependencies] indexmap = "1.0.2" [workspace] members = [ "dependency-dir-name", ]
TOML
2
ohno418/rust
src/tools/rustfmt/tests/cargo-fmt/source/divergent-crate-dir-names/Cargo.toml
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
--TEST-- Bug #75079 variation without traits --FILE-- <?php class Foo { private static $bar = 123; static function test(){ return function(){ return function(){ return Foo::$bar; }; }; } } $f = Foo::test(); var_dump($f()()); class A{} $a = new A;...
PHP
3
thiagooak/php-src
Zend/tests/bug75079_2.phpt
[ "PHP-3.01" ]
# This file is part of NIT ( http://www.nitlanguage.org ). # # Copyright 2013 Matthieu Lucas <lucasmatthieu@gmail.com> # # 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.apach...
Nit
5
irr/nit-labs
curl_http.nit
[ "Apache-2.0" ]
import java.util.ArrayList; import java.util.List; import java.util.Random; import org.opencv.core.*; import org.opencv.calib3d.Calib3d; import org.opencv.highgui.HighGui; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; class PerspectiveCorrectionRun { void perspectiveCorrection (String...
Java
5
suryakantpandey/opencv
samples/java/tutorial_code/features2D/Homography/PerspectiveCorrection.java
[ "BSD-3-Clause" ]
"""Constants for the Whirlpool Sixth Sense integration.""" DOMAIN = "whirlpool" AUTH_INSTANCE_KEY = "auth"
Python
2
MrDelik/core
homeassistant/components/whirlpool/const.py
[ "Apache-2.0" ]
.. meta:: :description: Deploy Hasura GraphQL engine :keywords: hasura, docs, deployment .. _deployment: Deploying Hasura GraphQL engine =============================== .. contents:: Table of contents :backlinks: none :depth: 1 :local: Deployment guides ----------------- This section contains guides to...
reStructuredText
4
gh-oss-contributor/graphql-engine-1
docs/graphql/core/deployment/index.rst
[ "Apache-2.0", "MIT" ]
-- OOA PARSER VALIDATION FUNCTIONS .select many s_syncs from instances of S_SYNC where ( "$U_{selected.Descrip:ParserValidateFunction}" == "TRUE" ) .for each s_sync in s_syncs INSERT INTO S_SYNC VALUES ( ${s_sync.Sync_ID}, ${s_sync.Dom_IDdeprecated}, '${s_sync.Name}', '', '', ${s_sync.DT_ID}, ${s_sync.Suc_Pars} ); .end...
Arc
3
FMAY-Software/bridgepoint
src/org.xtuml.bp.als/arc/ooa_functions.arc
[ "Apache-2.0" ]
{:linters {:unresolved-symbol {:exclude [(compojure.api.sweet/defroutes)]} :refer-all {:exclude [clj-time.jdbc]} } }
edn
3
esabol/super-linter
TEMPLATES/.clj-kondo/config.edn
[ "MIT" ]
{ "patcher" : { "fileversion" : 1, "appversion" : { "major" : 7, "minor" : 3, "revision" : 5, "architecture" : "x64", "modernui" : 1 } , "rect" : [ 143.0, 146.0, 1282.0, 485.0 ], "bgcolor" : [ 0.0, 0.0, 0.0, 1.0 ], "editing_bgcolor" : [ 0.239216, 0.254902, 0.278431, 1.0 ], ...
Max
3
smith-xyz/logue-sdk
devboards/rev_a/devboard.maxpat
[ "BSD-3-Clause" ]
.\" ************************************************************************** .\" * _ _ ____ _ .\" * Project ___| | | | _ \| | .\" * / __| | | | |_) | | .\" * | (__| |_| | _ <| |___ .\" * ...
Groff
4
striezel/curl
docs/libcurl/opts/CURLOPT_CAINFO_BLOB.3
[ "curl" ]
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/> <xsl:include href="stylesheet-common...
XSLT
4
lmwnshn/postgres
doc/src/sgml/stylesheet-fo.xsl
[ "PostgreSQL" ]
type Foo3* = object a1: int
Nimrod
2
JohnAD/Nim
tests/errmsgs/m8794.nim
[ "MIT" ]
// @allowJs: true // @checkJs: true // @noEmit: true // @Filename: /a.js // Bad: missing a type /** @typedef T */ const t = 0; // OK: missing a type, but have property tags. /** * @typedef Person * @property {string} name */ /** @type Person */ const person = { name: "" };
TypeScript
4
nilamjadhav/TypeScript
tests/cases/compiler/jsdocTypedefMissingType.ts
[ "Apache-2.0" ]
ng_opts='addon asset-sizes b build completion d destroy doc e2e g generate get github-pages:deploy gh-pages:deploy h help i init install lint make-this-awesome new s serve server set t test update v version -h --help' _ng_completion () { local words cword opts read -Ac words read -cn cword let cword-=1 case...
Shell
4
chensanle/ohmyzsh
plugins/ng/ng.plugin.zsh
[ "MIT" ]
Prefix(:=<http://example.org/>) Ontology(:ParentOntology Import( <http://localhost:10000/circular_child.owl> ) )
Web Ontology Language
3
jmcmurry/SciGraph
SciGraph-core/src/test/resources/ontologies/import/circular_parent.owl
[ "Apache-2.0" ]
KIDS Distribution saved on Jun 08, 2021@13:24:22 Test Patch SAMI*18.0*12 SEQ #12 T1 (1.18.0.12-t1-i12) **KIDS**:SAMI*18.0*12^ **INSTALL NAME** SAMI*18.0*12 "BLD",11510,0) SAMI*18.0*12^SAMI^0^3210608^n "BLD",11510,4,0) ^9.64PA^^ "BLD",11510,6) 1^12 "BLD",11510,6.3) 1 "BLD",11510,"KRN",0) ^9.67PA^1.5^25 "BLD",11510,"KRN...
Genshi
4
OSEHRA/SAMI-VAPALS-ELCAP
dist/18-12/t1/sami-1.18.0.12-t1-i12.kid
[ "Apache-2.0" ]
; inherits: c [ (field_declaration_list) (class_specifier) (condition_clause) ] @indent
Scheme
1
hmac/nvim-treesitter
queries/cpp/indents.scm
[ "Apache-2.0" ]
/*EXPECTED hello world! */ class Test { static function run() : void { // console.log("hello world!"); log "hello world!"; } }
JSX
4
websharks/ace-builds
demo/kitchen-sink/docs/jsx.jsx
[ "BSD-3-Clause" ]
<h1>P0 Experiment 4: Gossip</h1> <p>Purpose: Stress P2P layer with and without boundary node rate limiting and having a lot of clients (currently not investigated by the networking team).<br /> See presentation from networking team.</p> <pre> Topology: 13 node subnet, 1 machine NNS Deploy one instance of the counter ...
Harbour
3
3cL1p5e7/ic
scalability/templates/run_gossip_experiment.html.hb
[ "Apache-2.0" ]
#include <Wire.h> #include <Servo.h> #include <CapSense.h> String inputString = ""; // a string to hold incoming data boolean inputComplete = false; // whether the string is complete boolean sendSensors = false; long count_timer = 0; /* RX commands: 0x1: reset board (turn all off and default servo's...
Arduino
4
HannesGitH/chrome-extensions-samples
apps/samples/serial/adkjs/firmware/demokitclient/demokitclient.ino
[ "Apache-2.0" ]
QT.webchannel_private.VERSION = 5.9.4 QT.webchannel_private.name = QtWebChannel QT.webchannel_private.module = QT.webchannel_private.libs = $$QT_MODULE_LIB_BASE QT.webchannel_private.includes = $$QT_MODULE_INCLUDE_BASE/QtWebChannel/5.9.4 $$QT_MODULE_INCLUDE_BASE/QtWebChannel/5.9.4/QtWebChannel QT.webchannel_private.fra...
QMake
1
PLohrmannAMD/renderdoc
qrenderdoc/3rdparty/qt/x64/mkspecs/modules/qt_lib_webchannel_private.pri
[ "MIT" ]
%lex %% \s+ /* skip */ ^[^\d\W]\w* return 'IDENTIFIER'; [0-9]+("."[0-9]+)?\b return 'NUMBER'; "-" return "-"; "+" return "+"; "/" return "/"; "*" return "*"; "(" return "("; ")" retu...
Bison
4
giuseppemag/ts-bccc-meta-interpreter
python_parser/python.bison
[ "MIT" ]
a { value: #0h\61sh }
CSS
0
mengxy/swc
crates/swc_css_parser/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css
[ "Apache-2.0" ]
-- A test suite for IN JOINS in parent side, subquery, and both predicate subquery -- It includes correlated cases. -- There are 2 dimensions we want to test -- 1. run with broadcast hash join, sort merge join or shuffle hash join. -- 2. run with whole-stage-codegen, operator codegen or no codegen. --CONFIG_DIM1 sp...
SQL
5
akhalymon-cv/spark
sql/core/src/test/resources/sql-tests/inputs/subquery/in-subquery/in-joins.sql
[ "Apache-2.0" ]
// GUnit.grace // GUnit project // // Created by Andrew Black on 6/26/12. import "mirrors" as mirror type Assertion = { assert(bb:Boolean)description(str:String) -> Done deny(bb:Boolean)description (str:String) -> Done assert(bb:Boolean) -> Done deny(bb:Boolean)-> Done assert(s1:Object)...
Grace
5
smola/language-dataset
data/github.com/rogrush/grace-dictionary/f22c3f8233dc57d2e762c50ed5cdf15d1ec4ab84/gUnit.grace
[ "MIT" ]
#tag Class Private Class ProxyEngineCreator Inherits libcURL.ProxyEngine #tag Method, Flags = &h0 Sub Constructor(Owner As libcURL.EasyHandle) ' This class exists solely to protect the superclass Constructor from being called ' from outside the libcURL module. // Calling the overridden superclass co...
REALbasic
4
charonn0/RB-libcURL
libcURL/ProxyEngineCreator.rbbas
[ "MIT" ]
; RUN: llvm-as -disable-output %s -o - 2>&1 | FileCheck %s source_filename = "t.c" target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.12.0" define void @f() !dbg !4 { entry: ; CHECK: scope points into the type hierarchy ; CHECK: DILocation ret void, !dbg !7 } define v...
LLVM
2
medismailben/llvm-project
llvm/test/Verifier/DILocation-parents.ll
[ "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. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System...
C#
4
frandesc/roslyn
src/EditorFeatures/Core.Wpf/Suggestions/SuggestedActions/SuggestedAction.cs
[ "MIT" ]
@color: green; .componentClassName { color: @color; }
Less
3
waltercruz/gatsby
e2e-tests/production-runtime/src/pages/styling/less.module.less
[ "MIT" ]
load "common.gnu" data = "../data/map_construct.csv" set output dir."map_construct".ext set title "constructing maps" plot data using 1:2, for [i=3:21] '' using 1:i
Gnuplot
3
jafingerhut/bifurcan
benchmarks/gnuplot/map_construct.gnu
[ "MIT" ]
[[build-tool-plugins.other-build-systems]] == Supporting Other Build Systems If you want to use a build tool other than Maven, Gradle, or Ant, you likely need to develop your own plugin. Executable jars need to follow a specific format and certain entries need to be written in an uncompressed form (see the "`<<executab...
AsciiDoc
3
techAi007/spring-boot
spring-boot-project/spring-boot-docs/src/docs/asciidoc/build-tool-plugins/other-build-systems.adoc
[ "Apache-2.0" ]
ITERABLE_SECTION_RAM(test_ram, 4)
Linker Script
0
Trifunik/zephyr
tests/misc/iterable_sections/sections-ram.ld
[ "Apache-2.0" ]
# Copyright (c) 2018-2021, Carnegie Mellon University # See LICENSE for details #Concatenation(Conf("spiral_dir"), Conf("path_sep"), "libgen", Conf("path_sep"), #F InitLibgen(<opts>) #F opts must have a .libgen field. #F Example: opts := InitLibgen(LibgenDefaults); #F InitLibgen := function(opts) local base...
GAP
5
sr7cb/spiral-software
namespaces/spiral/libgen/defaults.gi
[ "BSD-2-Clause-FreeBSD" ]
<template> <div> <button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded"> My Component Button </button> </div> </template>
Vue
3
ardyno/nuxt.js
examples/tailwindcss-purgecss/components/MyComponent.vue
[ "MIT" ]
#include <ATen/NativeFunctions.h> #include <ATen/Dispatch.h> #include <ATen/ExpandUtils.h> #include <ATen/Functions.h> #include <ATen/native/cuda/Loops.cuh> #include <ATen/native/TensorIterator.h> namespace { inline void lerp_cuda(at::Tensor& ret, const at::Tensor& self, const at::Tensor& end, const at::Tensor& weigh...
Cuda
4
xiaohanhuang/pytorch
aten/src/ATen/native/cuda/Lerp.cu
[ "Intel" ]
#! /bin/sh -e # DP: Fix GNAT on alpha. dir= if [ $# -eq 3 -a "$2" = '-d' ]; then pdir="-d $3" dir="$3/" elif [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi case "$1" in -patch) patch $pdir -f --no-backup-if-mismatch -p0 < $0 ;; ...
Darcs Patch
4
JrCs/opendreambox
recipes/gcc/gcc-4.3.4/debian/ada-alpha.dpatch
[ "MIT" ]
- dashboard: traffic_engagement_overview title: Traffic Engagement Overview layout: newspaper elements: - name: User Engagement metrics by acquisition source, keyword searched, first page visited, and more type: text title_text: User Engagement metrics by acquisition source, keyword searched, firs...
LookML
3
thomasbanghart/testing-remote-dep
lookml_dashboards/traffic_engagement_overview.dashboard.lookml
[ "MIT" ]
// May not matter, since people can use them with a nightly feature. // However this tests to guarantee they don't leak out via portable_simd, // and thus don't accidentally get stabilized. use std::simd::intrinsics; //~ERROR E0603 fn main() { () }
Rust
2
david-perez/rust
src/test/ui/simd/portable-intrinsics-arent-exposed.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
// https://dom.spec.whatwg.org/#nondocumenttypechildnode interface mixin NonDocumentTypeChildNode { readonly attribute Element? previousElementSibling; readonly attribute Element? nextElementSibling; }; Element includes NonDocumentTypeChildNode; CharacterData includes NonDocumentTypeChildNode;
WebIDL
3
Unique184/jsdom
lib/jsdom/living/nodes/NonDocumentTypeChildNode.webidl
[ "MIT" ]
--TEST-- filter_var() and FILTER_SANITIZE_EMAIL --EXTENSIONS-- filter --FILE-- <?php var_dump(filter_var("a@b.c", FILTER_SANITIZE_EMAIL)); var_dump(filter_var("a[!@#$%^&*()@a@#$%^&*(.com@#$%^&*(", FILTER_SANITIZE_EMAIL)); var_dump(filter_var("white space here \ \ \" some more", FILTER_SANITIZE_EMAIL)); var_dump(filter...
PHP
3
NathanFreeman/php-src
ext/filter/tests/022.phpt
[ "PHP-3.01" ]
option now = () => 2020-02-22T18:00:00Z @tableflux.h2o_temperature{location, state, bottom_degrees, surface_degrees, time > -3h}
FLUX
2
RohanSreerama5/flux
colm/tableflux/query15.flux
[ "MIT" ]
#!/bin/sh GO111MODULE=on mv go.mod /tmp/ go mod init
Shell
3
ikysil/lazygit
scripts/bump_modules.sh
[ "MIT" ]
validatorRules: { <#list columns as po> <#include "core.ftl"> </#list> },
FreeMarker
0
sammydai/jeecg-boot
jeecg-boot/jeecg-boot-module-system/src/main/resources/jeecg/code-template-online/common/validatorRulesTemplate/main.ftl
[ "Apache-2.0" ]
#tag Module Protected Module FormatCodePreferences #tag Note, Name = About This module is optional. If present, the FormatCode IDE Script will use the constants found here instead of the ones in the script. The module does not need all of these constants, but must have at lease one or the script will fail....
Xojo
4
joneisen/Kaju
Kaju Admin CLI/FormatCodePreferences.xojo_code
[ "MIT" ]