text
stringlengths
3
1.05M
'use strict'; var fs = require('fs'), path = require('path'), defaults = require('lodash.defaults'); var PACKAGE_NAME = require('../package.json').name; /** * Factory for find-file with the given <code>options</code> hash. * @param {{debug: boolean}} [opt] Optional options hash */ function findF...
@interface GcovTestObserver : XCTestObserver @end @implementation GcovTestObserver - (void)stopObserving { [super stopObserving]; UIApplication* application = [UIApplication sharedApplication]; [application.delegate applicationWillTerminate:application]; } @end
// XLA-specific base classes for Unary and Binary Ops. #ifndef TENSORFLOW_COMPILER_TF2XLA_KERNELS_CWISE_OPS_H_ #define TENSORFLOW_COMPILER_TF2XLA_KERNELS_CWISE_OPS_H_ #include "tensorflow/compiler/tf2xla/xla_op_kernel.h" #include "tensorflow/compiler/xla/client/client_library.h" #include "tensorflow/compiler/xla/cl...
package org.yaml.snakeyaml.constructor; import org.yaml.snakeyaml.error.YAMLException; import org.yaml.snakeyaml.nodes.Node; /** * Because recursive structures are not very common we provide a way to save * some typing when extending a constructor */ public abstract class AbstractConstruct implements Construct { ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ctltctl: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css...
define(function(require) { 'use strict'; var zrUtil = require('zrender/core/util'); var ComponentModel = require('../../model/Component'); var axisModelCreator = require('../axisModelCreator'); var PolarAxisModel = ComponentModel.extend({ type: 'polarAxis', /** * @type {m...
require 'spec_helper' describe "Admin::Projects", feature: true do include AccessMatchers describe "GET /admin/projects" do subject { admin_namespaces_projects_path } it { is_expected.to be_allowed_for :admin } it { is_expected.to be_denied_for :user } it { is_expected.to be_denied_for :visitor ...
namespace NLog.Layouts { using NLog.LayoutRenderers; /// <summary> /// A specialized layout that renders Log4j-compatible XML events. /// </summary> /// <remarks> /// This layout is not meant to be used explicitly. Instead you can use ${log4jxmlevent} layout renderer. /// </remarks> [La...
package proto // Functions for parsing the Text protocol buffer format. // TODO: message sets. import ( "encoding" "errors" "fmt" "reflect" "strconv" "strings" "unicode/utf8" ) type ParseError struct { Message string Line int // 1-based line number Offset int // 0-based byte offset from start of input ...
package org.keycloak.services.x509; import org.keycloak.Config; import org.keycloak.models.KeycloakSession; import org.keycloak.models.KeycloakSessionFactory; /** * The factory and the corresponding providers extract a client certificate * and the certificate chain (if any) from the incoming TLS connection. * *...
cask "jollysfastvnc" do version "1.64,22052516" sha256 :no_check url "https://www.jinx.de/JollysFastVNC_files/JollysFastVNC.current.dmg" name "JollysFastVNC" homepage "https://www.jinx.de/JollysFastVNC.html" livecheck do url "https://www.jinx.de/JollysFastVNC.update.12.x86_64.xml" strategy :sparkl...
package org.jetbrains.plugins.scala package findUsages package apply import com.intellij.psi._ import org.jetbrains.plugins.scala.lang.resolve.ResolvableReferenceElement import lang.psi.api.base.patterns.ScConstructorPattern import lang.psi.api.base.ScStableCodeReferenceElement class UnapplyMethodSearcher extends App...
package org.apache.ignite.startup; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Collection; import java.util.Date; import java.util.LinkedList; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util...
<?php return array( 'form' => array( 'global' => 'Ocurrio un error al guardar el formulario.', 'title' => 'Solo admite cadenas de texto con números y espacios.', 'string' => 'Solo admite cadenas de texto con números y espacios.', 'integer' => 'Solo admite números enteros sin espacios...
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.hola_videojs_h...
 namespace Spark.Search { public abstract class Expression { } public abstract class ValueExpression : Expression { } }
package org.knowm.xchange.okcoin.v3.dto.account; import com.fasterxml.jackson.annotation.JsonProperty; import java.math.BigDecimal; import lombok.Data; import org.knowm.xchange.okcoin.v3.dto.trade.FutureSide; @Data public class SwapPosition { /** Positions available to be closed, ie 1 */ @JsonProperty("avail_pos...
function f(x) { return x + 23 } function g(x) { return f(x) + 42 } assertEquals(23, f(0)); assertEquals(24, f(1)); assertEquals(67, g(2)); assertEquals(68, g(3)); // Optimize {g} with Crankshaft, causing {f} to be inlined. %OptimizeFunctionOnNextCall(g); assertEquals(65, g(0)); // Optimize {f} with Turbofan, after i...
#include "berryStatus.h" #include "internal/berryIRuntimeConstants.h" #include <QTextStream> namespace berry { const QList<IStatus::Pointer> Status::theEmptyStatusArray = QList<IStatus::Pointer>(); const IStatus::Pointer Status::OK_STATUS(const SourceLocation &sl) { IStatus::Pointer status(new Status(IStatus::...
package com.example.avjindersinghsekhon.minimaltodo; import android.animation.Animator; import android.content.Intent; import android.graphics.Color; import android.graphics.PorterDuff; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; impor...
package csrf import "net/http" // FakeCSRF returns the given token and error for testing purposes type FakeCSRF struct { Token string Err error } // Generate implements the CSRF interface func (c *FakeCSRF) Generate(w http.ResponseWriter, req *http.Request) (string, error) { return c.Token, c.Err } // Check im...
require 'spec_helper' require 'anvil' require 'heroku-api' require 'excon' require 'dpl/provider/heroku' describe DPL::Provider::Heroku do subject :provider do described_class.new(DummyContext.new, :app => 'example', :api_key => 'foo', :strategy => 'anvil', :buildpack => 'git://some-buildpack.git') end desc...
<!DOCTYPE html> <html> <!-- Copyright 2011 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> <!-- --> <head> <title> Closure Unit Tests - goog.messaging.PortNetwork </title> <script src="../base.js"></script...
package unix import ( "syscall" "unsafe" ) func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: sec, Nsec: int32(nsec)} } func setTimeval(sec, usec int64) Timeval { return Timeval{Sec: sec, Usec: int32(usec)} } func SetKevent(k *Kevent_t, fd, mode, flags int) { k.Ident = uint32(fd) k.Filter = int...
It's possible to extend RuboCop with custom cops and formatters. ### Loading Extensions Besides the `--require` command line option you can also specify ruby files that should be loaded with the optional `require` directive in the `.rubocop.yml` file: ```yaml require: - ../my/custom/file.rb - rubocop-extension ```...
<?php namespace DmMailer\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="DmMailer\Repository\Message") * @ORM\Table(name="message") * @ORM\HasLifecycleCallbacks */ class Message implements EntityInterface { use UpdatableTrait; ...
package clouderrorreporting import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" import _ "google.golang.org/genproto/googleapis/api/annotations" import google_protobuf1 "github.com/golang/protobuf/ptypes/timestamp" import ( context "golang.org/x/net/context" grpc "google.golang.org/g...
"""A simple wrapper around enum types to expose utility functions. Instances are created as properties with the same name as the enum they wrap on proto classes. For usage, see: reflection_test.py """ __author__ = 'rabsatt@google.com (Kevin Rabsatt)' class EnumTypeWrapper(object): """A utility for finding the ...
package org.apache.pig.newplan.logical.visitor; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.apache.pig.PigException; import org.apache.pig.impl.logicalLayer.FrontendException; import org.apache.pig.impl.plan.VisitorExcepti...
/*! * Bonzo: DOM Utility (c) Dustin Diaz 2011 * https://github.com/ded/bonzo * License MIT */ !function (name, definition) { if (typeof module != 'undefined') module.exports = definition() else if (typeof define == 'function' && define.amd) define(name, definition) else this[name] = definition() }('bonzo'...
/* * HCS API * * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * API version: 2.1 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ package hcsschema type WindowsCrashReporting struct { DumpFileName string `json:"D...
Difficulty: Medium https://leetcode.com/problems/odd-even-linked-list/ Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes. You should try to do it in place. The program should run in O(1) space comp...
module Rack # Rack::URLMap takes a hash mapping urls or paths to apps, and # dispatches accordingly. Support for HTTP/1.1 host names exists if # the URLs start with <tt>http://</tt> or <tt>https://</tt>. # # URLMap modifies the SCRIPT_NAME and PATH_INFO such that the part # relevant for dispatch is in the ...
package jenkins.security; import hudson.Extension; import hudson.model.PersistentDescriptor; import hudson.model.queue.Tasks; import hudson.util.DescribableList; import jenkins.model.GlobalConfiguration; import jenkins.model.GlobalConfigurationCategory; import jenkins.model.Jenkins; import net.sf.json.JSONObject; impo...
<html> <head> <title>Expresso - TDD Framework For Node</title> <style> body { font: 13px/1.4 "Helvetica", "Lucida Grande", Arial, sans-serif; text-align: center; } #ribbon { position: absolute; top: 0; right: 0; z-index: 10; } #wrapper { margin: 0 auto; padding: 50px...
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> ...
<!DOCTYPE html> <!--[if lt IE 9]><html class="lte-ie8" lang="en"><![endif]--><!--[if gt IE 8]><!--><html lang="en"> <!--<![endif]--> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <title>Search for property information from <abbr title="Her Majesty's">HM</abb...
using System; using ILCompiler.Metadata; using Internal.TypeSystem; namespace MetadataTransformTests { struct SingleFileMetadataPolicy : IMetadataPolicy { public bool GeneratesMetadata(MethodDesc methodDef) { return true; } public bool GeneratesMetadata(FieldDesc fi...
package com.facebook; import android.os.Handler; import java.util.*; import java.util.concurrent.atomic.AtomicInteger; /** * RequestBatch contains a list of Request objects that can be sent to Facebook in a single round-trip. */ public class RequestBatch extends AbstractList<Request> { private static AtomicI...
define( [ "../../core", "../../selector" // css is assumed ], function( jQuery ) { return function( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.conta...
<ul class="pager"> <li ng-class="{disabled: noPrevious(), previous: align}"><a href ng-click="selectPage(page - 1, $event)">{{getText('previous')}}</a></li> <li ng-class="{disabled: noNext(), next: align}"><a href ng-click="selectPage(page + 1, $event)">{{getText('next')}}</a></li> </ul>
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/socket/ssl_error_params.h" #include "base/bind.h" #include "base/values.h" namespace net { namespace { Value* NetLogSSLErrorCallback...
namespace crashpad { //! \brief A version of `iovec` with a `const` #iov_base field. //! //! This structure is intended to be used for write operations. // // Type compatibility with iovec is tested with static assertions in the // implementation file. struct WritableIoVec { //! \brief The base address of a memory r...
this.onfetch = function(event) { var headers = new Headers; headers.set('Content-Type', 'text/html; charset=UTF-8'); var blob = new Blob(['<title>reload='+ event.isReload + '</title>']); var response = new Response(blob, { headers: headers }); event.respondWith(response); };
class GURL; namespace performance_manager { class FrameNode; class Graph; class ProcessNode; class WorkerNode; using execution_context_priority::PriorityAndReason; namespace execution_context { class ExecutionContextObserver; class ExecutionContextObserverDefaultImpl; // The types of ExecutionContexts that are de...
module Fog module Storage class OpenStack class Real # Create a new dynamic large object manifest # # Creates an object with a +X-Object-Manifest+ header that specifies the common prefix ("<container>/<prefix>") # for all uploaded segments. Retrieving the manifest object str...
@interface TACView : UIView @end
$(function() { PushManager = window.PushManager || {}; PushManager.NewRequestDialog = PushManager.NewRequestDialog || {}; PushManager.NewRequestDialog.element = $('#create-new-request-dialog'); PushManager.NewRequestDialog.element.dialog({ autoOpen: false, title: 'Create/Edit Push Reque...
void DecoratorSceneFog::AddDecorator(std::string decorator, LevelScene* scene){ Size visible_size = Director::getInstance()->getVisibleSize(); //ÎíµÄͼƬ background_fog_1 = Sprite::create("Level6SceneFog1.png"); background_fog_1->setPosition(Point(visible_size.width / 2, visible_size.height / 2)); scene->addCh...
namespace gfx { class Insets; class Rect; class Size; class Transform; } namespace aura { // RootWindowTransformer controls how RootWindow should be placed and // transformed inside the host window. class AURA_EXPORT RootWindowTransformer { public: virtual ~RootWindowTransformer() {} // Returns the transform th...
YUI.add('querystring-parse', function(Y) { /** * <p>The QueryString module adds support for serializing JavaScript objects into * query strings and parsing JavaScript objects from query strings format.</p> * * <p>The QueryString namespace is added to your YUI instance including static methods * Y.QueryString.pars...
package org.keycloak.saml.common.util; import org.keycloak.saml.common.PicketLinkLogger; import org.keycloak.saml.common.PicketLinkLoggerFactory; import org.keycloak.saml.common.constants.GeneralConstants; import org.keycloak.saml.common.exceptions.ConfigurationException; import org.keycloak.saml.common.exceptions.Pa...
#ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ #include <list> #include "vpx/vpx_encoder.h" #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" #include "webrtc/modules/video_coding/utility/include/frame_dropp...
<html> <head> <script src="/js-test-resources/js-test.js"></script> <script src="../resources/fs-worker-test-util.js"></script> </head> <body> <p id="description"></p> <div id="console"></div> <script> startWorker('script-tests/resolve-url-sync.js'); </script> </body> </html>
// // ZBContactPersonsAPI.h // Books // // Created by Balasankar J on 17/12/13. // Copyright (c) 2013 Balasankar J. All rights reserved. // /** \addtogroup API *@{ */ #import <Foundation/Foundation.h> #import "ZBHTTPClient.h" #import "ZBContactPersonParser.h" #import "ZBCommonParser.h" /** The ZBContactPerso...
import FastSimplexNoise = require('fast-simplex-noise') var defaultNoiseGen: FastSimplexNoise = new FastSimplexNoise() var emptyOptionsNoiseGen: FastSimplexNoise = new FastSimplexNoise({}) var noiseGen: FastSimplexNoise = new FastSimplexNoise({ amplitude: 1, frequency: 0.01, max: 255, min: 0, octaves: 8, ...
var fs = require('fs') var path = require('path') var mktemp = require('mktemp') var rimraf = require('rimraf') var underscoreString = require('underscore.string') exports.makeOrRemake = makeOrRemake function makeOrRemake(obj, prop) { if (obj[prop] != null) { remove(obj, prop) } return obj[prop] = makeTmpDir...
using IsolatedIslandGame.Protocol.Communication.OperationCodes; using IsolatedIslandGame.Protocol.Communication.OperationParameters.Player; using System.Collections.Generic; namespace IsolatedIslandGame.Library.CommunicationInfrastructure.Operations.Handlers.PlayerOperationHandlers { public class ScanQR_CodeHandl...
<?php /** * An object that stubs the process of a normal method for a mock object. * * The stub object will replace the code for the stubbed method and return a * specific value instead of the original value. * * @since Interface available since Release 1.0.0 */ interface PHPUnit_Framework_MockObject_Stub exte...
package services import ( "io/ioutil" "os" "k8s.io/kubernetes/test/e2e/framework" "github.com/golang/glog" ) // e2eService manages e2e services in current process. type e2eServices struct { rmDirs []string // statically linked e2e services etcdServer *EtcdServer apiServer *APIServer nsController *Na...
import {Parser} from "./state" import "./parseutil" import "./statement" import "./lval" import "./expression" import "./location" export {Parser, plugins} from "./state" export {defaultOptions} from "./options" export {Position, SourceLocation, getLineInfo} from "./locutil" export {Node} from "./node" export {TokenTy...
<?php /** * The "rollingUpdates" collection of methods. * Typical usage is: * <code> * $replicapoolupdaterService = new Google_Service_Replicapoolupdater(...); * $rollingUpdates = $replicapoolupdaterService->rollingUpdates; * </code> */ class Google_Service_Replicapoolupdater_Resource_RollingUpdates exte...
local function chebyshev_distance(p, q) assert(#p == #q, 'vectors must have the same length') local d = 0 for i in ipairs(p) do d = math.max(d, math.abs(p[i] - q[i])) end return d end return chebyshev_distance
package com.datatorrent.lib.appdata.schemas; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.codehaus.jettison.json.JSONArray; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.slf4j.Logger; import...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct as_weighted_feature&lt;tag::median&gt;</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="t...
package com.dreamchain.skeleton.web; import org.apache.commons.logging.Log; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.CookieValue; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bi...
import os test_id = '5' data = "/home/pkrush/find-parts-faster-data/" + test_id + "/" yes = "/home/pkrush/find-parts-faster-data/" + test_id + "/train/yes/" no = "/home/pkrush/find-parts-faster-data/" + test_id + "/train/no/" model = "/home/pkrush/find-parts-faster-data/" + test_id + "/model/" warped = "/home/pkrush/f...
FROM debian:jessie MAINTAINER Jessica Frazelle <jess@docker.com> RUN apt-get update && apt-get install -y \ transmission-daemon \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* \ && mkdir -p /transmission/{download,watch,incomplete,config} \ && chmod 1777 /transmission ENV TRANSMISSION_HOME /transmissi...
$packageName = 'firefox-beta' $installerType = 'exe' $silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' $url = 'https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/39.0b6/win32/en-US/Firefox Setup 39.0b6.exe' $url64 = 'https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/39.0b6/win64/en-US/Firefox%2...
' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. Imports System.Threading Imports System.Threading.Tasks Imports Microsoft.CodeAnalysis.CodeActions Imports Microsoft.CodeAnalysis.CodeRefactorings Imports Micr...
// // GTLYouTubeChannelListResponse.m // // ---------------------------------------------------------------------------- // NOTE: This file is generated from Google APIs Discovery Service. // Service: // YouTube Data API (youtube/v3) // Description: // Supports core YouTube features, such as uploading videos, c...
<?php namespace PHPixme; /** * xorL, short for logical xor, a stand in for xor keyword * @sig ($lhs)->($rhs)-> boolean $z * @param mixed $lhs * @param mixed $rhs * @return boolean|\Closure */ function xorL($lhs = null, $rhs = null) { return call_user_func_array(__PRIVATE__::$instance[xorL], func_get_args()); } ...
@interface ASTextNodeTestDelegate : NSObject <ASTextNodeDelegate> @property (nonatomic, copy, readonly) NSString *tappedLinkAttribute; @property (nonatomic, assign, readonly) id tappedLinkValue; @end @implementation ASTextNodeTestDelegate - (void)textNode:(ASTextNode *)textNode tappedLinkAttribute:(NSString *)attri...
from marionette_test import MarionetteTestCase #TODO use @skip_if_b2g when Bug 875921 is fixed class TestTitleChrome(MarionetteTestCase): def setUp(self): MarionetteTestCase.setUp(self) self.marionette.set_context("chrome") self.win = self.marionette.current_window_handle self.mario...
namespace chromecast { namespace media { class DecoderBufferBase; class FrameGeneratorForTest { public: // Parameters used to generate frames. struct FrameSpec { FrameSpec(); ~FrameSpec(); // Indicates whether the frame comes with a new decoder configuration. bool has_config; bool is_eos; ...
package org.artificer.atom.mappers; import org.artificer.atom.i18n.Messages; import org.artificer.common.ArtificerConstants; import org.artificer.common.ontology.ArtificerOntology; import org.artificer.common.ontology.ArtificerOntologyClass; import org.w3._1999._02._22_rdf_syntax_ns_.RDF; import org.w3._2002._07.owl_...
/*body{*/ /*padding-top: 50px;*/ /*}*/ /*@media (max-width: 978px) {*/ /*body{*/ /*padding-top: 0;*/ /*}*/ /*}*/ div.border { border: 1px solid #DDDDDD; border-radius: 6px 6px 6px 6px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); } div.connection { position: absolute; left: 50%...
describe('syntax parser', function () { var typeaheadParser, scope, filterFilter; beforeEach(module('mm.foundation.typeahead')); beforeEach(inject(function (_$rootScope_, _filterFilter_, _typeaheadParser_) { typeaheadParser = _typeaheadParser_; scope = _$rootScope_; filterFilter = _filterFilter_; ...
export * from "./lib/console"; export * from "./lib/sleep";
//================================================================================================= //================================================================================================= //************************************************************************************************* // Includes //***...
#ifndef PCL_CRF_NORMAL_SEGMENTATION_HPP_ #define PCL_CRF_NORMAL_SEGMENTATION_HPP_ #include <pcl/segmentation/crf_normal_segmentation.h> #include <pcl/point_cloud.h> #include <pcl/point_types.h> ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// te...
<head> <title>struct OptionEntry</title> <link rel=stylesheet href=../../../../css/doc.css type=text/css> </head> <body> <div id="root"> <div id="banner"> </div> <div id="location"> <table width=100% class="location"><tr> <td><a href=../../../../base/index.html>base</a></td> <td>|</td><td><a href=../../../../base/sr...
using System.Collections.Generic; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Editor.CSharp.Outlining; using Microsoft.CodeAnalysis.Editor.Implementation.Outlining; using Microsoft.CodeAnalysis.Text; using Roslyn.Test.Utilities; using Roslyn.Utilities; using Xunit; u...
- bump version (getting npm 4.223 wanted version so going above that..) ## v0.4.4 - bump version (not sure what happened to v0.4.3..) ## v0.4.2 - fix async 'done' bug that would cause 'restart' call to intermittently not work (task would complete before the forever restart) - converted to a multiTask so more than one...
from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('job_board', '0019_usertoken'), ] operations = [ migrations.AlterField( model_name='company', name='country', field=model...
using Telerik.Web.UI; #endregion namespace DotNetNuke.Web.UI.WebControls { public class DnnContextMenuElementTarget : ContextMenuElementTarget { } }
package chipyard.fpga.vcu118 import sys.process._ import freechips.rocketchip.config.{Config, Parameters} import freechips.rocketchip.subsystem.{SystemBusKey, PeripheryBusKey, ControlBusKey, ExtMem} import freechips.rocketchip.devices.debug.{DebugModuleKey, ExportDebug, JTAG} import freechips.rocketchip.devices.tilel...
from __future__ import (absolute_import, division, generators, nested_scopes, print_function, unicode_literals, with_statement) from pants_test.pants_run_integration_test import PantsRunIntegrationTest class GoRunIntegrationTest(PantsRunIntegrationTest): def test_go_run_simple(self): a...
package com.example.android.apis.app; import com.example.android.apis.R; import com.example.android.apis.graphics.CubeRenderer; import android.app.Activity; import android.app.MediaRouteActionProvider; import android.app.Presentation; import android.content.Context; import android.content.DialogInterface; import an...
* The `insert(json)` method now returns a `Set<Long>` instead of a `long`. * The `fetch` methods have been renamed `select`. * The `get` methods now return the most recently added value that exists instead of the oldest existing value. * Compound operations have been refactored as batch operations, which are now implem...
<?xml version="1.0" encoding="utf-8"?> <TextView android:id="@android:id/text1" xmlns:android="http://schemas.android.com/apk/res/android" android:textColor="@color/secondary_text" android:textSize="16sp" android:gravity="start|center" style="?android:attr/spinnerDropDownItemStyle" android:p...
<?php /** * @file * Sample token endpoint. * * Obviously not production-ready code, just simple and to the point. * * In reality, you'd probably use a nifty framework to handle most of the crud for you. */ require "lib/MongoOAuth2.php"; $oauth = new MongoOAuth2(); try { $oauth->grantAccessToken(); } catch (O...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" con...
using browser_sync::FrontendDataTypeController; using browser_sync::FrontendDataTypeControllerMock; using sync_driver::ChangeProcessorMock; using sync_driver::DataTypeController; using sync_driver::ModelAssociatorMock; using sync_driver::ModelLoadCallbackMock; using sync_driver::StartCallbackMock; using testing::_; usi...
<?php namespace Symfony\Bridge\ProxyManager\LazyProxy\Tests\Instantiator; use Symfony\Bridge\ProxyManager\LazyProxy\PhpDumper\ProxyDumper; use Symfony\Component\DependencyInjection\Definition; /** * Tests for {@see \Symfony\Bridge\ProxyManager\LazyProxy\PhpDumper\ProxyDumper} * * @author Marco Pivetta <ocramius...
package tlc2.tool.distributed.selector; import tlc2.tool.distributed.TLCServer; public class BlockSelectorFactory { /** * Delegate to a custom factory if set */ private static final String FACTORY_NAME = System.getProperty("tlc2.tool.distributed.selector.factory"); /** * {@link StaticBlockSelector} system...
<title>can/route</title> <script src="../node_modules/steal/steal.js" main="can/route/route_test"></script> <div id="qunit-fixture"></div>
package com.gemstone.gemfire.internal.cache.tier.sockets; import java.io.DataInput; import java.io.DataOutput; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; imp...
<form> <div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> <div class="form-group"> <label for="exampleInputPassword1">Password</label> <input type="password" class="form-control...
export const descriptionEditor: string; export const editor: string; export const focused: string; export const editorTools: string; export const readOnly: string;