text stringlengths 3 1.05M |
|---|
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<dimen name="standard_padding">8dip</dimen>
<dimen name="half_padding">4dip</dimen>
</resources> |
package org.apache.openwhisk.core.containerpool.docker
import akka.actor.ActorSystem
import org.apache.commons.lang3.SystemUtils
import org.apache.openwhisk.common.{Logging, TransactionId}
import org.apache.openwhisk.core.{ConfigKeys, WhiskConfig}
import org.apache.openwhisk.core.containerpool.{Container, ContainerF... |
package org.hsqldb;
import org.hsqldb.HsqlNameManager.HsqlName;
import org.hsqldb.index.RowIterator;
import org.hsqldb.lib.ArrayUtil;
import org.hsqldb.lib.Iterator;
// fredt@users 20020225 - patch 1.7.0 by boucherb@users - named constraints
// fredt@users 20020320 - doc 1.7.0 - update
// tony_lai@users 20020820 -... |
package org.wso2.developerstudio.eclipse.gmf.esb.diagram.edit.helpers;
/**
* @generated
*/
public class FilterFailContainerEditHelper extends EsbBaseEditHelper {
}
|
package beego
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/astaxie/beego/context"
)
var FilterUser = func(ctx *context.Context) {
ctx.Output.Body([]byte("i am " + ctx.Input.Param(":last") + ctx.Input.Param(":first")))
}
func TestFilter(t *testing.T) {
r, _ := http.NewRequest("GET", "/person/a... |
<?xml version="1.0" encoding="UTF-8"?><!-- This file is automatically generated by swiz-gen.js. DO NOT HAND EDIT! --><table xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:id="section-Bound_checks" rules="all">
<caption>Attrib... |
<!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 org.drools.mvel.integrationtests;
import java.util.Collection;
import org.drools.testcoverage.common.util.KieBaseTestConfiguration;
import org.drools.testcoverage.common.util.KieUtil;
import org.drools.testcoverage.common.util.TestParametersUtil;
import org.junit.Test;
import org.junit.runner.RunWith;
import... |
<!DOCTYPE html>
<html>
<!--
Copyright 2007 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.
-->
<!--
Author: arv@google.com (Erik Arvidsson)
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />... |
#ifndef __SUPPORT_ZIPUTILS_H__
#define __SUPPORT_ZIPUTILS_H__
#include <string>
#include "CCPlatformConfig.h"
#include "CCPlatformDefine.h"
#include "CCPlatformMacros.h"
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
#include "platform/android/CCFileUtilsAndroid.h"
#elif(CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || ... |
using System;
namespace Orchard.Media.Models {
public class MediaFile {
public string Name { get; set; }
public string User { get; set; }
public string Type { get; set; }
public long Size { get; set; }
public string FolderName { get; set; }
public DateTime ... |
namespace base {
template <typename ObserverType>
class ObserverListThreadSafe;
template <class ObserverType>
class ObserverListBase
: public SupportsWeakPtr<ObserverListBase<ObserverType>> {
public:
// Enumeration of which observers are notified.
enum NotificationType {
// Specifies that any observers a... |
import tarfile, zipfile, re, requests
from StringIO import StringIO
class PyPiDeps(object):
#using methods from: https://github.com/ogirardot/meta-deps/blob/master/PyPi%20Metadata.ipynb
def __init__(self, package_name):
self.package_name = package_name
def _get_requires(self, content):
... |
package org.elasticsearch.test.rest.yaml.section;
import org.elasticsearch.Version;
import org.elasticsearch.common.ParsingException;
import org.elasticsearch.common.xcontent.yaml.YamlXContent;
import org.elasticsearch.test.VersionUtils;
import java.util.Collections;
import static org.hamcrest.Matchers.equalTo;
im... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Slideshow controllers Class
*
* @package SYSCMS
* @subpackage Controllers
* @category Controllers
* @author Sistiandy Syahbana nugraha <sistiandy.web.id>
*/
class Slideshow_admin extends CI_Controller {
public functio... |
import os
import stat
import sys
from os.path import join, normcase, normpath, abspath, isabs, sep, dirname
from django.utils.encoding import force_text
from django.utils import six
try:
WindowsError = WindowsError
except NameError:
class WindowsError(Exception):
pass
if six.PY2:
fs_encoding = sy... |
[](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x)
[](http://badge.fury.io/js/%40reactivex%2Frxjs)
[
// CompressorProvider describes a component that can provider compressors for the std methods.
type Compres... |
var countryApp = angular.module('countryApp', [
'ngRoute',
'countryControllers',
'countriesFactory',
'countryDirective'
]);
countryApp.config(function($routeProvider) {
$routeProvider.
when('/', {
templateUrl: 'country-list.html',
controller: 'CountryListCtrl'
}).
when('/:countryId', ... |
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
<span class="tokenize">
{{contact?.name || contact}} <i class="material-icons" (click)="removeContact(contact)">close</i>
</span> |
package org.apache.hadoop.yarn.api.protocolrecords;
import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Stable;
import org.apache.hadoop.yarn.api.ApplicationClientProtocol;
import org.apache.hadoop.yarn.util.Records;
/**
* <p>The request sent... |
class ProductsChannel < ApplicationCable::Channel
def subscribed
# stream_from "some_channel"
stream_from "products"
end
def unsubscribed
# Any cleanup needed when channel is unsubscribed
end
end
|
// 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.
#nullable disable
using System;
using System.Threading;
using Microsoft.VisualStudio.LanguageServices.Implementati... |
#include "config.h"
#if ENABLE(SVG)
#include "SVGAttributeToPropertyMap.h"
#include "SVGAnimatedProperty.h"
#include "SVGPropertyInfo.h"
#include <wtf/PassOwnPtr.h>
namespace WebCore {
void SVGAttributeToPropertyMap::addProperties(const SVGAttributeToPropertyMap& map)
{
AttributeToPropertiesMap::const_iterato... |
import sys, os
sys.path.append(sys.path[0]+os.sep+'pygccxml-1.0.0')
import pygccxml, sys, re, cStringIO, time, os
from optparse import OptionParser
# Start process time measurement
t0 = time.clock()
optionParser = OptionParser()
optionParser.add_option("--idx", action="append", dest="idx", default=[], metavar="FILE"... |
require 'deliver/setup'
describe Deliver do
describe Deliver::Setup do
it "properly downloads existing metadata" do
# app = "app"
# version = "version"
# allow(Spaceship::Application).to receive(:find).and_return(app)
# expect(app).to receive(:latest_version).and_return(version)
# e... |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Complet... |
echo "Updating version from $OLD_VERSION to $NEW_VERSION"
find flink -name 'pom.xml' -type f -exec sed -i 's#<version>$OLD_VERSION</version>#<version>$NEW_VERSION</version>#' {} \;
|
using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.Models.ContentEditing;
[DataContract(Name = "userGroup", Namespace = "")]
public class UserGroupDisplay : UserGroupBasic
{
public UserGroupDisplay()
{
Users = Enumerable.Empty<UserBasic>();
AssignedPermissions = Enumerable.Empty<As... |
package net
import (
"syscall"
"time"
)
func sockaddrToUDP(sa syscall.Sockaddr) Addr {
switch sa := sa.(type) {
case *syscall.SockaddrInet4:
return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port}
case *syscall.SockaddrInet6:
return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port, Zone: zoneToString(int(sa.ZoneId))}
}
ret... |
import os
import tempfile
import unittest
import logging
from pyidf import ValidationLevel
import pyidf
from pyidf.idf import IDF
from pyidf.unitary_equipment import UnitarySystemPerformanceMultispeed
log = logging.getLogger(__name__)
class TestUnitarySystemPerformanceMultispeed(unittest.TestCase):
def setUp(sel... |
package com.intellij.lang.xhtml;
import com.intellij.lang.xml.XMLLanguage;
/**
* @author max
*/
public class XHTMLLanguage extends XMLLanguage {
public static final XHTMLLanguage INSTANCE = new XHTMLLanguage();
private XHTMLLanguage() {
super(XMLLanguage.INSTANCE, "XHTML", "text/xhtml", "application/xhtm... |
package org.apache.hadoop.io.file.tfile;
import java.io.ByteArrayInputStream;
import java.io.Closeable;
import java.io.DataInput;
import java.io.DataInputStream;
import java.io.DataOutput;
import java.io.DataOutputStream;
import java.io.EOFException;
import java.io.IOException;
import java.io.OutputStream;
import ja... |
package ca
import (
"context"
cryptorand "crypto/rand"
"crypto/tls"
"crypto/x509"
"fmt"
"math/big"
"math/rand"
"path/filepath"
"strings"
"sync"
"time"
cfconfig "github.com/cloudflare/cfssl/config"
events "github.com/docker/go-events"
"github.com/docker/swarmkit/api"
"github.com/docker/swarmkit/connecti... |
class Spinach::Features::DashboardStarredProjects < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject
step 'I starred project "Community"' do
current_user.toggle_star(Project.find_by(name: 'Community'))
end
step 'I should not see project "Shop"' do
page.w... |
<?php
namespace FOS\UserBundle\Doctrine;
use Doctrine\Common\EventSubscriber;
use Doctrine\Common\Persistence\Event\LifecycleEventArgs;
use Symfony\Component\DependencyInjection\ContainerInterface;
use FOS\UserBundle\Model\UserInterface;
/**
* Base Doctrine listener updating the canonical username and password fi... |
import React, { PropTypes, Component } from 'react';
import { DropTarget } from 'react-dnd';
const style = {
height: '12rem',
width: '12rem',
marginRight: '1.5rem',
marginBottom: '1.5rem',
color: 'white',
padding: '1rem',
textAlign: 'center',
fontSize: '1rem',
lineHeight: 'normal',
float: 'left'
};... |
from .resource import Resource
class TrackedResource(Resource):
"""Definition of Resource.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: Resource Id
:vartype id: str
:ivar name: Resource name
:vartype name: str
:ivar type: Resource ... |
<?php
namespace Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler;
use Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler;
class PdoSessionHandlerTest extends \PHPUnit_Framework_TestCase
{
private $pdo;
protected function setUp()
{
if (!class_exists('PDO') ... |
layout: none
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title }}</title>
<description>{{ site.description }}</description>
<link>{{ site.BASE_PATH }}/</link>
<atom:link href="{{ site.BASE_PATH }}/{{ site.rss_path }}" rel="sel... |
<DisplayList>
<fxgtemplate width="940" height="700">
<spark.skins.spark.ApplicationSkin width="940" height="700" blendMode="auto">
<spark.components.Group width="940" height="700" blendMode="auto">
<spark.components.Group width="940" height="700" blendMode="auto">
<comps.MyComp width="800"... |
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... |
module DeviseLdapAuthenticatable
class InstallGenerator < Rails::Generators::Base
source_root File.expand_path("../templates", __FILE__)
class_option :user_model, :type => :string, :default => "user", :desc => "Model to update"
class_option :update_model, :type => :boolean, :default => true, :desc =>... |
import 'babel-polyfill';
|
package org.apache.camel.itest.karaf;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ops4j.pax.exam.junit.PaxExam;
@RunWith(PaxExam.class)
public class CamelMsvTest extends BaseKarafTest {
public static final String COMPONENT = extractName(CamelMsvTest.class);
@Test
public void test... |
"""
This file is responsible for centralizing the schema conventions used in nautilus.
"""
# external imports
from functools import singledispatch
# local imports
import nautilus
from .models import normalize_string, get_model_string
from nautilus.contrib.graphene_peewee import convert_peewee_field
def root_query(... |
package org.broadleafcommerce.core.rating.domain;
import org.broadleafcommerce.profile.core.domain.Customer;
import java.util.Date;
public interface RatingDetail {
public Long getId();
public void setId(Long id);
public Double getRating();
public void setRating(Double newRating);
... |
'use strict';
import nls = require('vs/nls');
import { SyncActionDescriptor } from 'vs/platform/actions/common/actions';
import { Registry } from 'vs/platform/platform';
import { QuickOpenAction } from 'vs/workbench/browser/quickopen';
import { IWorkbenchActionRegistry, Extensions as ActionExtensions } from 'vs/wo... |
// Copyright 2015 Pants project contributors (see CONTRIBUTORS.md).
// Licensed under the Apache License, Version 2.0 (see LICENSE).
package org.pantsbuild.testproject.shadingdep.subpackage;
/**
* Used to test shading support in tests/python/pants_test/java/jar/test_shader_integration.py
*/
public class Subpackaged... |
@org.spongepowered.api.util.annotation.NonnullByDefault package org.spongepowered.common.data.builder.manipulator.immutable;
|
module Gitlab
module Markdown
# HTML filter that replaces commit range references with links.
#
# This filter supports cross-project references.
class CommitRangeReferenceFilter < ReferenceFilter
include CrossProjectReference
# Public: Find commit range references in text
#
# ... |
class CPDF_Dictionary;
class CPDF_Object;
class CPDF_StructElement;
class CPDF_StructTree;
class CPDF_StructKid {
public:
enum Type { kInvalid, kElement, kPageContent, kStreamContent, kObject };
CPDF_StructKid();
CPDF_StructKid(const CPDF_StructKid& that);
~CPDF_StructKid();
Type m_Type = kInvalid;
uint... |
include $(SDK_ROOT)/mk/common.mk
define SOURCES
keypad_test.c
endef
include $(SDK_ROOT)/mk/targets.mk
|
<?php
namespace Symfony\Bridge\Doctrine\Tests\Form\ChoiceList;
use Symfony\Bridge\Doctrine\Test\DoctrineTestHelper;
use Symfony\Bridge\Doctrine\Tests\Fixtures\GroupableEntity;
use Symfony\Bridge\Doctrine\Tests\Fixtures\SingleIntIdEntity;
use Symfony\Bridge\Doctrine\Tests\Fixtures\SingleIntIdNoToStringEntity;
use Sy... |
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/extensions-test.js"></script>
<script src="../../http/tests/inspector/timeline-test.js"></script>
<script type="text/javascript">
function initialize_timelineExtensionTest()
{
InspectorTest.enabl... |
package imagepolicy
import (
"context"
"crypto/tls"
"crypto/x509"
"encoding/json"
"math/rand"
"net/http"
"net/http/httptest"
"reflect"
"strconv"
"testing"
"time"
"k8s.io/api/imagepolicy/v1alpha1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apiserver/pkg/admission"
"k8s.io/apiserver/pkg/auth... |
namespace spvtools {
namespace opt {
// See optimizer.hpp for documentation.
class ReduceLoadSize : public Pass {
public:
const char* name() const override { return "reduce-load-size"; }
Status Process() override;
// Return the mask of preserved Analyses.
IRContext::Analysis GetPreservedAnalyses() override {... |
from givabit.backend.donation_proportion import DonationProportion
from givabit.backend.payment import Payment
from givabit.backend.user import User
from google.appengine.ext import db
class DonationProportionRepository(object):
@db.transactional
def add_donation_proportion(self, donation_proportion):
... |
package volume
import (
"fmt"
"time"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/client/cache"
clientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/watch"
"github.com/golang/glog"
"k8s.i... |
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2012 Google Inc. 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... |
#ifndef IO_H
#define IO_H
#include <stdint.h>
class IO
{
public:
IO(uint8_t port, uint8_t pin, bool isOn = false, bool onIsHigh = true);
virtual void setState(bool on);
virtual bool getState() const;
void on();
void off();
void toggle();
virtual void setOpenDrain(bool isOpenDrain);
virtual void setInput();... |
require "vagrant"
module VagrantPlugins
module CommandPush
class Plugin < Vagrant.plugin("2")
name "push command"
description <<-DESC
The `push` command deploys code in this environment.
DESC
command("push") do
require File.expand_path("../command", __FILE__)
Comman... |
if (NOT TARGET dependencies::libressl)
include(dependencies/common)
option(WITH_SYSTEM_LIBRESSL "Don't build libressl with the project" ON)
add_library(dependencies::libressl INTERFACE IMPORTED)
add_library(dependencies::libressl::ssl UNKNOWN IMPORTED)
add_dependencies(dependencies::libressl::ssl dependencies_... |
using namespace SDKTemplate;
Platform::Array<Scenario>^ MainPage::scenariosInner = ref new Platform::Array<Scenario>
{
{ "Omnidirectional source", "SDKTemplate.Scenario1_OmnidirectionalSound" },
{ "Cardioid source", "SDKTemplate.Scenario2_CardioidSound" },
{ "Custom decay", "SDKTemplate.Scenario3_CustomDec... |
<?php
/**
* Interface defining a browser device type.
*
* @category Zend
* @package Zend_Http
* @subpackage UserAgent
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface Zend_Http_U... |
/**
* @file dllexport.h
* @brief Symbols for exporting classes and methods from DLLs
* @author Richard Roberts
* @date Mar 9, 2013
*/
#ifdef _WIN32
# ifdef GTSAM_EXPORTS
# define GTSAM_EXPORT __declspec(dllexport)
# define GTSAM_EXTERN_EXPORT __declspec(dllexport) extern
# else
# ifndef ... |
namespace ui {
namespace {
const char kChromeSelection[] = "CHROME_SELECTION";
const char kIncr[] = "INCR";
const char* kAtomsToCache[] = {
kChromeSelection,
kIncr,
NULL
};
// The period of |abort_timer_|. Arbitrary but must be <= than
// kRequestTimeoutMs.
const int kTimerPeriodMs = 100;
// The amount of ti... |
"use strict"
const report = require("../../utils/report")
const ruleMessages = require("../../utils/ruleMessages")
const validateOptions = require("../../utils/validateOptions")
const ruleName = "keyframe-declaration-no-important"
const messages = ruleMessages(ruleName, {
rejected: "Unexpected !important",
})
con... |
package blunderbuss
import (
"fmt"
"math"
"math/rand"
"regexp"
"sort"
"github.com/sirupsen/logrus"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/test-infra/prow/github"
"k8s.io/test-infra/prow/pluginhelp"
"k8s.io/test-infra/prow/plugins"
"k8s.io/test-infra/prow/plugins/assign"
"k8s.io/test-infra/prow/rep... |
/**
* [manage_account.js]
encoding=utf-8
*/
var _promiseCreateAccount = function( userNameStr, passKeyStr ){
var url = "./api/v1/activitylog/signup";
var axiosInstance = _acount_hook.axios;
var promise = axiosInstance.post(
url,
{ // postData
"username" : userNameStr,
... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="Source to the Rust file `C:/bot/slave/nightly-dist-rustc-win-64/build/src/libcollections\btree... |
package org.apache.hadoop.thriftfs;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.apache.commons.logging.L... |
install one or more Helm plugins
### Synopsis
This command allows you to install a plugin from a url to a VCS repo or a local path.
Example usage:
$ helm plugin install https://github.com/technosophos/helm-template
```
helm plugin install [options] <path|url>...
```
### Options
```
--version string ... |
package com.iancaffey.x86.io.fpu;
/**
* FPUVisitor
*
* @author Ian Caffey
* @see <a href="https://software.intel.com/sites/default/files/managed/39/c5/325462-sdm-vol-1-2abcd-3abcd.pdf">Intel Developer's Manual</a>
* @since 1.0
*/
public interface FPUVisitor extends FPUArithmeticVisitor, FPUComparisonVisitor, FPU... |
package com.spikes.umarells.models;
import com.google.firebase.database.IgnoreExtraProperties;
import com.google.firebase.database.PropertyName;
import java.util.HashMap;
import java.util.Map;
/**
* Created by Luca Rossi on 05/07/2017.
*/
@IgnoreExtraProperties
public class Review {
private static final Str... |
var inst = require("../index").getInstance();
inst.applyConfig({ debug: true, filter: "debug" });
module.exports = inst.use("history-html5");
|
using System.Collections.Immutable;
using Analyzer.Utilities;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Diagnostics;
namespace Microsoft.NetFramework.Analyzers
{
/// <summary>
/// CA2236: Call base class methods on ISerializable types
/// </summary>
public abstract class CallBaseClassM... |
This Java library contains classes that allows you to do payments and call other methods of Yandex.Money public API.
## Requirements
The library uses:
* [OkHttp][1] 3.8.1
* [Google GSON][2] 2.8.1
## Usage
### Gradle Dependency (jCenter)
[ that, when called, substitutes
// an explicitly seeded RC4-based algorithm for Math.random(). Also
// supports automatic seeding from local or network sources of entropy.
//
// Usage:
//
// <script src=http://davidba... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="http://yui.yahooapis.com/3.8.0/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
... |
YUI.add('intl', function (Y, NAME) {
var _mods = {},
ROOT_LANG = "yuiRootLang",
ACTIVE_LANG = "yuiActiveLang",
NONE = [];
/**
* Provides utilities to support the management of localized resources (strings and formatting patterns).
*
* @module intl
*/
/**
* The Intl utility provides a central loca... |
/*! Formstone v0.4.7 [background.css] 2015-04-10 | MIT License | formstone.it */
/**
* @class
* @name .fs-background-element
* @type element
* @description Target elmement
*/
/**
* @class
* @name .fs-background
* @type element
* @description Base widget class
*/
.fs-background {
overflow: hidden;... |
package com.google.security.zynamics.binnavi.API.disassembly;
import static org.junit.Assert.assertEquals;
import com.google.security.zynamics.binnavi.Database.MockClasses.MockSqlProvider;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public final ... |
set -euo pipefail
if [[ ! -d "${RUNFILES_DIR:-/dev/null}" && ! -f "${RUNFILES_MANIFEST_FILE:-/dev/null}" ]]; then
if [[ -f "$0.runfiles_manifest" ]]; then
export RUNFILES_MANIFEST_FILE="$0.runfiles_manifest"
elif [[ -f "$0.runfiles/MANIFEST" ]]; then
export RUNFILES_MANIFEST_FILE="$0.runfiles/MANIFEST"
el... |
package org.apache.camel.itest.jetty;
import java.io.InputStream;
import org.apache.camel.ValidationException;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.AvailablePortFinder;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;
public class JettyValidatorTest ... |
(function() {
/**
* The ProfilerViewer module provides a graphical display for viewing
* the output of the YUI Profiler <http://developer.yahoo.com/yui/profiler>.
* @module profilerviewer
* @requires yahoo, dom, event, element, profiler, yuiloader
*/
/**
* A widget to view YUI Prof... |
{% extends "databrowse/base_site.html" %}
{% block title %}Databrowse{% endblock %}
{% block bodyid %}homepage{% endblock %}
{% block content %}
{% for model in model_list %}
<div class="modelgroup {% cycle 'even' 'odd' %}">
<h2><a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a></h2>
<p>
... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ex... |
class Foo(val v: String) extends AnyVal { private def len = v.length ; def f = len }
|
#include "src/core/lib/security/util/json_util.h"
#include <string.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
const char *grpc_json_get_string_property(const grpc_json *json,
const char *prop_name) {
grpc_json *child;
for (child = json->chil... |
import { JOSENotSupported } from '../util/errors.js';
function validateCrit(Err, recognizedDefault, recognizedOption, protectedHeader, joseHeader) {
if (joseHeader.crit !== undefined && protectedHeader.crit === undefined) {
throw new Err('"crit" (Critical) Header Parameter MUST be integrity protected');
... |
<?php
namespace Vox\Mastermind\Enum;
class ScoreEnum
{
const BOM = 5;
}
|
'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('-webkit-border-vertical-spacing', v);
},
get: function () {
return this.getPropertyValue('-webkit-border-vertical-spacing');
},
enumerable: true,
configurable: true
};
|
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
//
// Reference.h: Rcpp R/C++ interface class library -- Reference class objects
//
// Copyright (C) 2010 - 2015 Dirk Eddelbuettel and Romain Francois
//
// This file is part of Rcpp.
//
// Rcpp is free software: you can redistribute it... |
<?php
/**
* Parses expressions.
*
* This parser implements a "Precedence climbing" algorithm.
*
* @see http://www.engr.mun.ca/~theo/Misc/exp_parsing.htm
* @see http://en.wikipedia.org/wiki/Operator-precedence_parser
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class Twig_ExpressionParser
{
const... |
layout: kanji
v4: 365
v6: 390
kanji: 滅
keyword: destroy
elements: destroy, water, water droplets, water pistol, march, fire
strokes: 13
image: E6BB85
on-yomi: メツ
kun-yomi: ほろ.びる、ほろ.ぶ、ほろ.ぼす
permalink: /rtk/滅/
prev: 威
next: 減
---
1) [<a href="http://kanji.koohii.com/profile/samuize">samuize</a>] 20-7-2007(208): Water fl... |
#ifndef HEADER_CURL_SHARE_H
#define HEADER_CURL_SHARE_H
#include "curl_setup.h"
#include <curl/curl.h>
#include "cookie.h"
#include "urldata.h"
/* SalfordC says "A structure member may not be volatile". Hence:
*/
#ifdef __SALFORDC__
#define CURL_VOLATILE
#else
#define CURL_VOLATILE volatile
#endif
/* this struct i... |
#define JEMALLOC_QUARANTINE_C_
#include "jemalloc/internal/jemalloc_internal.h"
/*
* quarantine pointers close to NULL are used to encode state information that
* is used for cleaning up during thread shutdown.
*/
#define QUARANTINE_STATE_REINCARNATED ((quarantine_t *)(uintptr_t)1)
#define QUARANTINE_STATE_PURGATOR... |
package edu.berkeley.path.beats.calibrator;
import java.util.*;
import edu.berkeley.path.beats.jaxb.FundamentalDiagramSet;
import edu.berkeley.path.beats.sensor.SensorLoopStation;
import edu.berkeley.path.beats.simulator.*;
/** Fundamental diagram calibration routine.
*
* <p> Implements fundamental diagram fitt... |