text stringlengths 3 1.05M |
|---|
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <err.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <string.h> // memcpy
#include <stdlib.h> //realloc
#include <pthread.h>
#include <nfc/nfc.h>
#include <freefare.h>
#include <zmq.h>
#include "log.h"
#include "keydiversif... |
/**
* Binds a TinyMCE widget to <textarea> elements.
*/
angular.module('ui.tinymce', [])
.value('uiTinymceConfig', {})
.directive('uiTinymce', ['$rootScope', '$compile', '$timeout', '$window', '$sce', 'uiTinymceConfig', function($rootScope, $compile, $timeout, $window, $sce, uiTinymceConfig) {
uiTinymceConfig... |
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class AccountConfig(AppConfig):
name = 'allauth.account'
verbose_name = _('Accounts')
|
package org.apache.ignite.visor.commands.kill
import org.apache.ignite._
import org.apache.ignite.cluster.ClusterNode
import org.apache.ignite.internal.IgniteNodeAttributes._
import org.apache.ignite.internal.util.scala.impl
import org.apache.ignite.visor.VisorTag
import org.apache.ignite.visor.commands.common.Visor... |
package org.apache.camel.component.infinispan;
public interface InfinispanConstants {
String EVENT_TYPE = "CamelInfinispanEventType";
String IS_PRE = "CamelInfinispanIsPre";
String CACHE_NAME = "CamelInfinispanCacheName";
String KEY = "CamelInfinispanKey";
String VALUE = "CamelInfinispanValue";
... |
<!doctype html>
<html lang="{{ LANGUAGE_CODE }}"{% if LANGUAGE_BIDI %} dir="rtl"{% endif %}>
{% load pages_tags mezzanine_tags i18n staticfiles %}
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<meta name="keywords" content... |
NS_ASSUME_NONNULL_BEGIN
extern const NSUInteger RACReplaySubjectUnlimitedCapacity;
/// A replay subject saves the values it is sent (up to its defined capacity)
/// and resends those to new subscribers. It will also replay an error or
/// completion.
@interface RACReplaySubject : RACSubject
/// Creates a new replay ... |
<head>
<title>iRestaurant</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<link rel="icon" type="image/png" href="http://i.imgur.com/NiMs19M.png">
</head>
<template name="loginPage">
<body class="login" id="hello">
{{>landingpage}}
</body>
</template>
|
public interface TennisGame {
void wonPoint(String playerName);
String getScore();
} |
/*!
* vinyl-bufferstream | MIT (c) Shinnosuke Watanabe
* https://github.com/shinnn/vinyl-bufferstream
*/
'use strict';
var BufferStreams = require('bufferstreams');
module.exports = function VinylBufferStream(fn) {
if (typeof fn !== 'function') {
throw new TypeError(
fn +
' is not a function. The ... |
local ffi = require "ffi"
local types = require "path.win32.ffi.types"
ffi.cdef[[
DWORD __stdcall GetCurrentDirectoryA( DWORD nBufferLength, CHAR* lpBuffer);
DWORD __stdcall GetCurrentDirectoryW( DWORD nBufferLength, CHAR* lpBuffer);
BOOL __stdcall SetCurrentDirectoryA(const CHAR* lpPathName);
BOOL __s... |
namespace RenderCore { namespace Assets
{
class DelayedDrawCall
{
public:
// The "variation hash" is the primary sorting
// parameter. It should represent the type of shader
// to use. It becomes a critical factor when sorting
// lists of draw calls.
u... |
package com.alugarei.cielo
import com.alugarei.cielo.domain._
import org.scalatest._
import org.scalatest.MustMatchers._
import org.scalatest.concurrent.ScalaFutures
import org.scalatest.time.{Seconds, Span}
/**
* Teste para Cielo
*
* Created by Gustavo on 04/02/2016.
*/
class CieloSpec extends FlatSpec with Scal... |
package org.apache.camel.component.atom;
import java.util.List;
import org.apache.abdera.model.Feed;
import org.apache.camel.Exchange;
import org.apache.camel.Message;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelTestSupp... |
from django.contrib import admin
from populous.photogalleries.models import Gallery, GalleryPhoto, GallerySet
class GallerySetAdmin(admin.ModelAdmin):
fieldsets = (
(None, {'fields': ('name', 'slug', 'description', 'template_name', 'sites')}),
)
list_display = ('name',)
list_filter = ('date_cr... |
#include <assert.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "sol-buffer.h"
#include "sol-flow-internal.h"
#include "sol-flow-static.h"
#include "sol-list.h"
#include "sol-mainloop.h"
#include "sol-util-internal.h"
struct node_info {
uint16_t first_conn_idx;
};
st... |
package jodd.madvoc.action;
import jodd.mutable.MutableInteger;
public class Person {
private String name;
private MutableInteger data;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public MutableInteger getData() {
return data;
}
public void setDa... |
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Upgrading from 2.1.0 to 2.1.1 : CodeIgniter U... |
{% extends "sentry/layout.html" %}
{% load sentry_api %}
{% block body %}
<div id="blk_router">
<div class="loading triangle">
<div class="loading-mask"></div>
<div class="loading-indicator"></div>
<div class="loading-message">
<p>Please wait while we load an obnoxious amount of JavaSc... |
package org.elasticsearch.benchmark.checksum;
import org.elasticsearch.common.unit.ByteSizeValue;
import org.elasticsearch.common.unit.TimeValue;
import java.security.MessageDigest;
import java.util.zip.Adler32;
import java.util.zip.CRC32;
/**
*
*/
public class ChecksumBenchmark {
public static final int BA... |
layout: relation
title: 'expl'
shortdef: 'expletive'
---
This relation captures expletive or pleonastic nominals. These are nominals that appear in an argument position of a predicate but which do not themselves satisfy any of the semantic roles of the predicate. There is further discussion and examples on the univers... |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
Active Scan Rules
</title>
</head>
<body bgcolor="#ffffff">
<h1>Active Scan Rules</h1>
The following release quality active scan rules are included in this add-on:
<h2>Buffe... |
using System;
using System.Linq;
using Microsoft.WindowsAzure;
namespace Microsoft.WindowsAzure.Management.Compute.Models
{
/// <summary>
/// The Virtual Machine Template Capture Role operation response.
/// </summary>
public partial class VirtualMachineCaptureVMImageParameters : OperationResponse
... |
/********************************************************************************
** Form generated from reading UI file 'frameechelle.ui'
**
** Created by: Qt User Interface Compiler version 5.8.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
**************************************... |
package monotime
import (
"time"
)
// Time represents a point in monotonic time
type Time uint64
func (t Time) Add(d time.Duration) Time {
return Time(uint64(t) + uint64(d.Nanoseconds()))
}
|
.class public Lcom/android/internal/telephony/IccSmsInterfaceManagerProxy;
.super Lcom/android/internal/telephony/ISms$Stub;
.source "IccSmsInterfaceManagerProxy.java"
# static fields
.field private static final TAG:Ljava/lang/String; = "IccSmsInterfaceManagerProxy"
.field private static mSmsInterfaceManager_Phone1:... |
<?php
/**
* Class Offers
* @property Offer_m $offer_m
*/
class Offers extends Back_controller
{
private $error = '';
public function __construct()
{
parent::__construct();
if (!$this->isLogged()) {
redirect(site_url('admin/auth/login'));
}
$this->load->mod... |
var async = require("async");
var util = require("util");
var path = require("path");
var fs = require("fs");
var repoServer = require("./ObjectRepositoryServer");
function getGroups(userDB, cb) {
var groups = userDB.users.reduce(function(allGroups, user) {
var groups = user.custom.groups || [];
if... |
"""Base class of builders.
It defines methods which builder should support: SetUp(), Build(), Deploy(),
SyncToHead(). Also, it sets up basic data members based on given options:
base_dir, board, and reuse_repo. And repo_dir is derived from base_dir.
"""
from __future__ import print_function
import os
from chromite.... |
package org.kaaproject.kaa.server.common.dao.impl;
import org.apache.commons.io.IOUtils;
import org.kaaproject.kaa.server.common.dao.model.ToDto;
import org.kaaproject.kaa.server.common.dao.model.sql.GenericModel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.io.In... |
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="latest_ob.xsl" type="text/xsl"?>
<current_observation version="1.0"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.weather.gov/view/current_observation.... |
<?xml version="1.0" encoding="UTF-8"?>
<templateSet group="Zen XSL">
<template description="<xsl:template match="..." mode="...">...</xsl:template>" name="tmatch" toReformat="true" toShortenFQNames="true" value="<xsl:template match="$VAR0$" mode="$VAR1$">$END$... |
void test01()
{
bool test __attribute__((unused)) = true;
typedef std::tr1::unordered_map<std::string, int> Map;
typedef Map::iterator iterator;
typedef Map::const_iterator const_iterator;
typedef Map::value_type value_type;
Map m1;
iterator it1 = m1.insert(m1.begin(),
value_type("a... |
<?php
namespace Symfony\Component\Templating\Tests;
use Symfony\Component\Templating\TemplateNameParser;
use Symfony\Component\Templating\TemplateReference;
class TemplateNameParserTest extends \PHPUnit_Framework_TestCase
{
protected $parser;
protected function setUp()
{
$this->parser = new Te... |
package hudson.node_monitors;
import hudson.model.Computer;
import hudson.remoting.Callable;
import hudson.Extension;
import jenkins.security.MasterToSlaveCallable;
import net.sf.json.JSONObject;
import org.jenkinsci.Symbol;
import org.kohsuke.stapler.StaplerRequest;
import java.io.IOException;
/**
* Discovers the... |
<?php
namespace Symfony\Bridge\Twig\Extension;
use Symfony\Component\Workflow\Registry;
use Symfony\Component\Workflow\Transition;
use Symfony\Component\Workflow\TransitionBlockerList;
use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;
/**
* WorkflowExtension.
*
* @author Grégoire Pineau <lyrixx@lyrix... |
using System;
/// <summary>
/// Char.IsSurrogatePair(string, index)
/// Note: This method is new in the .NET Framework version 2.0.
/// Indicates whether two adjacent Char objects at a specified position in a string form a surrogate pair.
/// </summary>
public class CharIsSurrogatePair
{
private const int c_MIN_... |
var appName;
var popupMask;
var popupDialog;
var clientId;
var realm;
var oauth2KeyName;
var redirect_uri;
function handleLogin() {
var scopes = [];
var auths = window.swaggerUi.api.authSchemes || window.swaggerUi.api.securityDefinitions;
if(auths) {
var key;
var defs = auths;
for(key in defs) {
... |
package org.apache.hadoop.hbase.hbtop.screen.top;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.hbtop.Record;
import org.apache.hadoop.hbase.hbtop.Recor... |
module RuboCop
module Cop
module Lint
# This cop checks for nested method definitions.
#
# @example
#
# # bad
#
# # `bar` definition actually produces methods in the same scope
# # as the outer `foo` method. Furthermore, the `bar` method
# # will be re... |
pytest-2.9.2
============
pytest is a mature Python testing tool with more than 1100 tests
against itself, passing on many different interpreters and platforms.
See below for the changes and see docs at:
http://pytest.org
As usual, you can upgrade from pypi via::
pip install -U pytest
Thanks to all who co... |
"""Cement core cache module."""
from ..core import backend, exc, interface, handler
Log = backend.minimal_logger(__name__)
def cache_validator(klass, obj):
"""Validates an handler implementation against the ICache interface."""
members = [
'_setup',
'get',
'set',
'delete'... |
'use strict';
var config = require('./config').config;
var now = require('./utils').now;
exports['default'] = function instrument(eventName, promise, child) {
// instrumentation should not disrupt normal usage.
try {
config.trigger(eventName, {
guid: promise._guidKey + promise._id,
... |
/**
* @author Vera Y. Petrashkova
*/
package org.apache.harmony.security.tests.java.security;
import java.security.NoSuchAlgorithmException;
import junit.framework.TestCase;
/**
* Tests for <code>NoSuchAlgorithmException</code> class constructors and
* methods.
*
*/
public class NoSuchAlgorithmExceptionTest ... |
using System;
using System.Net.Http;
using PactNet.Mocks.MockHttpService;
using PactNet.Mocks.MockHttpService.Mappers;
using PactNet.Mocks.MockHttpService.Nancy;
namespace PactNet.Tests.IntegrationTests
{
public class FailureIntegrationTestsMyApiPact : IDisposable
{
public IPactBuilder PactB... |
..
This work is licensed under a Creative Commons Attribution 3.0 Unported
License.
http://creativecommons.org/licenses/by/3.0/legalcode
===========================================
Fuel plugin to install InfluxDB and Grafana
===========================================
https://blueprints.launchpad.net/fuel/+spec/in... |
package org.jboss.arquillian.test.impl;
import org.jboss.arquillian.core.api.Instance;
import org.jboss.arquillian.core.api.InstanceProducer;
import org.jboss.arquillian.core.api.annotation.Inject;
import org.jboss.arquillian.core.api.annotation.Observes;
import org.jboss.arquillian.core.spi.EventContext;
import org.... |
FROM balenalib/apalis-imx6-alpine:3.13-build
ENV GO_VERSION 1.15.11
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && echo 'hosts: files ... |
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
-
- 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.ap... |
package org.apache.drill.exec.store.mock;
import org.apache.drill.exec.vector.ValueVector;
/**
* Interface which all mock column data generators must
* implement. Each has a {@link #setup} method which is given
* the column definition for the column. This definition may have
* additional configuration informatio... |
<?xml version="1.0" encoding="UTF-8" ?>
<ldml>
<identity>
<version number="$Revision: 1.16 $"/>
<generation date="$Date: 2009/05/05 23:06:41 $"/>
<language type="ur"/>
<territory type="IN"/>
</identity>
<numbers>
<decimalFormats>
<decimalFormatLength>
<decimalFormat>
<pattern>#,##,##0.###</patt... |
using System.Collections.Generic;
using System.Security;
using Xunit;
using Assembly = System.Reflection.Tests;
[assembly: Assembly.MyAttribute_Single("single"), Assembly.MyAttribute_AllowMultiple("multiple1"), Assembly.MyAttribute_AllowMultiple("multiple2")]
namespace System.Reflection.Tests
{
public class GetCu... |
/*
This file exists because we were seeing strange behaviour around indexing
of encrypted messages.
The bug was tracked down to the unbox cache in autobox.js, which was storing
a reference to a state which was being mutated elsewhere.
These tests are left to guard against this bug recurring
*/
const tape =... |
(function(app) {
var ActiveLabelComponent = ng.core.Component({
selector: 'active-label',
template: '<span class="active-label"' +
'*ngIf="active">' +
'Active' +
'</span>'
}).Class({
constructor: [function() { }],
activate: function() {
this.active = true;
}
... |
package com.daimajia.androidanimations.library.fading_exits;
import android.view.View;
import com.daimajia.androidanimations.library.BaseViewAnimator;
import com.nineoldandroids.animation.ObjectAnimator;
public class FadeOutAnimator extends BaseViewAnimator {
@Override
public void prepare(View target) {
... |
# Use this hook to configure devise mailer, warden hooks and so forth.
# Many of these configuration options can be set straight in your model.
Devise.setup do |config|
# The secret key used by Devise. Devise uses this key to generate
# random tokens. Changing this key will render invalid all existing
# confirmat... |
package org.apache.kafka.streams.state.internals;
import org.apache.kafka.common.serialization.Serdes;
import org.apache.kafka.common.utils.Bytes;
import org.apache.kafka.streams.KeyValue;
import org.apache.kafka.streams.state.StateSerdes;
import org.apache.kafka.test.KeyValueIteratorStub;
import org.junit.Test;
imp... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{reander by config.baseTitle + content tile}</title>
<link async href="/assets/lib/font-awesome/css/font-awesome.min.css" rel="stylesheet"/>
<link id="b... |
// 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.Immutable;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Classification.Classifie... |
package com.raizlabs.android.dbflow.processor.utils;
import com.raizlabs.android.dbflow.annotation.ForeignKey;
import com.raizlabs.android.dbflow.annotation.ForeignKeyReference;
import com.raizlabs.android.dbflow.data.Blob;
import com.raizlabs.android.dbflow.processor.Classes;
import com.raizlabs.android.dbflow.proces... |
from waffle.models import Flag, Switch
from waffle.tests.base import TestCase
class DecoratorTests(TestCase):
def test_flag_must_be_active(self):
resp = self.client.get('/flag-on')
self.assertEqual(404, resp.status_code)
Flag.objects.create(name='foo', everyone=True)
resp = self.cl... |
/* Generated by CIL v. 1.7.0 */
/* print_CIL_Input is false */
struct _IO_FILE;
struct timeval;
extern void signal(int sig , void *func ) ;
extern float strtof(char const *str , char const *endptr ) ;
typedef struct _IO_FILE FILE;
extern int atoi(char const *s ) ;
extern double strtod(char const *str , char co... |
//
// This source code implements specifications defined by the Java
// Community Process. In order to remain compliant with the specification
// DO NOT add / change / or delete method signatures!
//
package javax.persistence;
import java.lang.annotation.Target;
import java.lang.annotation.Retention;
import static j... |
class UserActionsUIHandler : public content::WebUIMessageHandler {
public:
UserActionsUIHandler();
virtual ~UserActionsUIHandler();
// WebUIMessageHandler implementation:
// Does nothing for now.
virtual void RegisterMessages() OVERRIDE;
private:
void OnUserAction(const std::string& action);
content:... |
void TokenGroupCreationToJSON(const CTokenGroupID &tgID, const CTokenGroupCreation& tgCreation, UniValue& entry, const bool extended = false) {
CTxOut creationOutput;
CTxDestination creationDestination;
GetGroupedCreationOutput(*tgCreation.creationTransaction, creationOutput);
ExtractDestination(creatio... |
'use strict';
throw new Error("Don't run `jest` directly. Run `yarn test` instead.");
|
<!---
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
"Licens... |
class AllDownloadItemNotifier : public content::DownloadManager::Observer,
public content::DownloadItem::Observer {
public:
// All of the methods take the DownloadManager so that subclasses can observe
// multiple managers at once and easily distinguish which manager a given item
... |
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}
.btn-de... |
define('tinymce/inlite/core/Measure', [
'global!tinymce.DOM',
'global!tinymce.geom.Rect',
'tinymce/inlite/core/Convert'
], function (DOM, Rect, Convert) {
var toAbsolute = function (rect) {
var vp = DOM.getViewPort();
return {
x: rect.x + vp.x,
y: rect.y + vp.y,
w: rect.w,
h: rect.h
};
};
va... |
from __future__ import print_function
from math import sqrt, pow
from glob import glob
import numpy as np
import scipy.stats
import matplotlib.pyplot as plt
from statepoint import StatePoint
##################################### USER OPTIONS
# Set filetype (the file extension desired, without the period.)
# Options... |
<?xml version="1.0" encoding="utf-8"?>
<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/unchecked"/>
|
package com.navercorp.pinpoint.test.plugin;
import java.util.List;
/**
* @author Jongho Moon
*
*/
public class PinpointPluginTestContext {
private final String agentJar;
private final String configFile;
private final List<String> requiredLibraries;
private final Class<?> testClass;
private f... |
// 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 applicable ... |
<!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=UTF-8">
<title>Make regular expression for case insensitive match</title>
</head>
<body><div class="manualnavbar" style="text-align: ce... |
function(project_dematerialize project_handle package_uri)
map_import_properties(${project_handle} project_descriptor)
map_tryget(${project_handle} uri)
ans(project_uri)
map_import_properties(${project_descriptor}
package_source
package_cache
package_materializations
)
## special treatmen... |
@implementation MRCReposViewModel
- (void)initialize {
[super initialize];
self.title = @"Repositories";
MRCOwnedReposViewModel *ownedReposViewModel = [[MRCOwnedReposViewModel alloc] initWithServices:self.services params:nil];
MRCStarredReposViewModel *starredReposViewModel = [[MRCStarredRepo... |
namespace boost { namespace python { namespace converter {
struct registration;
namespace detail
{
struct BOOST_PYTHON_DECL arg_to_python_base
# if !defined(BOOST_MSVC) || BOOST_MSVC <= 1300 || _MSC_FULL_VER > 13102179
: handle<>
# endif
{
arg_to_python_base(void const volatile* source, registration ... |
package controllers
import play.api.libs.Crypto
import play.api.mvc.{Request, Action, Controller}
import utils.WunderAPI
import scala.concurrent.Future
import scala.util.{Try, Random}
object Tasks extends Controller with WunderAPI with ListsAPIWrappers {
import utils._
import play.api.libs.concurrent.Execution.I... |
/// Copyright (c) 2012 Ecma International. All rights reserved.
/**
* @path ch15/15.2/15.2.3/15.2.3.6/15.2.3.6-4-66.js
* @description Object.defineProperty - desc.value and name.value are two numbers with different values (8.12.9 step 6)
*/
function testcase() {
var obj = {};
obj.foo = 101; // ... |
<?php
declare(strict_types=1);
namespace Roave\BetterReflectionTest\SourceLocator\SourceStubber;
use PHPUnit\Framework\TestCase;
use Roave\BetterReflection\SourceLocator\SourceStubber\StubData;
/**
* @covers \Roave\BetterReflection\SourceLocator\SourceStubber\StubData
*/
class StubDataTest extends TestCase
{
... |
closing a path
* Z = Close path
|
/** @file
*
* @defgroup ble_dtm_hw Direct Test Mode HW
* @{
* @ingroup ble_sdk_lib
* @brief Module contains hardware related function for testing RF/PHY using DTM commands.
*/
#ifndef BLE_DTM_HW_H__
#define BLE_DTM_HW_H__
#include <stdint.h>
#include <stdbool.h>
#include "nrf.h"
#ifdef __cplusplus
extern "C"... |
* George_Georgiev (Георги Георгиев) - [http://telerikacademy.com/Users/George_Georgiev](http://telerikacademy.com/Users/George_Georgiev)
* marianamn (Марияна Найденова) - [http://telerikacademy.com/Users/marianamn](http://telerikacademy.com/Users/marianamn)
* ludzhev (Стефан Луджев) - [http://telerikacademy.com/Us... |
<html><!-- Created using the cpp_pretty_printer from the dlib C++ library. See http://dlib.net for updates. --><head><title>dlib C++ Library - save_jpeg.h</title></head><body bgcolor='white'><pre>
<font color='#009900'>// Copyright (C) 2014 Davis E. King (davis@dlib.net)
</font><font color='#009900'>// License: Boost... |
<?php
namespace Symfony\Component\Config\Loader;
/**
* LoaderResolverInterface selects a loader for a given resource.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
interface LoaderResolverInterface
{
/**
* Returns a loader able to load the resource.
*
* @param mixed $resource A resour... |
/*
* nc_jumps.c - Validate where valid jumps can occur.
*/
#include <assert.h>
#include <stdlib.h>
#include "native_client/src/trusted/validator/x86/ncval_reg_sfi/nc_jumps.h"
#include "native_client/src/shared/platform/nacl_log.h"
#include "native_client/src/trusted/validator/x86/decoder/nc_inst_state_internal.h... |
<div class="dojoxGridBoolValueBox">
<div class="dojoxGridTrueBox">
<input dojoType="dijit.form.RadioButton" type='radio' name='a1' id='${_baseId}_rbTrue' checked="true"
dojoAttachPoint="rbTrue" dojoAttachEvent="onChange: onChange"/>
<div class="dojoxGridTrueLabel" for='${_baseId}_rbTrue'>${_lblTrue}</div>
</d... |
package states
import (
"fmt"
"math/rand"
"time"
"github.com/hashicorp/terraform-plugin-sdk/internal/addrs"
)
// Resource represents the state of a resource.
type Resource struct {
// Addr is the module-relative address for the resource this state object
// belongs to.
Addr addrs.Resource
// EachMode is the... |
<video width="320" height="240"
autoplay controls autobuffer
src="gear2/prog_index.m3u8"
type="application/vnd.apple.mpegurl">
</video> |
class SystemMonitorCharts
def memory_statistics
@memory_statistics ||= SystemDataCache.memory_statistics
end
def cpus_usage_data
@cpus_usage_data ||= SystemInfo.cpus_usage
end
def disks_usage_data
@disks_usage_data ||= SystemInfo.disks_usage
end
def network_interfaces_usage_data
@netwo... |
package org.docksidestage.mysql.dbflute.cbean.cq.bs;
import java.util.*;
import org.dbflute.cbean.*;
import org.dbflute.cbean.chelper.*;
import org.dbflute.cbean.ckey.*;
import org.dbflute.cbean.coption.*;
import org.dbflute.cbean.cvalue.ConditionValue;
import org.dbflute.cbean.ordering.*;
import org.dbfl... |
#include "adVector.h"
class VectorFunction;
class FieldRenderer
{
const VectorFunction *m_FieldFunction;
// this ought to be kind of temporary
// a more structured approach maybe would be better for dynamic data
static const int MAX_POINTS = 1000000;
ad::Vec4 points[MAX_POINTS];
int numPoints;
... |
<component name="InspectionProjectProfileManager">
<profile version="1.0" is_locked="false">
<option name="myName" value="Project Default" />
<option name="myLocal" value="false" />
<inspection_tool class="AndroidLintAppCompatResource" enabled="false" level="ERROR" enabled_by_default="false" />
<inspe... |
namespace Atomiv.Infrastructure.MediatR
{
public interface IMediatorRequest<TResponse> : global::MediatR.IRequest<TResponse>
{
}
/*
public interface IMediatorRequest<TRequest, TResponse> : IMediatorRequest<TResponse>
{
TRequest Request { get; set; }
}
*/
} |
layout: single
title: "Heimniederlage gegen die 5.Mannschaft der SG Solingen"
date: 2018-04-08
categories:
- Mannschaftskampf
excerpt: "08.04.2018 - Im vorgezogenen Spiel aus der 7.Runde der
2.Bezirksliga, die am Ende der Osterferien stattfand, mussten wir eine
weitere Niederlage hinnehmen ..."
---
Im vorgezogenen Sp... |
package com.microsoft.azure.management.timeseriesinsights.v2017_11_15.implementation;
import com.microsoft.azure.arm.collection.InnerSupportsGet;
import com.microsoft.azure.arm.collection.InnerSupportsDelete;
import com.microsoft.azure.arm.collection.InnerSupportsListing;
import retrofit2.Retrofit;
import com.google... |
Requests is written and maintained by Kenneth Reitz and
various contributors:
Development Lead
````````````````
- Kenneth Reitz <me@kennethreitz.com>
Urllib3
```````
- Andrey Petrov <andrey.petrov@shazow.net>
Patches and Suggestions
```````````````````````
- Various Pocoo Members
- Chris Adams
- Flavio Percoco ... |
<?php
/**
* Aurora - A HTTP Application Server of PHP Script
*
* @author panlatent@gmail.com
* @link https://github.com/panlatent/aurora
* @license https://opensource.org/licenses/MIT
*/
namespace Aurora;
use Aurora\Client\WriteBuffer;
use Aurora\Config\ConfigManageable;
use Aurora\Client\Events as ClientEv... |
/**
* Base Styles
*/
.media-modal * {
box-sizing: content-box;
}
.media-modal input,
.media-modal select,
.media-modal textarea {
box-sizing: border-box;
}
.media-modal,
.media-frame {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif... |