text
stringlengths
2
99.9k
meta
dict
--- title: "kona" layout: formula --- {{ content }}
{ "pile_set_name": "Github" }
use micro_code_gen::{MicroCodeList, Pla}; #[derive(Default)] pub struct Decoder { pla: Pla, } impl Decoder { pub fn decode(&self, op: i32, in_cb_mode: bool) -> MicroCodeList { use std::convert::TryFrom; self.pla.microcodes_for(u8::try_from(op).unwrap(), in_cb_mode) } pub fn interrupt_...
{ "pile_set_name": "Github" }
#ifndef _LINUX_ALF_QUEUE_H #define _LINUX_ALF_QUEUE_H /* linux/alf_queue.h * * ALF: Array-based Lock-Free queue * * Queue properties * - Array based for cache-line optimization * - Bounded by the array size * - FIFO Producer/Consumer queue, no queue traversal supported * - Very fast * - Designed as a queu...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>FooTable - jQuery plugin for responsive HTML tables</title> <meta name="viewport" content="width = device-width, initial-scale = 1.0, minimum-scale = 1.0, maximum-scale = 1.0, user-scalable = no"/> <link href='http://fonts....
{ "pile_set_name": "Github" }
require('../../modules/es6.reflect.set'); module.exports = require('../../modules/_core').Reflect.set;
{ "pile_set_name": "Github" }
/* * Copyright (C) 2013 The Android Open Source Project * * 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 app...
{ "pile_set_name": "Github" }
# This source code refers to The Go Authors for copyright purposes. # The master list of authors is in the main Go distribution, # visible at https://tip.golang.org/AUTHORS.
{ "pile_set_name": "Github" }
/* * Copyright (C) 2011 Google Inc. All rights reserved. * Copyright (C) 2012 Intel Corporation. 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 mu...
{ "pile_set_name": "Github" }
package org.springframework.cloud.heroku; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.when; import java.util.Map; import org.junit.Test; /** * @author Ramnivas Laddad */ public class HerokuCon...
{ "pile_set_name": "Github" }
RSpec.describe 'Inferring schema from database' do include_context 'users' include_context 'posts' with_adapters do context "when database schema exists" do it "infers the schema from the database relations" do conf.relation(:users) expect(container.relations.users.to_a) .to ...
{ "pile_set_name": "Github" }
DDK sdk for x86 and x64 platforms. ---------------------------------- You can check for existance of this optional package by verifying the definition of the macro MINGW_HAS_DDK_H. The DDK headers are from the ReactOS project, from their svn repo svn://svn.reactos.org/reactos/trunk/reactos/include/ddk/ This is an op...
{ "pile_set_name": "Github" }
(function ($) { "use strict"; /* --------------- LobiPanel Function ---------------*/ $(function () { $('.lobipanel-basic').lobiPanel({ sortable: true, reload: { icon: 'ti-loop' }, ...
{ "pile_set_name": "Github" }
/* * sortable_core.js */ (function( $ ) { module( "sortable: core" ); test( "#9314: Sortable: Items cannot be dragged directly into bottom position", function() { expect( 1 ); var el = $( ".connectWith" ).sortable({ connectWith: ".connectWith" }); TestHelpers.sortable.sort( $( "li", el[ 1 ] )[ 0 ], 0, -1...
{ "pile_set_name": "Github" }
package com.matisse.photoview; import android.view.MotionEvent; import android.widget.ImageView; class Util { static void checkZoomLevels(float minZoom, float midZoom, float maxZoom) { if (minZoom >= midZoom) { throw new IllegalArgumentException( ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="BYZ-3...
{ "pile_set_name": "Github" }
'use strict'; // B.2.3.6 String.prototype.fixed() require('./_string-html')('fixed', function (createHTML) { return function fixed() { return createHTML(this, 'tt', '', ''); }; });
{ "pile_set_name": "Github" }
<!-- Copyright (c) 2012, Ben Fortuna All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: o Redistributions of source code must retain the above copyright notice, this list of c...
{ "pile_set_name": "Github" }
// --------------------------------------------------------------------- // // Copyright (C) 2014 - 2020 by the deal.II authors // // This file is part of the deal.II library. // // The deal.II library is free software; you can use it, redistribute // it, and/or modify it under the terms of the GNU Lesser General // Pu...
{ "pile_set_name": "Github" }
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\...
{ "pile_set_name": "Github" }
#pragma warning disable 108 // new keyword hiding #pragma warning disable 114 // new keyword hiding namespace Windows.Media.Playback { #if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__ #if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ ...
{ "pile_set_name": "Github" }
package org.batfish.dataplane.ibdp; import com.google.common.annotations.VisibleForTesting; import java.util.HashSet; import java.util.IdentityHashMap; import java.util.Map; import java.util.Set; import javax.annotation.Nonnull; import javax.annotation.ParametersAreNonnullByDefault; import org.batfish.datamodel.Abstra...
{ "pile_set_name": "Github" }
package fann /* #include <fann.h> */ import "C" //list all activation functions type ActivationFunc C.enum_fann_activationfunc_enum var LINEAR ActivationFunc = C.FANN_LINEAR var THRESHOLD ActivationFunc = C.FANN_THRESHOLD var THRESHOLD_SYMMETRIC ActivationFunc = C.FANN_THRESHOLD_SYMMETRIC var SIGMOID ActivationFunc ...
{ "pile_set_name": "Github" }
from x64dbgpy.pluginsdk import * import x64dbgpy import os import subprocess import yara import distorm3 from time import sleep import struct import sys sys.path.insert(0, os.path.dirname(os.path.realpath(__file__))) from x86devirt_jmp import decodeJumps def findLabelLocation(labels, searchLabel): ...
{ "pile_set_name": "Github" }
net: "mobilenet_train.prototxt" test_iter: 37 test_interval:100 base_lr: 0.001 momentum: 0.9 momentum2: 0.999 type: "Adam" lr_policy: "fixed" display: 100 max_iter: 30000 snapshot: 1000 snapshot_prefix: "models/mobilenet_finetune" solver_mode: GPU
{ "pile_set_name": "Github" }
source :rubygems gem 'uglifier' gem 'rake'
{ "pile_set_name": "Github" }
<fieldset> <legend id="gn-harvest-settings-selected-schedule-title"> <span data-translate="">harvesterSchedule</span> <div id="gn-harvest-settings-selected-schedule-buttons" class="btn-group pull-right" data-toggle="buttons"> <label id="gn-harvest-settings-selected-schedule-buttons-enable" ...
{ "pile_set_name": "Github" }
digraph G{ margin="0"; node[shape=circle] an[label="n", style=filled, fillcolor=white, fontcolor=black]; an1[label="n-1", style=filled, fillcolor=white, fontcolor=black]; an2[label="n-2", style=filled, fillcolor=white, fontcolor=black]; adot[label="...", style=filled, fillcolor=white, fontcolor=black]; a1[lab...
{ "pile_set_name": "Github" }
// !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 0091D8F90E81B9330029341E /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0091D8F80E81B9330029341E /* OpenGL.framework */; }; 00B784B30FF439BC000DE1D7 /* Accelerate.framewor...
{ "pile_set_name": "Github" }
/* * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/l...
{ "pile_set_name": "Github" }
from unittest.mock import patch from flask import Flask from backend.common.middleware import install_middleware from backend.common.profiler import send_traces, Span, trace_context def setup_app(): app = Flask(__name__) install_middleware(app, configure_secret_key=False) return app @patch("backend.co...
{ "pile_set_name": "Github" }
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; let React; let ReactDOM; let ReactDOMServer; function getTestDocument(markup) { const d...
{ "pile_set_name": "Github" }
import os import pprint import unittest import tempfile import _hotshot import gc from test import test_support # Silence Py3k warning hotshot = test_support.import_module('hotshot', deprecated=True) from hotshot.log import ENTER, EXIT, LINE from hotshot import stats def shortfilename(fn): # We use a really sho...
{ "pile_set_name": "Github" }
/* This file is part of cpp-ethereum. cpp-ethereum 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. cpp-ethereum is ...
{ "pile_set_name": "Github" }
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#FF000000" android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/> </vector>
{ "pile_set_name": "Github" }
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2016 The Android Open Source Project * * 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 app...
{ "pile_set_name": "Github" }
/** * @file vfolder_loader.h Loader for search folder items * * Copyright (C) 2011 Lars Windolf <lars.windolf@gmx.de> * * 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 2 ...
{ "pile_set_name": "Github" }
using System.Collections.Generic; using ElmSharp; using EColor = ElmSharp.Color; namespace Xamarin.Forms.Platform.Tizen { public class SearchResultList : GenList { GenItemClass _defaultClass = null; public SearchResultList() : base(Forms.NativeParent) { SetAlignment(-1, -1); SetWeight(1, 1); Homogen...
{ "pile_set_name": "Github" }
# JMusic 最近学习了react-native的一些知识,想做一个个人项目, 发现没有好的素材下手,想起之前学习过黄轶老师炸鸡音乐的课程,于是就想用react-native实现一遍,黄轶老师的这门课含金量还是很高的, 如果认真学习下来,是可以提高一个层次 ## 效果图 #### 总览 ![](./display/15175595655a741f0d6af6b.gif) #### 歌手 ![](./display/QQ20180202-154832-HD.gif) #### 播放列表页 ![](./display/QQ20180209-170942-HD.gif) #### 搜索页面 ![](./di...
{ "pile_set_name": "Github" }
using System; namespace NexusForever.WorldServer.Network.Message.Model.Shared { // TODO: research this more, from what I can see these are the only 2 flags [Flags] public enum UpdateHealthMask { FallDamage = 0x0040, SuffocateDamage = 0x0200 } }
{ "pile_set_name": "Github" }
--TEST-- phpunit --tap BankAccountTest ../_files/BankAccountTest.php --FILE-- <?php $_SERVER['argv'][1] = '--no-configuration'; $_SERVER['argv'][2] = '--tap'; $_SERVER['argv'][3] = 'BankAccountTest'; $_SERVER['argv'][4] = dirname(__FILE__) . '/../_files/BankAccountTest.php'; require __DIR__ . '/../bootstrap.php'; PHPU...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html itemscope lang="en-us"> <head><meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta charset="utf-8"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="g...
{ "pile_set_name": "Github" }
Matrix4i m = Matrix4i::Random(); cout << "Here is the matrix m:" << endl << m << endl; cout << "Here is m.topRightCorner<2,2>():" << endl; cout << m.topRightCorner<2,2>() << endl; m.topRightCorner<2,2>().setZero(); cout << "Now the matrix m is:" << endl << m << endl;
{ "pile_set_name": "Github" }
-- Gossip Menu Conditions DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=21; INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorText...
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- module SessionsHelper def sign_in(user) remember_token = User.new_remember_token cookies.permanent[:remember_token] = remember_token user.update_attribute(:remember_token, User.encrypt(remember_token)) self.current_user = user end def signed_in? !current_user.nil? en...
{ "pile_set_name": "Github" }
@backend Feature: Check the site admin module Scenario: Check site admin pages when not connected When I go to "admin/app/page-site/list" Then the response status code should be 200 And I should see "Authentication" Scenario: Check site admin pages when connected When I am connected with "admin" a...
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 -dM -triple armv7-windows -E %s | FileCheck %s // RUN: %clang_cc1 -dM -fno-signed-char -triple armv7-windows -E %s \ // RUN: | FileCheck %s -check-prefix CHECK-UNSIGNED-CHAR // CHECK: #define _INTEGRAL_MAX_BITS 64 // CHECK: #define _M_ARM 7 // CHECK: #define _M_ARMT _M_ARM // CHECK: #define _M_ARM...
{ "pile_set_name": "Github" }
//----------------------------------------------------------------------- // <copyright file="Twitter.cs">(c) http://www.codeplex.com/MSBuildExtensionPack. This source is subject to the Microsoft Permissive License. See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx. All othe...
{ "pile_set_name": "Github" }
import 'package:flutter/material.dart'; import 'package:flutter_dojo/common/main_title_widget.dart'; import 'package:flutter_dojo/common/multi_selection_widget.dart'; import 'package:flutter_dojo/common/subtitle_widget.dart'; class DecoratedBoxWidget extends StatefulWidget { @override _DecoratedBoxWidgetState crea...
{ "pile_set_name": "Github" }
/* * es8328-i2c.c -- ES8328 ALSA SoC I2C Audio driver * * Copyright 2014 Sutajio Ko-Usagi PTE LTD * * Author: Sean Cross <xobs@kosagi.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Softw...
{ "pile_set_name": "Github" }
/* eslint-disable @typescript-eslint/naming-convention */ import { IPalette } from './IPalette'; import { IFontStyles } from './IFontStyles'; import { ISemanticColors } from './ISemanticColors'; import { ISpacing } from './ISpacing'; import { IEffects } from './IEffects'; import { IRawStyle } from '@uifabric/merge-sty...
{ "pile_set_name": "Github" }
--------------------------------------------------------------- Vortex Lattice Output -- Total Forces Configuration: cruise # Surfaces = 7 # Strips = 170 # Vortices =1700 Sref = 124.86 Cref = 4.2350 Bref = 34.320 Xref =...
{ "pile_set_name": "Github" }
/*! * VisualEditor DataModel MWNewSectionEditForceMetaItem class. * * @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ /** * DataModel force new section edit link meta item (for __NEWSECTIONLINK__). * * @class * @extends ve.dm.MetaItem * ...
{ "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 ...
{ "pile_set_name": "Github" }
Бібліографічні записи — типова структура за MARC 21 (локальні поля, підполя).
{ "pile_set_name": "Github" }
# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable ...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Routing; namespace KendoUIMVC5 { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*p...
{ "pile_set_name": "Github" }
include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for S...
{ "pile_set_name": "Github" }
<html xmlns="http://www.w3.org/1999/xhtml"> <body> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mi>cos</mi> <mo>&#x2061;</mo> <mi>x</mi> </math> </body> </html>
{ "pile_set_name": "Github" }
/* ********************************************************************************************************* * uC/GUI * Universal graphic software for embedded applications * * (c) Copyright 2002, Micrium Inc., Weston, FL * ...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 973ad6bf67f13354aad6cf347fbae740 timeCreated: 1431161510 licenseType: Pro MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
// // Thumbnails // -------------------------------------------------- // Mixin and adjust the regular image class .thumbnail { display: block; padding: @thumbnail-padding; margin-bottom: @line-height-computed; line-height: @line-height-base; background-color: @thumbnail-bg; border: 1px solid @thumbnail-b...
{ "pile_set_name": "Github" }
.\" @(#)graph.1g 6.1 (Berkeley) 4/29/85 .\" .TH GRAPH 1G "April 29, 1985" .AT 3 .SH NAME graph \- draw a graph .SH SYNOPSIS .B graph [ option ] ... .SH DESCRIPTION .I Graph with no options takes pairs of numbers from the standard input as abscissas and ordinates of a graph. Successive points are connected by straight l...
{ "pile_set_name": "Github" }
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008-2011 Gael Guennebaud <gael.guennebaud@inria.fr> // Copyright (C) 2008 Daniel Gomez Ferro <dgomezferro@gmail.com> // Copyright (C) 2013 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr> // // This Source ...
{ "pile_set_name": "Github" }
// +build go1.13 /* * * Copyright 2019 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 appli...
{ "pile_set_name": "Github" }
---[ Phrack Magazine Volume 8, Issue 53 July 8, 1998, article 13 of 15 -------------------------[ Designing and Attacking Port Scan Detection Tools --------[ solar designer <solar@false.com> ----[ Introduction The purpose of this article is to show p...
{ "pile_set_name": "Github" }
const expect = require('chai').expect; // -- App specific -- const TestHelper = require('../src/TestHelper.js'); const ConnectorFactory = require('../src/ConnectorFactory'); const InMemoryConnector = require('../connectors/inmemory/adapter'); describe('ConnectorFactory', function() { let PROJECT = null; ...
{ "pile_set_name": "Github" }
/* * SM3 secure hash, as specified by OSCCA GM/T 0004-2012 SM3 and * described at https://tools.ietf.org/html/draft-shen-sm3-hash-01 * * Copyright (C) 2017 ARM Limited or its affiliates. * Written by Gilad Ben-Yossef <gilad@benyossef.com> * * This program is free software; you can redistribute it and/or modify ...
{ "pile_set_name": "Github" }
# Unsupervised Dual Generative Adversarial Networks ## Loss Function ## Architecture Networks ## Tensorboard ![result](https://github.com/kozistr/Awesome-GANs/blob/master/DualGAN/dualgan_tb.png) ## Result *Name* | *Global Step 50k* | *Global Step 100k* | *Global Step 200k* :---: | :---: | :---: | :---: **BEGAN*...
{ "pile_set_name": "Github" }
// Copyright 2019 Google LLC // // 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 ...
{ "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" }
#!{{ ansible_python['executable'] }} # -*- coding: utf-8 -*- # Copyright (C) 2017 Maciej Delmanowski <drybjed@gmail.com> # Copyright (C) 2017 DebOps <https://debops.org/> # SPDX-License-Identifier: GPL-3.0-only # {{ ansible_managed }} from __future__ import print_function from json import dumps from sys import exit ...
{ "pile_set_name": "Github" }
y_sql : y_alter ; : y_create ; : y_drop ; : y_insert ; : y_select ; : y_update ; : y_delete ; y_alter : "ALTER" "TABLE" y_table "ADD" "COLUMN" y_columndef ; : "ALTER" "TABLE" y_table "ADD" y_columndef ; y_create : "CREATE" "TABLE" y_table "(" y_columndefs ")" ; y_drop : "D...
{ "pile_set_name": "Github" }
<map id="PxControllersHit" name="PxControllersHit"> <area shape="rect" id="node2" href="$structPxControllerHit.html" title="Describes a generic CCT hit. " alt="" coords="155,109,264,136"/> <area shape="rect" id="node3" href="$structPxExtendedVec3.html" title="PxExtendedVec3" alt="" coords="5,5,128,32"/> <area shape="re...
{ "pile_set_name": "Github" }
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-tvOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-tvOS" "${PODS_CONFIGURATION_BUILD_DIR}/QuickLayout-tvOS" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOA...
{ "pile_set_name": "Github" }
<annotation> <folder>widerface</folder> <filename>7--Cheering_7_Cheering_Cheering_7_359.jpg</filename> <source> <database>wider face Database</database> <annotation>PASCAL VOC2007</annotation> <image>flickr</image> <flickrid>-1</flickrid> </source> <owner> <flickrid>yanyu</flickrid> <name>yanyu</name> </owner> <size> <...
{ "pile_set_name": "Github" }
# For obfuscation the following hand-tuning is needed: # Before obfuscating: # - Run a configure and make # - Make the compiled project file read-only # After obfuscating: # touch regex/regcomp.ih include/hsregex.h # When a permission denied message appears: # touch main/test_char.h main/uri_delims.h # Define NDEBUG ...
{ "pile_set_name": "Github" }
angular.module('streama').controller('adminMovieCtrl', [ '$scope', 'apiService', '$stateParams', 'modalService', '$state', 'uploadService', function ($scope, apiService, $stateParams, modalService, $state, uploadService) { $scope.loading = true; $scope.LoadingSimilar = true; apiService.movie.get($stateP...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; using System.Web.Mvc; using System.Web.Optimization; using System.Web.Routing; namespace API { public class WebApiApplication : System.Web.HttpApplication { protected void Application_Start() ...
{ "pile_set_name": "Github" }
context none register --quiet echo on break q continue finish dd -d 3 -n 7 no yes yes continue
{ "pile_set_name": "Github" }
/* HTTP Hawk Authentication Scheme Copyright (c) 2012-2014, Eran Hammer <eran@hammer.io> BSD Licensed */ // Declare namespace var hawk = { internals: {} }; hawk.client = { // Generate an Authorization header for a given request /* uri: 'http://example.com/resource?a=b' or object g...
{ "pile_set_name": "Github" }
<?php require_once(PF_ROOT . "/includes/linkfinder/AB_subscription_builder.php"); class PF_AB_Subscribe extends PF_Module { ///////////////////////////// // PARENT OVERRIDE METHODS // ///////////////////////////// /** * Constructor */ public function __construct() { parent::start(); add_action( 'wp_aja...
{ "pile_set_name": "Github" }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <meta http-equiv="Content-...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialVi...
{ "pile_set_name": "Github" }
package logrus import ( "bytes" "encoding/json" "fmt" "runtime" ) type fieldKey string // FieldMap allows customization of the key names for default fields. type FieldMap map[fieldKey]string func (f FieldMap) resolve(key fieldKey) string { if k, ok := f[key]; ok { return k } return string(key) } // JSONF...
{ "pile_set_name": "Github" }
-----BEGIN PRIVATE KEY----- MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCdwUolYJfpGoJF g5HS3lqOzsdYhU/c17bvYdmzcyqJo2+j0iKRs93gmdQx5CMuGRdPDGDpSn1OauCj czxP3UN2CDOkAbg6WEqPeXc3mRmeP8LFDvdhV3jWMcAX3uVlWgPlVMIa0R6XMDl4 cjg3gd1y8yIy+v8qP2l2Un6RuDlRkhcBgtdQH818GMqWkJNn5iz/afFE3buRRWes T+BOK0QCPU9kY7El3Vl6Jhzb2PQRN/cC...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter class...
{ "pile_set_name": "Github" }
// (C) Copyright David Abrahams 2002. // 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) // See http://www.boost.org for most recent version including documentation. // Revision History // 04 Mar 2001 Patches ...
{ "pile_set_name": "Github" }
package org.pdown.gui.extension.jsruntime.polyfill.property; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.InetSocketAddress; import java.net.Proxy; import java.net...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <script> <title>troubleshoot-bgp.slax</title> <author>curtisstephencall</author> <synopsis> Perform basic troubleshooting of a BGP peering session that will not establish </synopsis> <coe>op</coe> <type>diagnose</type> <description> <![CDATA[ This script performs automatic tro...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <debug-info version="2"> <concept fqn="c:f3061a53-9226-4cc5-a443-f952ceaf5816/1068580123140:jetbrains.mps.baseLanguage.structure.ConstructorDeclaration" /> <concept fqn="c:f3061a53-9226-4cc5-a443-f952ceaf5816/1068580123155:jetbrains.mps.baseLanguage.structure.ExpressionStateme...
{ "pile_set_name": "Github" }
/* File: InstructionsViewController.h Abstract: A UIViewController for entering a Recipe's preparation instructions Version: 1.2 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation...
{ "pile_set_name": "Github" }
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "linenoise.h" void completion(const char *buf, linenoiseCompletions *lc) { if (buf[0] == 'h') { linenoiseAddCompletion(lc,"hello"); linenoiseAddCompletion(lc,"hello there"); } } char *hints(const char *buf, int *color, int *b...
{ "pile_set_name": "Github" }
StartChar: g_j Encoding: 66429 -1 2159 Width: 653 Flags: HMW AnchorPoint: "top_accent" 280 550 basechar 0 LayerCount: 2 Fore SplineSet 656 613 m 16 677 613 690 591 690 570 c 16 690 540 665 513 635 513 c 8 615 513 600 532 600 552 c 8 600 584 624 613 656 613 c 16 136 -86 m 0 123 -79 109 -82 96 -86 c 0 16 -111 -39 -...
{ "pile_set_name": "Github" }
require_relative '../../spec_helper' require 'open3' describe "Open3.capture3" do it "needs to be reviewed for spec completeness" end
{ "pile_set_name": "Github" }
/* * Copyright (c) 2012 Mellanox Technologies. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this sou...
{ "pile_set_name": "Github" }
body { background: none repeat scroll 0 0 #DADADA; color: #333333; font-family: Helvetica,Arial,sans-serif; font-size: 14px; line-height: 1.4; margin: 0; padding: 0; } .top { color: #EEEEEE; background-color: #3F3F3F; border-bottom: 2px solid #E17600; padding: 5px; height: 32px; font-size: 24...
{ "pile_set_name": "Github" }
/* Generated by RuntimeBrowser. */ @protocol GQPObjectReader <NSObject> @required - (int)beginReadingFromReader:(struct _xmlTextReader { }*)arg1 processor:(GQPProcessor *)arg2; - (int)doneReading:(GQPProcessor *)arg1; @end
{ "pile_set_name": "Github" }
/* * Copyright 2010-2011 Research In Motion Limited. * * 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 ag...
{ "pile_set_name": "Github" }
# Be sure to restart your server when you modify this file. # Your secret key is used for verifying the integrity of signed cookies. # If you change this key, all old signed cookies will become invalid! # Make sure the secret is at least 30 characters and all random, # no regular words or you'll be exposed to diction...
{ "pile_set_name": "Github" }