text stringlengths 2 99k | meta dict |
|---|---|
---
title: 機能フィルターを使用してユーザーのサブセットに対して機能を有効にする
titleSuffix: Azure App Configuration
description: 機能フィルターを使用してユーザーのサブセットに対して機能を有効にする方法を説明します
ms.service: azure-app-configuration
ms.custom: devx-track-csharp
author: lisaguthrie
ms.author: lcozzens
ms.topic: conceptual
ms.date: 3/9/2020
ms.openlocfilehash: 5b2eb942581f6e416... | {
"pile_set_name": "Github"
} |
// 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.
// +build linux,gccgo,386
package unix
import (
"syscall"
"unsafe"
)
func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
var newoffset in... | {
"pile_set_name": "Github"
} |
package br.com.leonardoz.features.locks;
import java.util.concurrent.Executors;
/**
* Every Java object has an intrinsic lock (or a monitor lock) associated with
* it.
*
* Every Java object can be used as a lock.
*
* Intrinsic Locks are mutually exclusive, so one only thread can 'hold' the
* lock at time whe... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" manifest="cll.appcache" xml:lang="en" lang="en">
<head>
<meta http-equiv="C... | {
"pile_set_name": "Github"
} |
version: '2'
services:
mysql:
image: mysql:5.7.31
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=bookstack
- MYSQL_USER=bookstack
- MYSQL_PASSWORD=secret
volumes:
- mysql-data:/var/lib/mysql
bookstack:
image: solidnerd/bookstack:0.29.3
depends_on:
- mysql
... | {
"pile_set_name": "Github"
} |
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package system
import (
"crypto/sha256"
"encoding/base64"
"hash"
)
// EntityHas... | {
"pile_set_name": "Github"
} |
type ('a, 'error) t = ('a, 'error) result =
| Ok of 'a
| Error of 'error
let ok x = Ok x
let return = ok
let is_ok = function
| Ok _ -> true
| Error _ -> false
let is_error = function
| Ok _ -> false
| Error _ -> true
let ok_exn = function
| Ok x -> x
| Error e -> raise e
let try_with f =
match ... | {
"pile_set_name": "Github"
} |
/*
* (C) Copyright 2010,2011
* NVIDIA Corporation <www.nvidia.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#ifndef __H_
#define _TPS6586X_H_
enum {
/* SM0-2 PWM/PFM Mode Selection */
TPS6586X_PWM_SM0 = 1 << 0,
TPS6586X_PWM_SM1 = 1 << 1,
TPS6586X_PWM_SM2 = 1 << 2,
};
/**
* Enable PWM mode for selected SM... | {
"pile_set_name": "Github"
} |
@annotate: folktale.result.Ok.prototype.matchWith
@annotate: folktale.result.Error.prototype.matchWith
category: Pattern matching
---
Chooses and executes a function for each variant in the Result structure.
## Example::
const Result = require('folktale/result');
Result.Ok(1).matchWith({
Ok: ({ value... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2004-2007 Apple Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* c... | {
"pile_set_name": "Github"
} |
'use strict'
const u = require('universalify').fromCallback
const path = require('path')
const fs = require('graceful-fs')
const mkdir = require('../mkdirs')
const pathExists = require('../path-exists').pathExists
function createLink (srcpath, dstpath, callback) {
function makeLink (srcpath, dstpath) {
fs.link(... | {
"pile_set_name": "Github"
} |
ofxLibwebsockets
| {
"pile_set_name": "Github"
} |
using Xunit;
namespace Coverlet.Integration.DeterministicBuild
{
public class TemplateTest
{
[Fact]
public void Answer()
{
DeepThought dt = new DeepThought();
Assert.Equal(42, dt.AnswerToTheUltimateQuestionOfLifeTheUniverseAndEverything());
}
}
}
| {
"pile_set_name": "Github"
} |
<?php
declare(strict_types=1);
namespace Phpml\NeuralNetwork\Training;
use Phpml\NeuralNetwork\Node\Neuron;
use Phpml\NeuralNetwork\Training\Backpropagation\Sigma;
class Backpropagation
{
/**
* @var float
*/
private $learningRate;
/**
* @var array
*/
private $sigmas = [];
/... | {
"pile_set_name": "Github"
} |
package com.zhy.adapter.recyclerview.base;
/**
* Created by zhy on 16/6/22.
*/
public interface ItemViewDelegate<T>
{
int getItemViewLayoutId();
boolean isForViewType(T item, int position);
void convert(ViewHolder holder, T t, int position);
}
| {
"pile_set_name": "Github"
} |
// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build riscv64,linux
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
Path... | {
"pile_set_name": "Github"
} |
ALTER TABLE character_db_version CHANGE COLUMN required_12339_02_characters_calendar_invites required_12487_01_characters_characters bit;
UPDATE characters SET drunk = (drunk / 256) & 0xFF;
ALTER TABLE characters CHANGE drunk drunk tinyint(3) unsigned NOT NULL DEFAULT '0';
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>test-project</groupId>
<artifactId>test-project</artifactId>
<version>2.4.4</version>
</parent>
<artifactId>test-project-broker-pom</artifactId>
<name>Test Project Broker POM... | {
"pile_set_name": "Github"
} |
<html class="reftest-print">
<head>
<title>crash in nsContentList::nsContentList on print preview</title>
</head><body>
<iframe onload="window.location.reload()" src="data:text/html,">
</iframe>
</body></html>
| {
"pile_set_name": "Github"
} |
/**
******************************************************************************
* @file startup_stm32f427_437xx.s
* @author MCD Application Team
* @version V1.8.0
* @date 09-November-2016
* @brief STM32F427xx/437xx Devices vector table for Atollic TrueSTUDIO toolchain.
* ... | {
"pile_set_name": "Github"
} |
name: Execute tests
on:
push:
branches:
- master
tags-ignore:
- '**'
pull_request:
jobs: # Docs: <https://help.github.com/en/articles/workflow-syntax-for-github-actions>
tests:
name: PHP ${{ matrix.php }}, ${{ matrix.setup }} setup
runs-on: ubuntu-latest
timeout-minutes: 10
s... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright 2011 Bas de Nooijer. All rights reserved.
*
* 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 cond... | {
"pile_set_name": "Github"
} |
package io.quarkus.it.elasticsearch;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import org.apache.http.util.EntityUtils;
import org.elasticsearch.client.Request;
import org.elasticsearch.client.Response... | {
"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 <objc/NSObject.h>
@class ICPPhotoStreamLibrary, ICPSharedPhotoStreamService, ICPTaskQueue, NSError, NSMutableDictionary, NSURL... | {
"pile_set_name": "Github"
} |
type=item
items=minecraft:glowstone_dust
nbt.display.Name=ipattern:*golden powder* | {
"pile_set_name": "Github"
} |
'use strict';
var test = require('tape');
var dragula = require('..');
test('public api matches expectation', function (t) {
t.equal(typeof dragula, 'function', 'dragula is a function');
t.end();
});
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright (C) 2014 - Open Source Geospatial Foundation. All rights reserved.
This code is licensed under the GPL 2.0 license, available at the root
application directory.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSch... | {
"pile_set_name": "Github"
} |
/*
Copyright (C) 2017 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, softwa... | {
"pile_set_name": "Github"
} |
title: Project scanner
summary: Scans repository for iOS, macOS, Android, Xamarin, Fastlane and Cordova projects
description: |-
For iOS and macOS projects detects CocoaPods and scan Xcode project files
for valid Xcode command line configurations.
For Android projects checks for build.gradle files and lists all ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2012 Facebook, Inc.
*
* 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 agr... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xam... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" ?>
<annotation>
<folder>widerface</folder>
<filename>2--Demonstration_2_Demonstration_Protesters_2_858.jpg</filename>
<source>
<database>wider face Database</database>
<annotation>PASCAL VOC2007</annotation>
<image>flickr</image>
<flickrid>-1</flickrid>
</source>
<owner>
<flickrid>yanyu</flickrid>
<... | {
"pile_set_name": "Github"
} |
/*
*
* mdp - make dummy policy
*
* When pointed at a kernel tree, builds a dummy policy for that kernel
* with exactly one type with full rights to itself.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<plugin game="Halo2" baseSize="0x284">
<!-- Automatically generated plugin -->
<revisions>
<revision author="Iron_Forge" version="1">Added basic layout of plugin...</revision>
<revision author="Iron_Forge" version="2">Added some known values...</revision>
<revision author=... | {
"pile_set_name": "Github"
} |
"S3 (Amazon Simple Storage Service)" = "S3 (Amazon Simple Storage Service)";
/* Use your Access Key ID as the value of the AWSAccessKeyId parameter in requests you send to Amazon Web Services (when required). Your Access Key ID identifies you as the party responsible for the request. */
"Access Key ID" = "ID prístupov... | {
"pile_set_name": "Github"
} |
foo: 'bar' #Comment
arr: ['x', 'y', 'z'] # Comment here
bar: kittens | {
"pile_set_name": "Github"
} |
---
title: "Installation: Ubuntu"
---
# Ubuntu Installation
**General dependencies**
sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler
sudo apt-get install --no-install-recommends libboost-all-dev
**CUDA**: Install by `apt-get` or the NVIDIA... | {
"pile_set_name": "Github"
} |
package me.sweetll.tucao.business.home.adapter
import android.view.View
import android.widget.ImageView
import android.widget.TextView
import com.chad.library.adapter.base.BaseQuickAdapter
import com.chad.library.adapter.base.BaseViewHolder
import me.sweetll.tucao.R
import me.sweetll.tucao.model.json.Video
import me.s... | {
"pile_set_name": "Github"
} |
/*
* \brief Include before including Linux headers in C++
* \author Christian Helmuth
* \date 2014-08-21
*/
/*
* Copyright (C) 2014-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#define ... | {
"pile_set_name": "Github"
} |
import React, {Component} from 'react';
import ReactDOM, { findDOMNode } from 'react-dom';
import cx from 'classnames';
import {Easer} from 'functional-easing';
import {Track, TrackedDiv, TrackDocument} from 'react-track';
import {tween, combine} from 'react-imation';
import {topTop,
topBottom,
centerCe... | {
"pile_set_name": "Github"
} |
/**
* This header is generated by class-dump-z 0.2b.
*
* Source: /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
*/
#import <PhotoLibraryServices/XXUnknownSuperclass.h>
@class NSMutableDictionary, NSData;
@interface PLPhotoBakedThumbnailsCollection : XXUnknownSuperclass {
N... | {
"pile_set_name": "Github"
} |
//
// PolylineNode.swift
// MapboxSceneKit
//
// Created by Jim Martin on 9/11/18.
// Copyright © 2018 MapBox. All rights reserved.
//
import Foundation
import SceneKit
// MARK: - Constructors
@objc(MBPolylineNode)
public class PolylineNode: SCNNode {
private var lineRenderer: PolylineRenderer
private le... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"filename" : "arrow.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "arrow@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author... | {
"pile_set_name": "Github"
} |
#version 310 es
precision mediump float;
precision highp int;
struct ResType
{
highp float _m0;
int _m1;
};
struct ResType_1
{
highp vec2 _m0;
ivec2 _m1;
};
layout(location = 0) in float v0;
layout(location = 1) in vec2 v1;
layout(location = 0) out float FragColor;
void main()
{
ResType _16;
... | {
"pile_set_name": "Github"
} |
StartTest(function (t) {
t.getHarness([
{
preload : [
'../../../extjs-4.2.0/resources/css/ext-all.css',
'../../../extjs-4.2.0/ext-all-debug.js'
],
url : 'testfiles/604_extjs_components.t.js'
}
]);
t.chain([
{ wa... | {
"pile_set_name": "Github"
} |
# `(中等)` [1424.diagonal-traverse-ii 对角线遍历 II](https://leetcode-cn.com/problems/diagonal-traverse-ii/)
[contest](https://leetcode-cn.com/contest/weekly-contest-186/problems/diagonal-traverse-ii/)
### 题目描述
<p>给你一个列表 <code>nums</code> ,里面每一个元素都是一个整数列表。请你依照下面各图的规则,按顺序返回 <code>nums</code> 中对角线上的整数。</p>... | {
"pile_set_name": "Github"
} |
from .layer_authentication import YowAuthenticationProtocolLayer
| {
"pile_set_name": "Github"
} |
package handlers
import (
"fmt"
"github.com/authelia/authelia/internal/middlewares"
)
// LogoutPost is the handler logging out the user attached to the given cookie.
func LogoutPost(ctx *middlewares.AutheliaCtx) {
ctx.Logger.Tracef("Destroy session")
err := ctx.Providers.SessionProvider.DestroySession(ctx.Reques... | {
"pile_set_name": "Github"
} |
/*
Copyright The Kubernetes 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 to in writing, softw... | {
"pile_set_name": "Github"
} |
/**
* \file ThinProtobuf.h
*
* This library provides a number of low-level encoding functions for reading and writing
* data to a Google protocol buffer format. In other words, this is a kind of light-weight
* substitute for Google's official protobuf library (and the protoc compiler), which avoids
* that depe... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
===================================... | {
"pile_set_name": "Github"
} |
<?php
namespace Drupal\Tests\comment\Unit\Plugin\views\field;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\comment\Plugin\views\field\CommentBulkForm;
use Drupal\Core\Entity\EntityRepositoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Tests\UnitTestCase;
/**
* @covers... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2017 Red Hat, Inc. and/or its affiliates.
*
* 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 a... | {
"pile_set_name": "Github"
} |
def ode_step(v, i, dt):
"""
Evolves membrane potential by one step of discrete time integration
Args:
v (numpy array of floats)
membrane potential at previous time step of shape (neurons)
v (numpy array of floats)
synaptic input at current time step of shape (neurons)
dt (float)
t... | {
"pile_set_name": "Github"
} |
/*
* linux/fs/nfs/nfs4_fs.h
*
* Copyright (C) 2005 Trond Myklebust
*
* NFSv4-specific filesystem definitions and declarations
*/
#ifndef __LINUX_FS_NFS_NFS4_FS_H
#define __LINUX_FS_NFS_NFS4_FS_H
#if IS_ENABLED(CONFIG_NFS_V4)
#define NFS4_MAX_LOOP_ON_RECOVER (10)
#include <linux/seqlock.h>
struct idmap;
enum... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0+
/*
*
* Copyright (c) 2015 Free Electrons
* Copyright (c) 2015 NextThing Co.
* Copyright (c) 2018 Microchip Technology, Inc.
*
* Maxime Ripard <maxime.ripard@free-electrons.com>
* Eugen Hristev <eugen.hristev@microchip.com>
*
*/
#include <common.h>
#include <dm.h>
#include ... | {
"pile_set_name": "Github"
} |
CREATE TABLE memos (
id integer,
title text,
content text
);
INSERT INTO memos VALUES (1, 'PostgreSQL', 'PostgreSQL is a RDBMS.');
INSERT INTO memos VALUES (2, 'Groonga', 'Groonga is fast full text search engine.');
INSERT INTO memos VALUES (3, 'PGroonga', 'PGroonga is a PostgreSQL extension that uses Groonga.');... | {
"pile_set_name": "Github"
} |
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not us... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
#include <linux/cache.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/pid_namespace.h>
#include "internal.h"
/*
* /proc/self:
*/
static const char *proc_self_get_link(struct dentry *dentry,
struct inode *inode,
struct delayed_call *done)
{
... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2019 Anthony Trinh
*
* 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... | {
"pile_set_name": "Github"
} |
#!/bin/bash
mv DESCRIPTION DESCRIPTION.old
grep -v '^Priority: ' DESCRIPTION.old > DESCRIPTION
mkdir -p ~/.R
echo -e "CC=$CC
FC=$FC
CXX=$CXX
CXX98=$CXX
CXX11=$CXX
CXX14=$CXX" > ~/.R/Makevars
$R CMD INSTALL --build . | {
"pile_set_name": "Github"
} |
package raft
import (
"fmt"
"io"
"time"
"github.com/armon/go-metrics"
)
// FSM provides an interface that can be implemented by
// clients to make use of the replicated log.
type FSM interface {
// Apply log is invoked once a log entry is committed.
// It returns a value which will be made available in the
//... | {
"pile_set_name": "Github"
} |
using System;
using System.Windows;
using Cirrious.CrossCore;
using Cirrious.MvvmCross.ViewModels;
using Cirrious.MvvmCross.Wpf.Views;
namespace $rootnamespace$
{
public partial class App : Application
{
private bool _setupComplete;
private void DoSetup()
{
LoadMvxAssemblyResources(... | {
"pile_set_name": "Github"
} |
/*
* The MIT License
* Copyright © 2014-2019 Ilkka Seppälä
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy... | {
"pile_set_name": "Github"
} |
/*
* JSweet transpiler - http://www.jsweet.org
* Copyright (C) 2015 CINCHEO SAS <renaud.pawlak@cincheo.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the Licen... | {
"pile_set_name": "Github"
} |
/*
* # Fomantic - Menu
* http://github.com/fomantic/Fomantic-UI/
*
*
* Copyright 2015 Contributor
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
Standard
*******************************/
/*--------------
Menu
---------------*/
... | {
"pile_set_name": "Github"
} |
import { Swal } from '../../utils'
describe('padding', () => {
it('padding should allow 0', () => {
Swal.fire({
padding: 0,
})
expect(Swal.getPopup().style.padding).to.equal('0px')
})
it('padding should allow a number', () => {
Swal.fire({
padding: 15,
})
expect(Swal.getPopup... | {
"pile_set_name": "Github"
} |
/*
* Copyright ©2018 vbill.cn.
* <p>
* 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... | {
"pile_set_name": "Github"
} |
//// { order: 3, compiler: { strictNullChecks: true } }
// JavaScript 文件中的代码流会影响整个程序的类型。
const users = [{ name: "Ahmed" }, { name: "Gemma" }, { name: "Jon" }];
// 我们尝试找到名为 “jon” 的用户。
const jon = users.find((u) => u.name === "jon");
// 在上面的情况中,“find” 可能失败,在这种情况下我们不能得到一个对象,
// 它会创建如下类型:
//
// { name: string } | und... | {
"pile_set_name": "Github"
} |
using System;
namespace OpenRasta.Client
{
public class ProgressEventArgs : EventArgs
{
public ProgressEventArgs(int progress)
{
Progress = progress;
}
public int Progress { get; set; }
}
} | {
"pile_set_name": "Github"
} |
""" Python Character Mapping Codec cp856 generated from 'MAPPINGS/VENDORS/MISC/CP856.TXT' with gencodec.py.
"""#"
import codecs
### Codec APIs
class Codec(codecs.Codec):
def encode(self,input,errors='strict'):
return codecs.charmap_encode(input,errors,encoding_table)
def decode(self,input,errors='... | {
"pile_set_name": "Github"
} |
module ioddr_tester (
input wire CLK,
input wire CLKB,
output wire ERR,
output wire Q,
input wire D
);
parameter USE_PHY_ODDR = 1;
parameter USE_PHY_IDDR = 1;
parameter USE_IDELAY = 0;
parameter DDR_CLK_EDGE = "SAME_EDGE";
// Data generator
wire [1:0] g_dat;
data_g... | {
"pile_set_name": "Github"
} |
{
"types": {
"EIP712Domain": [
{
"name": "name",
"type": "string"
},
{
"name": "version",
"type": "string"
},
{
"name": "chainId",
"type": "uint256"
},
{
"name": "verifyingContract",
"type": "address"
}... | {
"pile_set_name": "Github"
} |
// Copyright 2012 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.
// +build windows,race
package windows
import (
"runtime"
"unsafe"
)
const raceenabled = true
func raceAcquire(addr unsafe.Pointer) {
runtime.RaceAcquire... | {
"pile_set_name": "Github"
} |
/*****************************************************************
|
| Platinum - Managed DeviceData
|
| Copyright (c) 2004-2010, Plutinosoft, LLC.
| All rights reserved.
| http://www.plutinosoft.com
|
| This program is free software; you can redistribute it and/or
| modify it under the terms of the GNU General Publi... | {
"pile_set_name": "Github"
} |
#!/bin/bash
echo "### start build_docker_image.sh for joynr-backend-jee-2 ###"
EXTRA_OPTIONS="--no-cache"
set -e -x
if [ -d target ]; then
rm -Rf target
fi
mkdir target
function copy_war {
if [ ! -f $1 ]; then
echo "ERROR: Missing $1 build artifact. Can't proceed."
exit 1
fi
cp $1 $2
}
DISCOVERY_WAR_FILE=... | {
"pile_set_name": "Github"
} |
# Release History
## 0.4.1 (2018-05-29)
**Bugfixes**
- Compatibility of the sdist with wheel 0.31.0
- msrestazure dependency version range
## 0.4.0 (2018-01-02)
**Features**
- Delete all resources associated with cluster with the optional
deleteAll paramater.
## 0.3.0 (2017-10-25)
**Features**
- AC... | {
"pile_set_name": "Github"
} |
/*
Note: The MPU6886 is an I2C sensor and uses the Arduino Wire library.
Because the sensor is not 5V tolerant, we are using a 3.3 V 8 MHz Pro Mini or
a 3.3 V Teensy 3.1. We have disabled the internal pull-ups used by the Wire
library in the Wire.h/twi.c utility file. We are also using the 400 kHz fast
I2C mode by... | {
"pile_set_name": "Github"
} |
describe "Output", ->
el = undefined
beforeEach ->
document.body.innerHTML = """
<section class="quo">
<header></header>
</section>"""
el = $$ "section"
it "can get the descendants of each element in the current instance", ->
children = el.find "header"
expect(children.leng... | {
"pile_set_name": "Github"
} |
one
two
three
four
| {
"pile_set_name": "Github"
} |
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Preprocessed version of "boost/mpl/vector.hpp" header
// -- DO NOT modify by hand!
namespace boost { namespace... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2017 ObjectBox Ltd. 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 appl... | {
"pile_set_name": "Github"
} |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/reexports.R
\docType{import}
\name{reexports}
\alias{reexports}
\alias{mutate}
\alias{group_by}
\alias{get_summary_stats}
\title{Objects exported from other packages}
\keyword{internal}
\description{
These objects are imported from other pack... | {
"pile_set_name": "Github"
} |
{******************************************************************************}
{* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********}
{******************************************************************************}
{* A binary compatible implementation of MD5 ********************************... | {
"pile_set_name": "Github"
} |
The following files extend or replace some of the the newlib functionality:
_startup.c: a customised startup sequence, written in C
_exit.c: a customised exit() implementation
_syscalls.c: local versions of the libnosys/librdimon code
_sbrk.c: a custom _sbrk() to match the actual linker scripts
assert.c: implemen... | {
"pile_set_name": "Github"
} |
(:
: eXist-db Open Source Native XML Database
: Copyright (C) 2001 The eXist-db Authors
:
: info@exist-db.org
: http://www.exist-db.org
:
: This library is free software; you can redistribute it and/or
: modify it under the terms of the GNU Lesser General Public
: License as published by the Free Software Foun... | {
"pile_set_name": "Github"
} |
# makefile for libpng on BeOS x86 ELF with gcc
# modified from makefile.linux by Sander Stoks
# Copyright (C) 2002, 2006, 2008, 2010-2011 Glenn Randers-Pehrson
# Copyright (C) 1999 Greg Roelofs
# Copyright (C) 1996, 1997 Andreas Dilger
#
# This code is released under the libpng license.
# For conditions of distribution... | {
"pile_set_name": "Github"
} |
package toml
// tomlType represents any Go type that corresponds to a TOML type.
// While the first draft of the TOML spec has a simplistic type system that
// probably doesn't need this level of sophistication, we seem to be militating
// toward adding real composite types.
type tomlType interface {
typeString() str... | {
"pile_set_name": "Github"
} |
from __future__ import division, absolute_import, print_function
import math
import textwrap
import sys
import pytest
import numpy as np
from numpy.testing import assert_, assert_equal
from . import util
class TestF77Callback(util.F2PyTest):
code = """
subroutine t(fun,a)
integer a
cf2py intent(o... | {
"pile_set_name": "Github"
} |
/* crypto/hmac/hmac.h */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-c... | {
"pile_set_name": "Github"
} |
// go run mksyscall.go -tags linux,riscv64 syscall_linux.go syscall_linux_riscv64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build linux,riscv64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func Fa... | {
"pile_set_name": "Github"
} |
/*
* Warewolf - Once bitten, there's no going back
* Copyright 2019 by Warewolf Ltd <alpha@warewolf.io>
* Licensed under GNU Affero General Public License 3.0 or later.
* Some rights reserved.
* Visit our website for more information <http://warewolf.io/>
* AUTHORS <http://warewolf.io/authors.php> , CONTRIBUTORS... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html class="no-js">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Veneto Admin · 404 </title>
<meta name="description" content="">
<meta name="v... | {
"pile_set_name": "Github"
} |
/*
---
name: Locale.es-AR.Date
description: Date messages for Spanish (Argentina).
license: MIT-style license
authors:
- Ãlfons Sanchez
- Diego Massanti
requires:
- /Locale
- /Locale.es-ES.Date
provides: [Locale.es-AR.Date]
...
*/
Locale.define('es-AR', 'Date', {
months: [... | {
"pile_set_name": "Github"
} |
test_types
6. Built-in types
6.1 Truth value testing
6.2 Boolean operations
6.3 Comparisons
6.4 Numeric types (mostly conversions)
6.4.1 32-bit integers
6.4.2 Long integers
6.4.3 Floating point numbers
6.5 Sequence types
6.5.1 Strings
6.5.2 Tuples [see test_tuple.py]
6.5.3 Lists [see test_list.py]
6.6 Mappings == Dicti... | {
"pile_set_name": "Github"
} |
import copy
import operator
from functools import wraps, update_wrapper
# You can't trivially replace this `functools.partial` because this binds to
# classes and returns bound instances, whereas functools.partial (on CPython)
# is a type and its instances don't bind.
def curry(_curried_func, *args, **kwargs):
de... | {
"pile_set_name": "Github"
} |
# @expo-google-fonts/dm-mono



;
* 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 writin... | {
"pile_set_name": "Github"
} |
<?xml version='1.0' encoding="utf-8"?>
<charsets>
<copyright>
Copyright (C) 2003 MySQL AB
Use is subject to license terms
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the ... | {
"pile_set_name": "Github"
} |
# Beacuse AWS Lambda uses an older version of glibc than nixpkgs, we need to build fully static
# binaries.
#
# Unfortunately we cannot build a haskell static binary if the package uses template haskell.
# This is because haskell uses dynamically linked libraries to run template haskell at compile
# time, however we ha... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.