text
stringlengths
2
99.9k
meta
dict
/** * jQuery EasyUI 1.4.1 * * Copyright (c) 2009-2014 www.jeasyui.com. All rights reserved. * * Licensed under the GPL license: http://www.gnu.org/licenses/gpl.txt * To use it on other terms please contact us at info@jeasyui.com * */ (function($){ function _1(_2){ var _3=$.data(_2,"pagination"); var _...
{ "pile_set_name": "Github" }
package abi37_0_0.expo.modules.filesystem; import android.content.Context; import java.io.File; import java.io.IOException; import java.util.Arrays; import java.util.Collections; import java.util.EnumSet; import java.util.List; import abi37_0_0.org.unimodules.core.interfaces.InternalModule; import abi37_0_0.org.unim...
{ "pile_set_name": "Github" }
// Copyright 2015 The go-ethereum Authors // This file is part of the go-ethereum library. // // The go-ethereum 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 Foundation, either version 3 of the License...
{ "pile_set_name": "Github" }
package us.codecraft.tinyioc.aop; import org.junit.Test; import us.codecraft.tinyioc.HelloWorldService; import us.codecraft.tinyioc.HelloWorldServiceImpl; import us.codecraft.tinyioc.context.ApplicationContext; import us.codecraft.tinyioc.context.ClassPathXmlApplicationContext; /** * @author yihua.huang@dianping.com...
{ "pile_set_name": "Github" }
/* * _=_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_= * Repose * _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- * Copyright (C) 2010 - 2015 Rackspace US, Inc. * _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- * Licensed under t...
{ "pile_set_name": "Github" }
#!/bin/sh set -aeu cd "$(dirname "$0")/.." # Load config source ./script/etc/config.sh # Install dependencies ./script/bootstrap
{ "pile_set_name": "Github" }
/* * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js * * Copyright (c) 2009-2018 The MathJax Consortium * * 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 * * ...
{ "pile_set_name": "Github" }
" Menu Translations: Czech source <sfile>:p:h/menu_czech_czech_republic.1250.vim
{ "pile_set_name": "Github" }
// LeetCode 104 // [ 1. DFS ] // maxDepth = max(left, right) + 1 public int maxDepth(TreeNode root) { if (root == null){ return 0; } int left = maxDepth(root.left); int right = maxDepth(root.right); return 1 + Math.max(left, right); } ...
{ "pile_set_name": "Github" }
/**! * AngularJS file upload/drop directive with progress and abort * FileAPI Flash shim for old browsers not supporting FormData * @author Danial <danial.farid@gmail.com> * @version 2.0.5 */ (function() { var hasFlash = function() { try { var fo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash'); if...
{ "pile_set_name": "Github" }
/* This file is part of VoltDB. * Copyright (C) 2008-2020 VoltDB Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any la...
{ "pile_set_name": "Github" }
<?php /** * PHPExcel * * Copyright (c) 2006 - 2012 PHPExcel * * 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 Foundation; either * version 2.1 of the License, or (at your option) any later ve...
{ "pile_set_name": "Github" }
#if defined(__ELF__) && !defined(__FreeBSD__) /* * Copyright 2012-present 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...
{ "pile_set_name": "Github" }
--- name: Bug report about: Report a bug within the deCONZ REST-API title: '' labels: Bug report assignees: '' --- <!-- - Use this issue template to report a bug in the deCONZ REST-API. - If you want to report a bug for the Phoscon App, please head over to: https://github.com/dresden-elektronik/phoscon-app-beta ...
{ "pile_set_name": "Github" }
gcr.io/google_containers/cloud-controller-manager-ppc64le:v1.14.0-alpha.2
{ "pile_set_name": "Github" }
# CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.5 # Default target executed when no arguments are given to make. default_target: all .PHONY : default_target # The main recursive all target all: .PHONY : all # The main recursive preinstall target preinstall: .PHONY :...
{ "pile_set_name": "Github" }
body { margin-top: 65px; } .navbar-header { position: relative; top: -4px; } .navbar-brand > .icon-banner { position: relative; top: -2px; display: inline; } .icon { position: relative; top: -10px; } .logged-out iframe { display: none; width: 0; height: 0; } .page-conse...
{ "pile_set_name": "Github" }
<?php namespace Test\Integration\TRegx\CleanRegex\Replace; use InvalidArgumentException; use PHPUnit\Framework\TestCase; use Test\Utils\Functions; use TRegx\CleanRegex\Internal\InternalPattern; use TRegx\CleanRegex\Replace\NonReplaced\DefaultStrategy; use TRegx\CleanRegex\Replace\NonReplaced\ReplacePatternFactory; use...
{ "pile_set_name": "Github" }
#!/usr/bin/php <?php $configText = @file_get_contents(dirname(__FILE__) . "/../../config.json"); $configArr = json_decode($configText, true); foreach((array)$configArr['category'] as $category){ $showInfo = array( 'Name' => $category['name'], 'Icon' => '../../' . $category['icon'], 'Exec' =>...
{ "pile_set_name": "Github" }
#[doc = "Reader of register CTRLB"] pub type R = crate::R<u16, super::CTRLB>; #[doc = "Writer for register CTRLB"] pub type W = crate::W<u16, super::CTRLB>; #[doc = "Register CTRLB `reset()`'s with value 0"] impl crate::ResetValue for super::CTRLB { type Type = u16; #[inline(always)] fn reset_value() -> Sel...
{ "pile_set_name": "Github" }
.custom-tabstrip { height: 100; vertical-align: bottom; ios-overflow-safe-area-enabled: false; } .custom-tabstripitem { height: 80; width: 80; vertical-align: center; horizontal-align: center; clip-path: circle(100% at 50% 50%); } .custom-title { color: white; vertical-align: center; horizontal-...
{ "pile_set_name": "Github" }
// Copyright (C) MongoDB, Inc. 2017-present. // // 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 package bson import ( "bytes" "go.mongodb.org/...
{ "pile_set_name": "Github" }
<?php return [ /* |-------------------------------------------------------------------------- | Password Reset Language Lines |-------------------------------------------------------------------------- | | The following language lines are the default lines which match reasons | that are giv...
{ "pile_set_name": "Github" }
#! FIELDS time p.mean-1 p.between-1 p.between-2 p.highest p.moment-1-2 p.moment-1-3 p.moment-5-2 p.moment-5-3 0.000000 0.9998 1.5103 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.000000 0.9999 1.5008 0.0000 0.0001 0.0000 -0.0000 0.0000 -0.0000 2.000000 0.9994 1.5302 0.0000 0.0000 ...
{ "pile_set_name": "Github" }
/* * Copyright 2017 HugeGraph Authors * * 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, Ve...
{ "pile_set_name": "Github" }
@import url("../main.css"); /* outgoing */ .outgoingItem .timeStamp { color:#bdb410; } .outgoingItem .myBubble .indicator { background:url("../images/yellowIndicator.png") no-repeat top left; } .outgoingItem .tableBubble .tl { background:url("../images/yellowCurves.png") no-repeat top left; } .outgoingItem .t...
{ "pile_set_name": "Github" }
gc -- compaction isImmutableWhileForwarding: oop "The given object may have its header word in a forwarding block. Find the value of the isImmutable flag in the object in spite of this obstacle. " | header fwdBlock | <inline: true> header := self longAt: oop. (header bitAnd: MarkBit) ~= 0 ifTrue: ["oop is fo...
{ "pile_set_name": "Github" }
""" Basic todo list using webpy 0.3 """ import web import model import json ### Url mappings urls = ( '/', 'Index', '/login', 'Login', '/logout', 'Logout', '/del/(\d+)', 'Delete', '/service/login/(.*)/(.*)', 'ServiceLogin', '/service/todo/', 'ServiceTodoGet', '/service/todo/add/(.*)', 'Ser...
{ "pile_set_name": "Github" }
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, {Component} from 'react'; import {View} from 'react-native'; import {Provider} from 'react-redux'; import getRouter from './app/router'; import store from './app/store/' import {getLanguageCurrent} from './app/utils/a...
{ "pile_set_name": "Github" }
--- title: howl.io.InputStream --- # howl.io.InputStream InputStreams are used for reading streaming data. You don't typically create an input stream yourself, but instead get one from an another source, e.g. [Process.stdout](process.html#stdout). ## Properties ### is_closed True if the stream is closed, and false...
{ "pile_set_name": "Github" }
Some of the build files adapt to adding and removing source code files but most must be modified by hand. Here is a list of directories and the build files that must be modified or possibly need to be modified. The Cocoa project.pbxproj file is complex and should be modified with Xcode. The other build files can be edi...
{ "pile_set_name": "Github" }
import { mapFirst } from "collection-utils"; import { TargetLanguage } from "../TargetLanguage"; import { ConvenienceRenderer, ForbiddenWordsInfo } from "../ConvenienceRenderer"; import { legalizeCharacters, splitIntoWords, isLetterOrUnderscoreOrDigit, combineWords, allLowerWordStyle, ...
{ "pile_set_name": "Github" }
/* ** $Id: ltm.h,v 2.22.1.1 2017/04/19 17:20:42 roberto Exp $ ** Tag methods ** See Copyright Notice in lua.h */ #ifndef ltm_h #define ltm_h #include "lobject.h" /* * WARNING: if you change the order of this enumeration, * grep "ORDER TM" and "ORDER OP" */ typedef enum { TM_INDEX, TM_NEWINDEX, TM_GC, TM_MO...
{ "pile_set_name": "Github" }
/* * Dynamic Drawing Object Implementation * Copyright(C) 2003-2013 Jinhao(cnjinhao@hotmail.com) * * 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) * * @file: nana/gui/detail/dynamic_drawing_object.hpp * ...
{ "pile_set_name": "Github" }
/* Generalized single linkage clustering. * * Table of contents: * 1. Single linkage clustering, generalized * 2. Unit tests * 3. Test driver * 4. Example * 5. Copyright and license */ #include "esl_config.h" #include <stdlib.h> #include "easel.h" #include "esl_cluster.h" /*************...
{ "pile_set_name": "Github" }
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2004-2009 1&1 Internet AG, Germany, http://www.1und1.de License: MIT: https://opensource.org/licenses/MIT See the LICENSE file in the project'...
{ "pile_set_name": "Github" }
describe "Regexp#options", -> it "unsupported", -> expect( -> R(/foo/).options() ).toThrow('NotSupportedError') # require File.expand_path('../../../spec_helper', __FILE__) # describe "Regexp#options" do # it "returns a Fixnum bitvector of regexp options for the Regexp object" do # /cat/.options.should b...
{ "pile_set_name": "Github" }
<?php namespace BeSimple\SoapClient\Tests\ServerInterop\Fixtures; class getBook { public $isbn; }
{ "pile_set_name": "Github" }
#include "lsl_common.h" /* * [LibHandle] = lsl_loadlib_(LibPath); * Internal function to load the lab streaming layer API - please use lsl_loadlib.m instead of * this one. * * In: * LibPath : full path to the liblsl library to be loaded * * Out: * LibHandle : handle to the driver library (actually a str...
{ "pile_set_name": "Github" }
package units import ( "fmt" "strconv" "testing" ) func ExampleParseUlimit() { fmt.Println(ParseUlimit("nofile=512:1024")) fmt.Println(ParseUlimit("nofile=1024")) fmt.Println(ParseUlimit("cpu=2:4")) fmt.Println(ParseUlimit("cpu=6")) } func TestParseUlimitValid(t *testing.T) { u1 := &Ulimit{"nofile", 1024, 51...
{ "pile_set_name": "Github" }
add_library(rslidar_input input.cc) target_link_libraries(rslidar_input ${catkin_LIBRARIES} ${libpcap_LIBRARIES}) add_library(rslidar_driver rsdriver.cpp) target_link_libraries(rslidar_driver rslidar_input ${catkin_LIBRARIES}) # build the nodelet version add_library(driver_nodelet nodelet.cc rsdriver.cpp) tar...
{ "pile_set_name": "Github" }
body { margin: 0; padding: 0; font-family: sans-serif; } .clear-both { clear: both; } #root { height: 100%; } #root>.ant-spin-nested-loading { height: 100%; } .ant-spin-container { height: 100%; } .ant-spin { z-index: 1001 !important; } .ant-table-body { overflow-x: auto !impor...
{ "pile_set_name": "Github" }
JASC-PAL 0100 16 24 41 82 255 255 222 255 255 189 230 238 90 213 222 0 238 238 222 222 230 230 255 222 197 222 222 189 246 246 180 238 230 180 213 213 156 230 230 139 255 255 123 238 238 106 255 205 172
{ "pile_set_name": "Github" }
import {BidSessionCostSavingBase} from '../database-models/bid-session-cost-saving-base'; import {BidSessionBase} from '../database-models/bid-session-base'; //Generated Imports export class BidSessionCostSaving extends BidSessionCostSavingBase { //#region Generated Reference Properties //#region bidSession Prop b...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <!-- ~ Copyright 2020 ThoughtWorks, 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 ...
{ "pile_set_name": "Github" }
import os.path import json from gi.repository import GLib, Gtk from pychess import VERSION from pychess.widgets import mainwindow from pychess.System import download_file_async, prefix URL = "https://api.github.com/repos/pychess/pychess/releases/latest" LINK = "https://github.com/pychess/pychess/releases" def isgi...
{ "pile_set_name": "Github" }
# translation of RPM.po to Traditional Chinese # translation of rpm.po to # Copyright (C) 2003,2004, 2006, 2007 Free Software Foundation, Inc. # # Noriko Mizumoto <noriko@redhat.com>, 2003,2004, 2006. # Chester Cheng <ccheng@redhat.com>, 2007. msgid "" msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: http:/...
{ "pile_set_name": "Github" }
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // ...
{ "pile_set_name": "Github" }
// Copyright 2014 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. /** * @constructor * @extends {WebInspector.Object} * @param {!Element} element */ WebInspector.DropDownMenu = function(element) { /** @type {!Arr...
{ "pile_set_name": "Github" }
// Copyright 2009 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 ignore // Unicode table generator. // Data read from the web. package main import ( "bufio" "flag" "fmt" "io" "log" "net/http" "os" "os/exe...
{ "pile_set_name": "Github" }
/* Copyright Rene Rivera 2008-2015 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) */ #ifndef BOOST_PREDEF_COMPILER_EKOPATH_H #define BOOST_PREDEF_COMPILER_EKOPATH_H #include <boost/predef/version_number.h> #include <bo...
{ "pile_set_name": "Github" }
// Copyright 2006 Nemanja Trifunovic /* Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivat...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleExecutable</key> <string>${EXECUTABLE_NAME}</string> <key>CFBundleIdentifi...
{ "pile_set_name": "Github" }
/************************************************************* * * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/BasicLatin.js * * Copyright (c) 2011-2017 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Lice...
{ "pile_set_name": "Github" }
--! qt:dataset:src set hive.mapred.mode=nonstrict; -- SORT_QUERY_RESULTS -- union :map-reduce sub-queries followed by join explain SELECT unionsrc1.key, unionsrc1.value, unionsrc2.key, unionsrc2.value FROM (select 'tst1' as key, cast(count(1) as string) as value from src s1 UNION ALL ...
{ "pile_set_name": "Github" }
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved. #include "SGraphPin.h" #include "Widgets/SBoxPanel.h" #include "Widgets/Layout/SWrapBox.h" #include "Widgets/Images/SImage.h" #include "Widgets/Layout/SBox.h" #include "Widgets/Input/SButton.h" #include "GraphEditorSettings.h" #include "SGraphPanel.h" #incl...
{ "pile_set_name": "Github" }
--- title: Troubleshooting linkTitle: Troubleshooting description: Troubleshooting overview block_indexing: true menu: v2.0: identifier: troubleshooting-overview parent: troubleshoot weight: 702 isTocNested: true showAsideToc: true --- ## 1. Verify that YugabyteDB is running First, ensure that the expec...
{ "pile_set_name": "Github" }
{ "name": "MMBarricade", "version": "1.0.0", "summary": "Framework for setting up a run-time configurable local server in iOS apps.", "homepage": "https://github.com/MutualMobile/MMBarricade", "authors": { "John McIntosh": "john.mcintosh@mutualmobile.com" }, "license": "MIT", "platforms": { "ios...
{ "pile_set_name": "Github" }
# [seventies disco trivia](http://alexa.amazon.com/#skills/amzn1.ask.skill.71a09eaa-f753-44cb-a06d-34e99ddd1115) ![0 stars](../../images/ic_star_border_black_18dp_1x.png)![0 stars](../../images/ic_star_border_black_18dp_1x.png)![0 stars](../../images/ic_star_border_black_18dp_1x.png)![0 stars](../../images/ic_star_bord...
{ "pile_set_name": "Github" }
// -*- C++ -*- // // generated by wxGlade // // Example for compiling a single file project under Linux using g++: // g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp // // Example for compiling a multi file project under Linux using g++: // g++ main.cpp $(wx-config --libs) $(wx-config --cxxflags) -...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="WaveEngineAlphaVersions" value="https://www.myget.org/F/waveengine-nightly/api/v3/index.json" /> </packageSources> </configuration>
{ "pile_set_name": "Github" }
# Copyright 2017 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 applica...
{ "pile_set_name": "Github" }
# Bootstrap Notify This is a simple plugin that turns standard Bootstrap alerts into "Growl-like" notifications. ## Bower Officially Supported I would like to thank [Błażej Krysiak](https://github.com/IjinPL) for doing this! ``` bower install remarkable-bootstrap-notify ``` ## Meteor Officially Supported Meteor integ...
{ "pile_set_name": "Github" }
from PyObjCTools.TestSupport import * from Quartz.PDFKit import * class TestPDFAnnotationPopup (TestCase): @min_os_level('10.5') def testMethods(self): self.assertResultIsBOOL(PDFAnnotationPopup.isOpen) self.assertArgIsBOOL(PDFAnnotationPopup.setIsOpen_, 0) if __name__ == "__main__": main...
{ "pile_set_name": "Github" }
'use strict'; exports.__esModule = true; var _node = require('./node'); var _node2 = _interopRequireDefault(_node); var _types = require('./types'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance inst...
{ "pile_set_name": "Github" }
; RUN: opt -S -mtriple=amdgcn-- -mcpu=bonaire -loop-reduce < %s | FileCheck -check-prefix=OPT %s ; Test that loops with different maximum offsets for different address ; spaces are correctly handled. target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:6...
{ "pile_set_name": "Github" }
<?php /** * websensor.inc.php * * LibreNMS humidity sensor discovery module for Comet System Web Sensor * * 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 License, ...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Description of fernsInds</title> <meta name="keywords" content="fernsInds"> <meta name="description" content="Compute indices for each input by each fern."> <me...
{ "pile_set_name": "Github" }
Error: Program failed to validate: Error: [tsMissingOverride] at Bar (${PROJECT_BASEDIR}/src/main/type-definitions/specs/tsvalidate/OverrideMethodMissing/input.d.ts:14:20) '@override' not found on method 'foo' of type 'Bar', but it does override the parent methods Foo#foo. Add the '@override' tag. Error: [tsMissingOv...
{ "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...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/setting_container" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertic...
{ "pile_set_name": "Github" }
If you are interested in understanding the internals of Google Mock, building from source, or contributing ideas or modifications to the project, then this document is for you. # Introduction # First, let's give you some background of the project. ## Licensing ## All Google Mock source and pre-built packages are ...
{ "pile_set_name": "Github" }
// // ZHNAwesome3DMenu.h // ZHNAwesome3DMenu // // Created by zhn on 2017/9/4. // Copyright © 2017年 zhn. All rights reserved. // #import <UIKit/UIKit.h> @protocol ZHNAwesome3DMenuDelegate <NSObject> @optional - (void)ZHNAwesome3DMenuSelectedIndex:(NSInteger)index; @end @class ZHN3DMenuActivity; @interface ZHNAw...
{ "pile_set_name": "Github" }
libtclapincludedir = $(includedir)/tclap libtclapinclude_HEADERS = \ CmdLineInterface.h \ ArgException.h \ CmdLine.h \ XorHandler.h \ MultiArg.h \ UnlabeledMultiArg.h \ ValueArg.h \ UnlabeledValueArg.h \ Visitor.h Arg.h \ HelpVisitor.h \ SwitchArg.h \ MultiSwitchArg.h \...
{ "pile_set_name": "Github" }
# vinyl [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Dependency Status](https://david-dm.org/wearefractal/vinyl.png?theme=shields.io)](https://david-dm.org/wearefractal/vinyl) ## Information <table> <tr> <td>Package</td><td...
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- from plover.registry import Registry from plover_build_utils.testing import blackbox_test @blackbox_test class TestsBlackbox: def test_translator_state_handling(self): r''' # Check if the translator curtailing the list of last translations # according to its dict...
{ "pile_set_name": "Github" }
<?php /** * This file is part of the TelegramBot package. * * (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Entities\TelegramPassport\PassportElementError; us...
{ "pile_set_name": "Github" }
// Copyright Aleksey Gurtovoy 2000-2004 // Copyright Jaap Suter 2003 // // 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 the main "shift_left.hpp" header // -- DO NOT modify by ...
{ "pile_set_name": "Github" }
PublishingACL This sample shows how to create an issuance license. It takes a required path to a directory as input. It will use the ACLs on that directory to put users and rights into an issuance license. The directory provided as input must have at least one user and/or group in its ACL list. See the comments a...
{ "pile_set_name": "Github" }
/////////////////////////////////////////////////////////////////////////////////// /// OpenGL Mathematics (glm.g-truc.net) /// /// Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net) /// Permission is hereby granted, free of charge, to any person obtaining a copy /// of this software and associated documentatio...
{ "pile_set_name": "Github" }
<?php namespace Bowhead\Http\Middleware; use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier; class VerifyCsrfToken extends BaseVerifier { /** * The URIs that should be excluded from CSRF verification. * * @var array */ protected $except = [ // ]; }
{ "pile_set_name": "Github" }
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A P...
{ "pile_set_name": "Github" }
/* This file is part of Darling. Copyright (C) 2017 Lubos Dolezel Darling 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 License, or (at your option) any later version. Darling i...
{ "pile_set_name": "Github" }
package service import ( "context" "time" "github.com/go-kit/kit/endpoint" "github.com/kolide/fleet/server/kolide" ) //////////////////////////////////////////////////////////////////////////////// // Search Targets //////////////////////////////////////////////////////////////////////////////// type searchTarg...
{ "pile_set_name": "Github" }
import * as React from 'react'; import * as _ from 'lodash-es'; import { K8sResourceKind } from '../../module/k8s'; import { SectionHeading } from './headings'; export const BuildHooks: React.SFC<BuildHooksProps> = ({ resource }) => { const postCommitArgs = _.get(resource, 'spec.postCommit.args'); const postCommi...
{ "pile_set_name": "Github" }
using System; using UnityEngine.Networking; namespace UnityGLTF { [Serializable()] public class WebRequestException : Exception { public WebRequestException() : base() { } public WebRequestException(string message) : base(message) { } public WebRequestException(string message, Exception inner) : base(message,...
{ "pile_set_name": "Github" }
# Put initialization code in this file.
{ "pile_set_name": "Github" }
--- - name: Check kuryr containers become: true kolla_docker: action: "compare_container" common_options: "{{ docker_common_options }}" name: "{{ item.value.container_name }}" image: "{{ item.value.image }}" privileged: "{{ item.value.privileged|default(False) }}" cap_add: "{{ item.value.cap...
{ "pile_set_name": "Github" }
--- title: "Format Parameters | Microsoft Docs" ms.date: "09/13/2016" --- # Format Parameters The following table lists recommended names and functionality for parameters that are used to format or to generate data. |Parameter|Functionality| |---|---| |**As**<br>Data type: Keyword|Implement this parameter to specify ...
{ "pile_set_name": "Github" }
<constant_variable xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5" comment="Affected IOSXE versions" datatype="string" id="oval:org.cisecurity:var:1973" version="1"> <value>^0*16\.0*6\.0*1$</value> <value>^0*16\.0*6\.0*2$</value> <value>^0*16\.0*6\.0*3$</value> <value>^0*16\.0*7\.0*1$</value> <valu...
{ "pile_set_name": "Github" }
{ "extends": "../../tsconfig", "include": [ "src/*", "spec/*" ], "compilerOptions": { "outDir": "dist/types" } }
{ "pile_set_name": "Github" }
let SCNLightTypeAmbient: String let SCNLightTypeOmni: String let SCNLightTypeDirectional: String let SCNLightTypeSpot: String @available(iOS 8.0, *) enum SCNShadowMode : Int { init?(rawValue rawValue: Int) var rawValue: Int { get } case forward case deferred case modulated } @available(iOS 8.0, *) class SCNL...
{ "pile_set_name": "Github" }
<?php if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 include_once(G5_LIB_PATH.'/thumbnail.lib.php'); // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0); $thumb_width = 210; $thumb_height = 150; $list_count = (is_array($list) && $lis...
{ "pile_set_name": "Github" }
from requests.exceptions import ConnectionError from scrapyd_client.utils import JSONDecodeError def test_decode_error(mocker, script_runner): mock_response = mocker.Mock() mock_response.json.side_effect = JSONDecodeError('', '', 0) mock_get = mocker.patch('scrapyd_client.utils.requests.get', autospec=T...
{ "pile_set_name": "Github" }
Inconsolata is a humanist monospace font designed for source code listings, terminal emulators, and similar uses. It was influenced by the proprietary Consolas monospace font, designed by Lucas de Groot, the proportional Avenir and IBM's classic monospace Letter Gothic. Inconsolata has received favorable reviews from ...
{ "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 colltab contains functionality related to collation tables. // It is only to be used by the collate and search packages. package colltab // import "g...
{ "pile_set_name": "Github" }
/** * Created by JetBrains PhpStorm. * User: taoqili * Date: 12-1-30 * Time: 下午12:50 * To change this template use File | Settings | File Templates. */ var wordImage = {}; //(function(){ var g = baidu.g, flashObj,flashContainer; wordImage.init = function(opt, callbacks) { showLocalPath("localPath"); //crea...
{ "pile_set_name": "Github" }
// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2010 The Go Authors. All rights reserved. // https://github.com/golang/protobuf // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met...
{ "pile_set_name": "Github" }
<!-- kv3 encoding:text:version{e21c7f3c-8a33-41c5-9977-a76d3a32aa0d} format:generic:version{7412167c-06e9-4698-aff2-e63eb59037e7} --> { config = "scripts/ai/guardian/bt_config.kv3" root = { type = "decorator_hiding_spot_service" domain = "AllBots" output_hiding_spot = "HidingSpot" distance_threshold = 800 ...
{ "pile_set_name": "Github" }
// Copyright 2014 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. #ifndef MOCK_ENUM_H #define MOCK_ENUM_H // Here is our mock enum. Beyond testing it is completely meaningless. // MockEnum follows strict rules for valid...
{ "pile_set_name": "Github" }