text stringlengths 3 1.05M |
|---|
/* Common */
/* Responsive Breakpoints */
/* Transitions - Based on Angular Material */
/* Elevation - Based on Angular Material */
/* Image aspect ratio calculator */
/* Responsive breakpoints */
.md-stepper {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: column;
flex-flow: column;
position: relati... |
R CMD REMOVE --library=$PREFIX/lib/R/library/ MeSH.PCR.db
|
#include "Benchmark.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkColorPriv.h"
#include "SkDraw.h"
#include "SkMatrix.h"
#include "SkPath.h"
#include "SkRasterClip.h"
class DrawPathBench : public Benchmark {
SkPaint fPaint;
SkString fName;
SkPath fPath;
SkRasterClip fRC;
... |
def MergeLikeValuesFromSamePage(all_values):
"""Merges values that measure the same thing on the same page.
A page may end up being measured multiple times, meaning that we may end up
with something like this:
ScalarValue(page1, 'x', 1)
ScalarValue(page2, 'x', 4)
ScalarValue(page1, 'x', 2)
... |
// Type definitions for Google Recaptcha v2
// Project: https://www.google.com/recaptcha
// Definitions by: Kristof Mattei <http://kristofmattei.be>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare var grecaptcha: ReCaptchaV2.ReCaptcha;
declare module ReCaptchaV2
{
class ReCaptcha
{
/**
... |
package deployment
import (
"fmt"
"reflect"
"sort"
"strconv"
"github.com/golang/glog"
"k8s.io/api/core/v1"
extensions "k8s.io/api/extensions/v1beta1"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
utilerrors "k8s.io/apimachinery/pkg/util... |
Learning how to do CS2103 step by step.
Wish I had more time.... |
using System;
namespace System.Xml.Serialization
{
/// <include file='doc\XmlTextAttribute.uex' path='docs/doc[@for="XmlTextAttribute"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Param... |
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
namespace PHPSecLib;
/**
* Pure-PHP implementation of Triple DES.
*
* Uses mcrypt, if available, and an internal implementation, otherwise. Operates in the EDE3 mode (encrypt-decrypt-encrypt).
*
* PHP versions 4 and 5
*
* Here's a short exam... |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _pure = require('recompose/pure');
var _pure2 = _interopRequireDefault(_pure);
var _SvgIcon = require('../../SvgIcon');
var _SvgIcon2 = _interopRequireDe... |
<?php
namespace BrocardJr\Geo\Facades;
use Illuminate\Support\Facades\Facade;
class GeoServices extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'geoservices';
}
}
|
var WebdriverIO = require('./lib/webdriverio'),
Multibrowser = require('./lib/multibrowser'),
ErrorHandler = require('./lib/utils/ErrorHandler'),
package = require('./package.json'),
path = require('path'),
fs = require('fs');
// expose version number
module.exports.version = package.version;
... |
package org.wso2.identity.integration.test.oauth2;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.test... |
import contextlib
import httplib
import mock
from neutron.openstack.common import importutils
from neutron.tests import base
from neutron.tests.unit.ryu import fake_ryu
class RyuAgentTestCase(base.BaseTestCase):
_AGENT_NAME = 'neutron.plugins.ryu.agent.ryu_neutron_agent'
def setUp(self):
super(Ryu... |
#include <aws/apigateway/model/DeleteIntegrationRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::APIGateway::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
DeleteIntegrationRequest::DeleteIntegrationRequest() :
m_restApiIdHasBeenSet(fals... |
<refentry id="callout.graphics.number.limit">
<refmeta>
<refentrytitle>callout.graphics.number.limit</refentrytitle>
<refmiscinfo role="type">integer</refmiscinfo>
</refmeta>
<refnamediv>
<refname>callout.graphics.number.limit</refname>
<refpurpose>Number of the largest callout graphic</refpurpose>
</refnamediv>
<refs... |
using System;
using System.Globalization;
using System.Xml;
namespace Orchard.ContentManagement.FieldStorage {
public class SimpleFieldStorage : IFieldStorage {
public SimpleFieldStorage(Func<string, Type, string> getter, Action<string, Type, string> setter) {
Getter = getter;
Sett... |
<?php
/**
* Purge using AmazonSNS object
*/
w3_require_once(W3TC_LIB_W3_DIR . '/Enterprise/SnsBase.php');
w3_require_once(W3TC_LIB_DIR . '/SNS/services/MessageValidator/Message.php');
w3_require_once(W3TC_LIB_DIR . '/SNS/services/MessageValidator/MessageValidator.php');
/**
* Class W3_Sns
*/
class W3_Enterprise_... |
package topo
import (
"github.com/gonum/graph"
"github.com/gonum/graph/traverse"
)
// IsPathIn returns whether path is a path in g.
//
// As special cases, IsPathIn returns true for a zero length path or for
// a path of length 1 when the node in path exists in the graph.
func IsPathIn(g graph.Graph, path []graph.N... |
// Copyright 2017 The Bazel 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 appl... |
dojo.provide("dojo.data.api.Notification");
dojo.require("dojo.data.api.Read");
dojo.declare("dojo.data.api.Notification", dojo.data.api.Read, {
// summary:
// This is an abstract API that data provider implementations conform to.
// This file defines functions signatures and intentionally leaves all the
// fun... |
from django.db import models
from django.forms import ModelForm
class Entry(models.Model):
ENTRY_TYPE_CHOICES = (
(-1, 'Expenses'),
(1, 'Income'),
)
desc = models.CharField(max_length=100)
amount = models.DecimalField(max_digits=10, decimal_places=2)
type = models.IntegerField(choic... |
package libdocker
import (
"encoding/json"
"fmt"
"hash/fnv"
"math/rand"
"os"
"reflect"
"sort"
"strconv"
"strings"
"sync"
"time"
dockertypes "github.com/docker/docker/api/types"
dockercontainer "github.com/docker/docker/api/types/container"
dockerimagetypes "github.com/docker/docker/api/types/image"
... |
An external delegate is a special Tensorflow Lite delegate that is simply
initialized from loading a dynamic library which encapsulates an actual
Tensorflow Lite delegate implementation. The actual delegate exposes the
following two creation and deletion C APIs:
* __tflite_plugin_create_delegate__ (declaration seen be... |
This guide will walk you through installing and getting started with the kit. You don’t need any technical knowledge to follow along. If you get stuck, post a message on Slack, or if you have a developer on your team, they should be able to help.
Installation takes up to 30 minutes depending on how much you need to in... |
package edu.cmu.hcii.whyline.trace;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import edu.cmu.hcii.whyline.bytecode.Invoke;
import edu.cmu.hcii.whyline.util.IntegerVector;
import edu.cmu.hcii.whyline.util.Saveable;
/**
*
* @author Andrew J. Ko
*
*/
public final... |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Overrides -->
<color name="apptheme_splash_background">#4A4A4A</color>
<color name="apptheme_launcher_background">@color/apptheme_splash_background</color>
</resources>
|
/**
* @author Anas Nashif
* @author Eugene Yarmosh
*/
//
// WsManTest2_data.h
//
// This file is intended to be eventually generated by a codegen tool
//
#ifndef __WS_MAN_TEST_H__
#define __WS_MAN_TEST_H__
#define WS_MAN_TEST_RESOURCE_URI "wsman:system/2005/06/test2"
// The resource is modeled as a struct
s... |
package jep.example.io.xml;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* This class implements a representation of {@link Plane} which uses XML-binding which allows the
* class to be used in a {@... |
#import "COAttributedString.h"
#import "COAttributedStringDiff.h"
#import "COAttributedStringWrapper.h"
#include "diff.h"
// FIXME: Hack to get -insertObjects:atIndexes:hints:forProperty:
#import "COObject+Private.h"
@implementation COAttributedStringDiff
@synthesize operations = _operations;
static bool arraycom... |
cd $HELM_PLUGIN_DIR
version="$(cat plugin.yaml | grep "version" | cut -d '"' -f 2)"
echo "Installing helm-gcs ${version} ..."
# Find correct archive name
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) os=Linux;;
Darwin*) os=Darwin;;
CYGWIN*) os=Cygwin;;
MINGW*|M... |
final class Test {
public static String returnString() {
return "42";
}
} |
#ifndef SdFat_h
#define SdFat_h
/**
* \file
* \brief SdFat class
*/
#include "SysCall.h"
#include "BlockDriver.h"
#include "FatLib/FatLib.h"
#include "SdCard/SdioCard.h"
//------------------------------------------------------------------------------
/** SdFat version YYYYMMDD */
#define SD_FAT_VERSION 20160913
//=... |
package org.apache.zeppelin.kotlin.reflect;
import kotlin.reflect.KFunction;
/**
* Util class for pretty-printing Kotlin variables and functions.
*/
public class KotlinReflectUtil {
public static String functionSignature(KFunction<?> function) {
return function.toString().replaceAll("Line_\\d+\\.", "");
}... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AzureStack.Management.InfrastructureInsights.Admin.Models;
namespace InfrastructureInsights.Tests {
class InfrastructureInsightsCommon {
// TODO: Compare tags
publi... |
title: What are and how to use Observables in RxJS
tags: [typescript, javascript, rxjs]
date: 2018-12-30T05:25:44.226Z
path: blog/top-7-rxjs-patterns
cover: ./preview.png
excerpt: Learn all that you need to know about Observables The following is an Observable that pushes the values `1`, `2`, `3` immediately (synchrono... |
package org.apache.camel.component.cxf.spring;
import org.apache.camel.component.cxf.CXFTestSupport;
import org.apache.camel.component.cxf.NullFaultListener;
import org.apache.camel.component.cxf.jaxrs.testbean.CustomerService;
import org.apache.cxf.logging.FaultListener;
import org.junit.Test;
public class CxfRsCli... |
yum -y erase gtk2 libX11 hicolor-icon-theme avahi freetype bitstream-vera-fonts
yum -y clean all
rm -rf VBoxGuestAdditions_*.iso
# Remove traces of mac address from network configuration
sed -i /HWADDR/d /etc/sysconfig/network-scripts/ifcfg-eth0
|
'use strict';
WaveSurfer.WebAudio = {
Defaults: {
fftSize: 1024,
smoothingTimeConstant: 0.3
},
/*
ac: new (window.AudioContext || window.webkitAudioContext),
*/
/**
* Initializes the analyser with given params.
*
* @param {Object} params
* @param {String} par... |
package com.consol.citrus.ws.config.xml;
import com.consol.citrus.config.util.BeanDefinitionParserUtils;
import com.consol.citrus.config.xml.AbstractServerParser;
import com.consol.citrus.server.AbstractServer;
import com.consol.citrus.ws.server.WebServiceServer;
import org.springframework.beans.factory.support.Bean... |
title: 'Week 9 (Mar 1st - 7th)'
date: 03/01/2016
published: false
---
<!--- Your weekly summary content goes below here -->
<!--- Your weekly summary content goes above here -->
===
<!--- Your weekly materials content goes below here -->
|
<?php
/**
* The template for displaying posts in the Video post format
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php twentyfourteen_post_thumbnail(); ?>
<header class="entry-header">
<?php if ( in_a... |
' 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.IO
Imports System.Reflection.Metadata
Imports Microsoft.CodeAnalysis.Emit
Imports Microsoft.CodeAnalysis.Test.Utilities
Imports Microsoft.Metad... |
gRPC in 3 minutes (Ruby)
========================
BACKGROUND
-------------
For this sample, we've already generated the server and client stubs from [helloworld.proto][]
PREREQUISITES
-------------
- Ruby 2.x
This requires Ruby 2.x, as the gRPC API surface uses keyword args.
If you don't have that installed locally,... |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports Microsoft.CodeAnalysis.Remote.Testing
Imports Microsoft.CodeAnalysis.Rename.ConflictEngine
Namespace Microsof... |
require 'yaml'
def config_vb(config, i, total, name, alluxio_is_local)
# sync vagrant/shared, but shared may be created in vm, so we sync vagrant/
# we can put maven repos, hadoop binary tar to vagrant/shared so that they
# only need to be downloaded once, this is valuable for development on laptop :)
# for ot... |
<?php
namespace Concrete\Core\Cache\Level;
use Concrete\Core\Cache\Cache;
use Config;
use Stash\Driver\BlackHole;
use Stash\Pool;
/**
* Class ExpensiveCache
* This cache stores data that is expensive to build that will see a performance boost if stored on disk.
* @package Concrete\Core\Cache\Level
*/
class Expe... |
"""
This module contains functions that generate ctypes prototypes for the
GDAL routines.
"""
from ctypes import c_char_p, c_double, c_int, c_int64, c_void_p
from functools import partial
from django.contrib.gis.gdal.prototypes.errcheck import (
check_arg_errcode, check_const_string, check_errcode, check_geom,
... |
#region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2015 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 fo... |
class Sdl2 < Formula
desc "Low-level access to audio, keyboard, mouse, joystick, and graphics"
homepage "https://www.libsdl.org/"
url "https://libsdl.org/release/SDL2-2.0.5.tar.gz"
sha256 "442038cf55965969f2ff06d976031813de643af9c9edc9e331bd761c242e8785"
bottle do
cellar :any
rebuild 1
sha256 "69... |
// Namespace
var html5 = html5 || {};
// player number (for missing, same id attr)
html5.meIndex = 0;
// media types accepted by plugins
html5.plugins = {
silverlight: [
{version: [3,0], types: ['video/mp4','video/m4v','video/mov','video/wmv','audio/wma','audio/mp4','audio/m4a','audio/mp3']}
],
flash: [
{ver... |
from lib import action
class ListRunningJobs(action.JenkinsBaseAction):
def run(self):
return self.jenkins.get_jobs()
|
<?php if (!defined('APPLICATION')) exit();
class Gdn_UserException extends Exception {
/** Constructs the Gdn_ApplicationException.
*
* @param string $Message A user readable message for the exception.
* @param Exception $Previous The previous exception used for exception chaining.
*/
public function __c... |
// Copyright 2020 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.
import * as i18n from '../../core/i18n/i18n.js';
import * as UI from '../../ui/legacy/legacy.js';
import type * as Layers from './layers.js';
const UISt... |
'use strict';
(function() {
// Households Controller Spec
describe('Households Controller Tests', function() {
// Initialize global variables
var HouseholdsController,
scope,
$httpBackend,
$stateParams,
$location;
// The $resource service augments the response object with methods for updating and dele... |
package host.exp.exponent.gcm;
public class PushNotificationConstants {
public static final int MAX_COLLAPSED_NOTIFICATIONS = 5;
public static final String NOTIFICATION_MESSAGE_KEY = "message"; // deprecated
public static final String NOTIFICATION_EXPERIENCE_ID_KEY = "experienceId";
public static final String ... |
package org.kasource.web.websocket.client.parameter;
import java.util.List;
import org.kasource.commons.reflection.parameter.binder.AnnotationParameterBinder;
import org.kasource.web.websocket.annotations.RequestParameter;
import org.kasource.web.websocket.client.HandshakeRequestData;
public class ClientRequestPara... |
local Class = require "vendor.hump.class"
local Tiny = require "vendor.tiny-ecs.tiny"
local UpdateSystem = Tiny.processingSystem(Class{})
function UpdateSystem:process(e, dt)
e:update(dt)
end
UpdateSystem.filter = Tiny.requireAll("update")
return UpdateSystem |
package com.amazonaws.services.codepipeline.model.transform;
import java.util.Map;
import java.util.Map.Entry;
import com.amazonaws.services.codepipeline.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
import stat... |
[](https://travis-ci.org/jaredhanson/passport-facebook)
[](https://coveralls.io/r/jaredhanson/passport-facebook)
[
#ifdef NULL
#undef NULL
#endif
#ifndef I286
# define NULL 0
#else
# define NULL 0L
#endif
#endif
#define Null(type) ((type)NULL)
/*
=head1 Handy Values
=for apidoc AmU||Nullch
Null character pointer.
=for apidoc AmU||Nullsv
Null SV pointer.
=cut
*/
#define Nullch Null(char*)
#define Nu... |
#ifndef SPINE_MESHATTACHMENT_H_
#define SPINE_MESHATTACHMENT_H_
#include <spine/Attachment.h>
#include <spine/Atlas.h>
#include <spine/Slot.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct spMeshAttachment spMeshAttachment;
struct spMeshAttachment {
spAttachment super;
const char* path;
int verticesCou... |
static unsigned __int64 getRawTime(void)
{
if (_glfw.win32_time.hasPC)
{
unsigned __int64 time;
QueryPerformanceCounter((LARGE_INTEGER*) &time);
return time;
}
else
return (unsigned __int64) _glfw_timeGetTime();
}
////////////////////////////////////////////////////////... |
package com.blakequ.bluetooth_manager_lib.connect;
import android.os.SystemClock;
import com.blakequ.bluetooth_manager_lib.BleManager;
import com.blakequ.bluetooth_manager_lib.BleParamsOptions;
import com.orhanobut.logger.Logger;
public class ReconnectParamsBean {
private String address;
private int number;... |
<!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... |
package photon
import (
"bytes"
"encoding/json"
)
// Contains functionality for projects API.
type ProjectsAPI struct {
client *Client
}
// Options for GetDisks API.
type DiskGetOptions struct {
Name string `urlParam:"name"`
}
// Options for GetDisks API.
type VmGetOptions struct {
Name string `urlParam:"name"... |
#include "config.h"
#include "core/rendering/RenderScrollbar.h"
#include "core/rendering/RenderScrollbarTheme.h"
#include "platform/graphics/GraphicsContext.h"
#include "platform/scroll/ScrollbarThemeClient.h"
#include "wtf/StdLibExtras.h"
namespace blink {
RenderScrollbarTheme* RenderScrollbarTheme::renderScrollba... |
<?php
/**
* @file
* Contains \Drupal\search\Tests\SearchNumberMatchingTest.
*/
namespace Drupal\search\Tests;
use Drupal\Core\Language\LanguageInterface;
/**
* Tests that numbers can be searched with more complex matching.
*
* @group search
*/
class SearchNumberMatchingTest extends SearchTestBase {
/**
... |
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports... |
/**
* @module echarts/model/Model
*/
define(function (require) {
var zrUtil = require('zrender/core/util');
var clazzUtil = require('../util/clazz');
/**
* @alias module:echarts/model/Model
* @constructor
* @param {Object} option
* @param {module:echarts/model/Model} [parentModel]
... |
"""
Overview
--------
Access to the IBM Streams execution context.
A Streams application runs distributed or standalone.
Distributed
-----------
Distributed is used when an application is submitted
to the Streaming Analytics service on IBM Bluemix cloud platform
or a IBM Streams distributed instance.
With distribute... |
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>*</members>
<name>ApexPage</name>
</types>
<types>
<members>SuperListViewViewer</members>
<name>CustomApplication</name>
</types>
<types>
<members... |
Shader::Shader(UINT32 VertexSize) :
m_pPipelineState(nullptr),
m_VertexSize(VertexSize)
{
}
Shader::~Shader()
{
}
HRESULT Shader::CreateDeviceDependentState(
ID3D12Device* pDevice,
const wchar_t* pShaderFile,
D3D12_VERSIONED_ROOT_SIGNATURE_DESC* pRootSignatureDesc,
D3D12_INPUT_ELEMENT_DESC* pInputElements,
UIN... |
Reads metrics from RabbitMQ servers via the [Management Plugin](https://www.rabbitmq.com/management.html).
For additional details reference the [RabbitMQ Management HTTP Stats](https://cdn.rawgit.com/rabbitmq/rabbitmq-management/master/priv/www/doc/stats.html).
### Configuration:
```toml
[[inputs.rabbitmq]]
## Man... |
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/pay"
android:icon="@drawable/ic_action_navigation_accept"
android:showAsAction="always"
android:title="@string/activity_pay_pay"/>
</menu> |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Cajac - Challenger Project</title>
<!-- ... |
package cmp
import (
"bytes"
"fmt"
"math/rand"
"strings"
"time"
"github.com/google/go-cmp/cmp/internal/flags"
)
var randBool = rand.New(rand.NewSource(time.Now().Unix())).Intn(2) == 0
type indentMode int
func (n indentMode) appendIndent(b []byte, d diffMode) []byte {
if flags.Deterministic || randBool {
/... |
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching ... |
// Code generated by informer-gen. DO NOT EDIT.
package v1beta1
import (
internalinterfaces "k8s.io/client-go/informers/internalinterfaces"
)
// Interface provides access to all the informers in this group version.
type Interface interface {
// ClusterRoles returns a ClusterRoleInformer.
ClusterRoles() ClusterR... |
var isTitanium = "undefined" != typeof Titanium;
var _, generatePlatformArray;
if (isTitanium) _ = require("alloy/underscore")._; else {
var platforms = require("../../platforms/index");
_ = require("../lib/alloy/underscore")._;
generatePlatformArray = function(key) {
var ret = [];
_.each(... |
/**
* @license AngularJS v1.6.0-rc.0
* (c) 2010-2016 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular) {'use strict';
/* global ngTouchClickDirectiveFactory: false */
/**
* @ngdoc module
* @name ngTouch
* @description
*
* # ngTouch
*
* The `ngTouch` module provides touch events... |
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url>
<loc>Titan Studio</loc>
<lastmod>2017-02-13</lastmod>
<changefreq>Weekly</changefreq>
<priority>1.0</priority>
</url>
</urlset> |
/**@file
*
* @defgroup dfu_bank_internal Device Firmware Update internal header for bank handling in DFU.
* @{
*
* @brief Device Firmware Update Bank handling module interface.
*
* @details This header is intended for shared definition and functions between single and dual bank
* implementatio... |
import sklearn.linear_model
from autosklearn.pipeline.components.regression.ard_regression import ARDRegression
from .test_base import BaseRegressionComponentTest
class ARDRegressionComponentTest(BaseRegressionComponentTest):
__test__ = True
res = dict()
res["default_boston"] = 0.7033160711079323
... |
package guvnor.feature.rules;
// $HASH(ee15bb4bdabae23dd989493b198c753e) (added manually)
public class Person {
private String sex;
private int age;
private String name;
private int value;
private int dummy;
public Person() {
}
public Person(int value, String ... |
package org.olat.restapi;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URI;
import java.util.List;
import javax.ws.rs.core.Me... |
package com.microsoft.azure.management.dns.v2017_10_01;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* An AAAA record.
*/
public class AaaaRecord {
/**
* The IPv6 address of this AAAA record.
*/
@JsonProperty(value = "ipv6Address")
private String ipv6Address;
/**
* Get... |
package org.springframework.boot.actuate.endpoint.mvc;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.context.Applic... |
/*
To get this list of colors inject jQuery at http://www.google.com/design/spec/style/color.html#color-color-palette
Then, run this script to get the list.
(function() {
var colors = {}, main = {};
$(".color-group").each(function() {
var color = $(this).find(".name").text().trim().toLowerCase().replace(" "... |
// Tencent is pleased to support the open source community by making RapidJSON available.
//
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip.
//
// Licensed under the MIT License (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the Lic... |
#include <stdio.h>
#include <stdlib.h>
#include "config.h"
#include "encode/base16/generic.h"
#include "encode/base64/generic.h"
#include "encode.h"
/* Base16 Interface */
#ifdef COMPILE_WIN32
DLLIMPORT
#endif
unsigned char *encode_buffer_base16(unsigned char *out, size_t *out_len, const unsigned char *in, size_t... |
function WPATH(s) {
var index = s.lastIndexOf("/");
var path = -1 === index ? "starrating/" + s : s.substring(0, index) + "/starrating/" + s.substring(index + 1);
return path;
}
function __processArg(obj, key) {
var arg = null;
if (obj) {
arg = obj[key] || null;
delete obj[key];
... |
<?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\Test... |
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('directorio', '0031_organizacion_retations'),
]
operations = [
migrations.AddField(
model_name='convocat... |
/* ThemeRoller override style sheet for jQuery Calendars Picker v2.0.0. */
.calendars-popup .ui-datepicker {
display: block;
}
#ui-datepicker-div,
.ui-datepicker-inline {
min-width: 17em;
/* font-size: 75%; */
font-size: 0.75rem;
}
#ui-datepicker-div {
z-index: 100;
}... |
CHANGELOG
=========
2.8.0
-----
* deprecated `Profiler::import` and `Profiler::export`
2.7.0
-----
* added the HTTP status code to profiles
2.6.0
-----
* deprecated `Symfony\Component\HttpKernel\EventListener\ErrorsLoggerListener`, use `Symfony\Component\HttpKernel\EventListener\DebugHandlersListener` instead
... |
/**
* Command infrastructure for the CLI.
*/
package org.springframework.boot.cli.command;
|