text stringlengths 2 99.1k | meta dict |
|---|---|
#!/bin/sh
exec ./pngimage --exhaustive --list-combos --log "${srcdir}/contrib/pngsuite/"*.png
| {
"pile_set_name": "Github"
} |
#pragma once
extern int l_dostring(lua_State *L, const char *s, const char *name);
extern int l_report(lua_State *L, int status);
extern int l_docall(lua_State *L, int narg, int nres);
extern int l_handle_line(lua_State *L, char *line);
| {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<html>
<body>
<pre>xxxxxxxx xxxxxxxx xxxxxxxx</pre>
</body>
</html>
| {
"pile_set_name": "Github"
} |
const geoStandardOptions = Object.create(null);
geoStandardOptions.enableHighAccuracy = false;
geoStandardOptions.timeout = 0xFFFFFFFF;
geoStandardOptions.maximumAge = 0;
export default Object.freeze(geoStandardOptions);
| {
"pile_set_name": "Github"
} |
package internal
import (
"testing"
"time"
. "github.com/onsi/gomega"
)
func TestRetryBackoff(t *testing.T) {
RegisterTestingT(t)
for i := -1; i <= 16; i++ {
backoff := RetryBackoff(i, time.Millisecond, 512*time.Millisecond)
Expect(backoff >= 0).To(BeTrue())
Expect(backoff <= 512*time.Millisecond).To(BeT... | {
"pile_set_name": "Github"
} |
// Package cache provides a registry cache
package cache
import (
"github.com/micro/go-micro/v2/registry"
"github.com/micro/go-micro/v2/registry/cache"
)
// New returns a new cache
func New(r registry.Registry, opts ...cache.Option) cache.Cache {
return cache.New(r, opts...)
}
| {
"pile_set_name": "Github"
} |
# GENERATED VERSION FILE
# TIME: Sun May 24 21:24:18 2020
__version__ = '1.0.rc0'
short_version = '1.0.rc0'
| {
"pile_set_name": "Github"
} |
package au.com.example.service.user;
import org.springframework.security.provisioning.UserDetailsManager;
public interface UserService extends UserDetailsManager {
}
| {
"pile_set_name": "Github"
} |
@model object
@Html.Kendo().TextBoxFor(model => model) | {
"pile_set_name": "Github"
} |
[[cluster.name]]
=== `cluster.name`
A node can only join a cluster when it shares its `cluster.name` with all the
other nodes in the cluster. The default name is `elasticsearch`, but you should
change it to an appropriate name which describes the purpose of the cluster.
[source,yaml]
---------------------------------... | {
"pile_set_name": "Github"
} |
package com.concurnas.compiler.ast;
public enum GPUFuncVariant {
gpukernel, gpudef;
}
| {
"pile_set_name": "Github"
} |
{
"name": "angular",
"version": "1.4.8",
"description": "HTML enhanced for web apps",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.js.git"
},
"keywords": [
"angular",
... | {
"pile_set_name": "Github"
} |
(set-logic QF_S)
(set-option :strings-exp true)
(set-info :status sat)
(declare-const input_0_1000 String)
(assert (= (str.substr input_0_1000 0 4) "good"))
(assert (= (str.substr input_0_1000 5 1) "I"))
(assert (not (= input_0_1000 "goodAI")))
(check-sat)
| {
"pile_set_name": "Github"
} |
import ipaddress
class IOCValidator(object):
def __init__(self):
blerp = "berp"
@staticmethod
def is_valid_ipaddress(ip_string):
try:
ipaddress.ip_address(ip_string)
except Exception as e:
return False
return True
@staticmethod
def is_vali... | {
"pile_set_name": "Github"
} |
<network>
<name>default</name>
<uuid>004b96e12d78c30f5aa5f03c87d21e69</uuid>
<bridge name='brdefault'/>
<forward dev='eth0'/>
<ip address='192.168.122.1' netmask='255.255.255.0'>
<dhcp>
<range start='192.168.122.128' end='192.168.122.253'/>
</dhcp>
</ip>
</network>
| {
"pile_set_name": "Github"
} |
// run
// Copyright 2018 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.
package main
func main() {
var s uint
var x = interface{}(1<<s + 1<<s) // compiler must not crash here
if x.(int) != 2 {
panic("x not int or not 2... | {
"pile_set_name": "Github"
} |
settb=1/1000,
setpts=1/(35*TB) * (N + 0.05 * sin(N*2*PI/25))
| {
"pile_set_name": "Github"
} |
################################################################################
#
# gdbm
#
################################################################################
GDBM_VERSION = 1.11
GDBM_SITE = $(BR2_GNU_MIRROR)/gdbm
GDBM_LICENSE = GPLv3+
GDBM_LICENSE_FILES = COPYING
GDBM_INSTALL_STAGING = YES
$(eval $(aut... | {
"pile_set_name": "Github"
} |
import type { CompareOp, MultiCompareOp } from "./api";
import { defOp } from "./internal/codegen";
import { MATH } from "./internal/templates";
export const [neq, neq2, neq3, neq4] = defOp<MultiCompareOp, CompareOp>(
MATH("!==")
);
| {
"pile_set_name": "Github"
} |
function test(chart) { // eslint-disable-line no-unused-vars
chart.getSVG = function () {
return chart.container.innerHTML;
};
} | {
"pile_set_name": "Github"
} |
.is-clearfix {
@include clearfix;
}
.is-pulled-left {
float: left !important;
}
.is-pulled-right {
float: right !important;
}
| {
"pile_set_name": "Github"
} |
altlib.so:go:entry 2
main:go:entry 2
| {
"pile_set_name": "Github"
} |
package com.bookstore.projection;
public interface AuthorNameBookTitle {
String getName();
String getTitle();
}
| {
"pile_set_name": "Github"
} |
#include <unistd.h>
#include <time.h>
unsigned sleep(unsigned seconds)
{
struct timespec tv = { .tv_sec = seconds, .tv_nsec = 0 };
if (nanosleep(&tv, &tv))
return tv.tv_sec;
return 0;
}
| {
"pile_set_name": "Github"
} |
Given(/^I have Rackspace credentials available$/) do
fail unless ENV['RAX_USERNAME'] && ENV['RAX_API_KEY']
end
Given(/^I have a "fog_mock.rb" file$/) do
script = File.open("features/support/fog_mock.rb").read
steps %Q{
Given a file named "fog_mock.rb" with:
"""
#{script}
"""
}
end | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# Generated by Django 1.11.9 on 2018-01-15 11:16
from __future__ import unicode_literals
from django.db import migrations
from markdown import markdown
def md_to_html(apps, schema_editor):
Product = apps.get_model("product", "Product")
for product in Product.objects.all():
pro... | {
"pile_set_name": "Github"
} |
# RUN: llvm-mc %s -arch=mips -mcpu=mips32 | \
# RUN: FileCheck %s -check-prefix=CHECK-ASM
#
# RUN: llvm-mc %s -arch=mips -mcpu=mips32 -filetype=obj -o - | \
# RUN: llvm-readobj -mips-abi-flags - | \
# RUN: FileCheck %s -check-prefix=CHECK-OBJ
# CHECK-ASM: .module softfloat
# Check if the MIPS.abiflags section... | {
"pile_set_name": "Github"
} |
export void f_f(uniform float RET[], uniform float aFOO[]) {
uniform float * uniform b = aFOO;
b += 10;
uniform int8 index = -5;
RET[programIndex] = b[index];
}
export void result(uniform float RET[]) {
RET[programIndex] = 6;
}
| {
"pile_set_name": "Github"
} |
[access "refs/heads/*"]
abandon = group tripleo-quickstart-core
label-Code-Review = -2..+2 group tripleo-quickstart-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-quickstart-core
[receive]
requireChangeId = true
requireContributorAgreement = true
[submit]
mergeContent = true
| {
"pile_set_name": "Github"
} |
package number
import "C"
//export number_add_mod
func number_add_mod(a, b, mod C.int) C.int {
return (a + b) % mod
}
| {
"pile_set_name": "Github"
} |
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
symbolic-links=0
skip-external-locking
key_buffer_size = 256M
max_allowed_packet = 32M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
... | {
"pile_set_name": "Github"
} |
{
"url": "https://schnittstellengestalter.de/",
"name": "Schnittstellengestalter",
"description": "Website of »Schnittstellengestalter« a user interface design agency from Berlin, Germany.",
"twitter": "solemone"
}
| {
"pile_set_name": "Github"
} |
/Users/aserbao/aserbao/code/code/A_UI/AserbaosAndroid/app/obj/local/x86/objs/use_ndk_build2/use_ndk_build2.o: \
/Users/aserbao/aserbao/code/code/A_UI/AserbaosAndroid/app/jni/use_ndk_build2.c
| {
"pile_set_name": "Github"
} |
Find out if the system's architecture is 32 or 64 bit
Changing the timezone on deb based systems
Commands to shutdown or restart the system
Cancel a system shutdown
Finding Open Files With `lsof` | {
"pile_set_name": "Github"
} |
@inherits Umbraco.Web.Mvc.UmbracoViewPage<Merchello.Web.Store.Models.StorePaymentModel>
@using System.Web.Mvc.Html
@using Merchello.FastTrack.Controllers.Payment
@using Merchello.Web.Store.Controllers.Payment
@using Umbraco.Web
<h3>Cash Payment</h3>
@using (Html.BeginUmbracoForm<CashPaymentController>("Process", new... | {
"pile_set_name": "Github"
} |
confighelper
============
Configuration Helper + HTML5 placeholder for CKEditor.
See docs/install.html for full details and install instructions
| {
"pile_set_name": "Github"
} |
Authentication Info:
auth = no
| {
"pile_set_name": "Github"
} |
# Author: Horst Hunger
# Created: 2010-07-13
let $engine_table= INNODB;
let $engine_part= INNODB;
let $engine_subpart= INNODB;
use test;
--disable_result_log
--disable_query_log
--source suite/parts/inc/part_exch_tabs.inc
--enable_result_log
--enable_query_log
# 13) Exchange with dynamic variables.
SET @part= 'p0'... | {
"pile_set_name": "Github"
} |
{
"id": "whitneys-poster",
"name": "Whitney's Poster",
"games": {
"nh": {
"sellPrice": {
"currency": "bells",
"value": 250
},
"buyPrices": [
{
"currency": "bells",
"value": 1000
}
]
}
},
"category": "Photos"
} | {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
require_relative "setup"
require "hotch"
Hotch() do
100.times do
users.combine(:tasks).to_a
end
end
| {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
Gem::Specification.new "samson_jenkins", "0.0.0" do |s|
s.summary = "Samson jenkins integration"
s.authors = ["Rupinder Dhanoa "]
s.email = "rdhanoa@zendesk.com"
s.add_runtime_dependency "jenkins_api_client", "~> 1.3"
end
| {
"pile_set_name": "Github"
} |
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
// Generated using tools/cldr/cldr-to-icu/build-icu-data.xml
su_Latn{
}
| {
"pile_set_name": "Github"
} |
# -*- coding: utf-8; mode: snippet -*-
# name: if(boolean-condition-from-kill-ring) { debugger; }
# key: d
# contributor: Chen Bin <chenbin DOT sh AT gmail>
# --
if(${1:`(car kill-ring)`}) { console.clear(); debugger; } | {
"pile_set_name": "Github"
} |
#if defined(__LP64__) && __LP64__
#include"tiffconf-64.h"
#else
#include"tiffconf-32.h"
#endif | {
"pile_set_name": "Github"
} |
package com.android.dp.book.chapter27.builder;
//具体的 Computer 类,Macbook
public class Samsung extends SmartDevice {
protected Samsung() {
}
@Override
public void setOS() {
mOS = "三星 Android系统";
}
}
| {
"pile_set_name": "Github"
} |
#pragma once
#include <collection.h>
#include <ppltasks.h>
| {
"pile_set_name": "Github"
} |
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
a: if (true) b: { break a; break b; }
else b: { break a; break b; }
| {
"pile_set_name": "Github"
} |
#' @param prior_PD A logical scalar (defaulting to \code{FALSE}) indicating
#' whether to draw from the prior predictive distribution instead of
#' conditioning on the outcome.
| {
"pile_set_name": "Github"
} |
id: masthead_test
type:
- masthead
activate: true
icon: fa-star-half-o
tooltip: Galaxy Help
function: >
window.open('https://help.galaxyproject.org', '_blank');
| {
"pile_set_name": "Github"
} |
META = {
'author': 'George Argyros, Ioannis Stais',
'description': 'Automatic transformed ruleset',
'type':'Regex',
'comments': []
} | {
"pile_set_name": "Github"
} |
META = {
'author': 'George Argyros, Ioannis Stais',
'description': 'Automatic transformed ruleset',
'type':'Regex',
'comments': []
} | {
"pile_set_name": "Github"
} |
//
// This file has been generated automatically by MonoDevelop to store outlets and
// actions made in the Xcode designer. If it is removed, they will be lost.
// Manual changes to this file may not be handled correctly.
//
using Foundation;
namespace ImplicitAnimation
{
[Register ("ViewController")]
partial class... | {
"pile_set_name": "Github"
} |
struct A{func p(){}};var a A
func main(){a.p()} | {
"pile_set_name": "Github"
} |
-- select1.test
--
-- execsql {INSERT INTO test2 VALUES('abc','xyz')}
INSERT INTO test2 VALUES('abc','xyz') | {
"pile_set_name": "Github"
} |
import './gulp/dev';
import './gulp/examples';
import './gulp/docs';
| {
"pile_set_name": "Github"
} |
tlslite.keyexchange module
==========================
.. automodule:: tlslite.keyexchange
:members:
:special-members: __init__
:undoc-members:
:show-inheritance:
| {
"pile_set_name": "Github"
} |
- Moving entities around 3h DONE
- Placing triggers 2h DONE
- Showing / hiding triggers 1h
-
+ESTIMATED_TIME:
+TIME_SPENT:
+WORK_LOG:
27.04.14: 11:45 - 14:15, 15:00 - 17:15, 20:00 - 22:45
| {
"pile_set_name": "Github"
} |
cwltool:overrides:
echo.cwl:
requirements:
EnvVarRequirement:
envDef:
MESSAGE: hello2
| {
"pile_set_name": "Github"
} |
package insertionsort
import "testing"
func TestInsertSort(t *testing.T) {
tests := []struct {
name string
array []int
}{
{
name: "sort1",
array: []int{23, 0, 12, 56, 34},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Logf("排序前:%+v", tt.array)
InsertSort(tt.array)
... | {
"pile_set_name": "Github"
} |
lambda
lambda x, y
lambda x 1
| {
"pile_set_name": "Github"
} |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Detecting mime types is a tricky business because we need to balance
// compatibility concerns with security issues. Here is a survey of how other... | {
"pile_set_name": "Github"
} |
---
namespace: Titanium.Network.createHTTPServer
type: function
description: Creates an HTTPServer object
since: 0.4.0
platforms: ['osx', 'linux', 'win32']
returns: Network.HTTPServer
parameters: []
| {
"pile_set_name": "Github"
} |
#base "../disguise_menu/sniper_blue.res"
"Resource/UI/disguise_menu/sniper_blue.res"
{
} | {
"pile_set_name": "Github"
} |
name=Magnivore
image=https://magiccards.info/scans/en/9e/202.jpg
value=4.139
rarity=R
type=Creature
subtype=Lhurgoyf
cost={2}{R}{R}
pt=*/*
ability=Haste;\
SN's power and toughness are each equal to the number of sorcery cards in all graveyards.
timing=fmain
oracle=Haste\nMagnivore's power and toughness are each... | {
"pile_set_name": "Github"
} |
FROM spark:testing
RUN rm /opt/entrypoint.sh
COPY entrypoint.sh /opt
COPY angel /opt/angel
COPY lib /usr/lib
ENTRYPOINT ["/opt/entrypoint.sh"]
| {
"pile_set_name": "Github"
} |
// stylelint-disable declaration-no-important
@each $color, $value in $theme-colors {
@include bg-variant(".bg-#{$color}", $value);
}
@if $enable-gradients {
@each $color, $value in $theme-colors {
@include bg-gradient-variant(".bg-gradient-#{$color}", $value);
}
}
.bg-white {
background-color: $white !i... | {
"pile_set_name": "Github"
} |
Ação é isso aí
| {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Jun 9 2015 22:53:21).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2014 by Steve Nygard.
//
#import "ImageScalingPolicy.h"
@interface ConstantFactorScalingPolicy : ImageScalingPolicy
{
double _scaleFactor;
}
+ (id)policyW... | {
"pile_set_name": "Github"
} |
[<Microsoft.FSharp.Core.CompilerServices.TypeProviderAssemblyAttribute("")>]
do() | {
"pile_set_name": "Github"
} |
name=Withering Boon
image=https://magiccards.info/scans/en/mr/50.jpg
value=3.514
rarity=U
type=Instant
cost={1}{B}
ability=As an additional cost to cast SN, pay 3 life.
effect=Counter target creature spell.
timing=counter
oracle=As an additional cost to cast Withering Boon, pay 3 life.\nCounter target creature spell.
| {
"pile_set_name": "Github"
} |
limit nofile 20000 20000
kill timeout 300 # wait 300s between SIGTERM and SIGKILL.
pre-start script
mkdir -p /var/lib/mongodb1/
mkdir -p /var/log/mongodb1/
touch /var/log/mongodb1/mongodb.log
chown -R mongodb /var/lib/mongodb1
chown -R mongodb /var/log/mongodb1
end script
start on runlevel [2345]
stop ... | {
"pile_set_name": "Github"
} |
<linker>
<assembly fullname="Ceras" preserve="all"/>
</linker>
| {
"pile_set_name": "Github"
} |
noinst_LTLIBRARIES += %D%/libtransport.la
%C%_libtransport_la_SOURCES = \
%D%/transport.c \
%D%/transport.h
| {
"pile_set_name": "Github"
} |
// @target: esnext
// @strict: true
// @noEmit: true
declare function f1<T, R, S>(gen: () => Generator<R, T, S>): void;
f1<0, 0, 1>(function* () {
const a = yield 0;
return 0;
});
declare function f2<T, R, S>(gen: () => Generator<R, T, S> | AsyncGenerator<R, T, S>): void;
f2<0, 0, 1>(async function* () {
... | {
"pile_set_name": "Github"
} |
/* preview style examples */
body {
background-color:#EFEFEF;
font:70% Verdana, Arial, Helvetica, sans-serif;
} | {
"pile_set_name": "Github"
} |
cd c:\scripts\wail2ban\
start powershell .\wail2ban.ps1
| {
"pile_set_name": "Github"
} |
let rec reverse l = match l with
| [] -> []
| head::tail -> ((reverse tail)@[head])
;;
reverse [0;1;2;3];; | {
"pile_set_name": "Github"
} |
#include "ruby.h"
void Init_class_id_under_autoload_spec(void) {
rb_define_class_id_under(rb_cObject, rb_intern("ClassIdUnderAutoload"), rb_cObject);
}
| {
"pile_set_name": "Github"
} |
import flask
app = flask.Flask(__name__)
| {
"pile_set_name": "Github"
} |
class A(Int)
extension class A(Int)
| {
"pile_set_name": "Github"
} |
--- a/lib/active_support/core_ext/time/zones.rb
+++ b/lib/active_support/core_ext/time/zones.rb
@@ -1,4 +1,5 @@
require 'active_support/time_with_zone'
+require 'tzinfo' # MagLev patch
class Time
class << self
| {
"pile_set_name": "Github"
} |
``` php
<?php phpinfo(); ?>
``` | {
"pile_set_name": "Github"
} |
<template>
<div>Child</div>
</template>
<script>
export default {
name: "Child"
}
</script>
| {
"pile_set_name": "Github"
} |
// -*- mode: js; -*-
// Simple Text Query on Stored Field, specifying the field to be searched; targeting an index with dynamic fields stored, to ensure that field-content is included in the return object.
{
"indexName": "travel-sample-index-stored",
"size": 10,
"highlight": {
"style": "html"
},... | {
"pile_set_name": "Github"
} |
child: <%= foo %>
| {
"pile_set_name": "Github"
} |
ovl_Bg_Mizu_Shutter
z_bg_mizu_shutter.c | {
"pile_set_name": "Github"
} |
--- Lib/ctypes/macholib/dyld.py.orig 2008-02-21 11:52:20.000000000 -0700
+++ Lib/ctypes/macholib/dyld.py 2009-10-11 02:42:21.000000000 -0600
@@ -26,7 +26,7 @@
DEFAULT_LIBRARY_FALLBACK = [
os.path.expanduser("~/lib"),
- "/usr/local/lib",
+ "@@PREFIX@@/lib",
"/lib",
"/usr/lib",
]
| {
"pile_set_name": "Github"
} |
RGB 20, 19, 20
RGB 18, 11, 14
| {
"pile_set_name": "Github"
} |
--- Lib/ctypes/macholib/dyld.py.orig 2008-02-21 11:52:20.000000000 -0700
+++ Lib/ctypes/macholib/dyld.py 2009-10-11 02:42:21.000000000 -0600
@@ -26,7 +26,7 @@
DEFAULT_LIBRARY_FALLBACK = [
os.path.expanduser("~/lib"),
- "/usr/local/lib",
+ "@@PREFIX@@/lib",
"/lib",
"/usr/lib",
]
| {
"pile_set_name": "Github"
} |
// RUN: rm -rf %t
// RUN: %clang_cc1 -fsyntax-only -I%S/Inputs/malformed-overload -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -verify %s
NSLog(@"%@", path); // expected-error {{expected parameter declarator}} expected-error {{expected ')'}} expected-warning {{type specifier missing}} expected-warning {{inc... | {
"pile_set_name": "Github"
} |
chip northbridge/intel/sandybridge
device domain 0 on
chip southbridge/intel/bd82x6x # Intel Series 7 Panther Point PCH
device pci 16.0 off end # Management Engine Interface 1
register "xhci_overcurrent_mapping" = "0x00000c03"
device pci 1c.1 on end # PCIe Port #2
device pci 1c.2 on
device pci 00.0 ... | {
"pile_set_name": "Github"
} |
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
let start =
{ enum b {
func g {
case
( { {
extension g {
struct A {
func a( = {
class d {
class
case ,
| {
"pile_set_name": "Github"
} |
package com.android.server.locksettings;
import android.platform.test.annotations.Presubmit;
import androidx.test.filters.SmallTest;
@SmallTest
@Presubmit
public class WeaverBasedSyntheticPasswordTests extends SyntheticPasswordTests {
@Override
protected void setUp() throws Exception {
super.setUp()... | {
"pile_set_name": "Github"
} |
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:flower_pot"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
},
{
"rol... | {
"pile_set_name": "Github"
} |
{
"domain": "uk.net",
"whoisServer": "whois.centralnic.com",
"nameServers": [
"ns1.centralnic.net",
"ns2.centralnic.net",
"ns3.centralnic.net",
"ns4.centralnic.net"
],
"wildcards": [
"54.153.56.183",
"uk.net"
]
}
| {
"pile_set_name": "Github"
} |
[android-components](../../index.md) / [mozilla.components.browser.state.state.content](../index.md) / [DownloadState](index.md) / [status](./status.md)
# status
`val status: `[`Status`](-status/index.md) [(source)](https://github.com/mozilla-mobile/android-components/blob/master/components/browser/state/src/main/jav... | {
"pile_set_name": "Github"
} |
const { exec } = require('child_process')
const os = require('os')
const platform = os.platform()
const cmd = platform.startsWith('win')
? 'del /f package-lock.json'
: 'rm -rf package-lock.json'
exec(cmd)
| {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
// Package rangetable provides utilities for creating and inspecting
// unicode.RangeTables.
package rangetable
import (
"sort"
"unicode"
)
// New creates a... | {
"pile_set_name": "Github"
} |
/**
* Header comment
*/
const one = require('one');
/**
* Function description.
*/
function foo() {
one();
}
| {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
// Package rangetable provides utilities for creating and inspecting
// unicode.RangeTables.
package rangetable
import (
"sort"
"unicode"
)
// New creates a... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.