text
stringlengths
3
1.05M
@implementation Data @synthesize name, apellido, email, gender, ip; -(id)initWithData:(NSString *)n theApellido:(NSString *)a theEmail:(NSString *)e theGender:(NSString *)g theIp:(NSString *)i { if(self = [super init]) { [self setName:n]; [self setApellido:a]; [self setEmail:e]; ...
@interface DTDKCertificateService : DTDKTeamBasedService { } + (id)_createRequestDictionaryForCertificateType:(unsigned long long)arg1 team:(id)arg2 andPlatform:(id)arg3; + (id)_createRequestDictionaryForTeam:(id)arg1 andPlatform:(id)arg2; - (void)_success; - (void)_failure:(id)arg1; @property(readonly) unsigned long ...
<node xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.allseenalliance.org/schemas/introspect.xsd"> <interface name="com.microsoft.OICBridge.oic.r.airflow"> <property name="Direction" type="s" access="readwrite"> <annotation name="org.freedesktop.DBus.Property...
namespace v8 { namespace internal { namespace { template <typename BitField> Handle<Smi> SetBitFieldValue(Isolate* isolate, Handle<Smi> smi_handler, typename BitField::FieldType value) { int config = smi_handler->value(); config = BitField::update(config, true); return handle(Smi::F...
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>serial_port_base::stop_bits::value</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boo...
#ifndef ALIHFTREEHANDLERD0TOKPI_H #define ALIHFTREEHANDLERD0TOKPI_H /* $Id$ */ //************************************************************************* // \class AliHFTreeHandlerD0toKpi // \brief helper class to handle a tree for D0 cut optimisation and MVA analyses // \authors: // F. Catalano, fabio.catalano@ce...
kGUITest_BorderTestTex = "simplebutton.png" gLoremIpsum = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vestibulum vehicula, diam placerat pellentesque viverra, ligula enim euismod ipsum, ut imperdiet justo dui vitae eros. Proin ut metus ac metus dapibus egestas. Mauris molestie aliquet turpis. Maecenas bi...
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var createInnerCallback = require("./createInnerCallback"); function ModuleAliasPlugin(aliasMap) { this.aliasMap = aliasMap; } module.exports = ModuleAliasPlugin; ModuleAliasPlugin.prototype.apply = functio...
package io.undertow.websockets.core.function; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.ReadableByteChannel; /** * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a> */ public class ChannelFunctionReadableByteChannel implements ReadableByteChannel { private fi...
package com.greenlemonmobile.app.ebook.books.imagezoom.easing; public class Cubic implements Easing { @Override public double easeOut( double time, double start, double end, double duration ) { return end * ( ( time = time / duration - 1.0 ) * time * time + 1.0 ) + start; } @Override public double easeIn( dou...
<h2 class="text-center">Nem használt alapanyagok</h2> <div ng-show="vm.hasItems !== undefined && !vm.hasItems" ng-cloak class="alert alert-success" role="alert"> <span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span> Gratulálok, nincs használatlan alapanyagod! </div> <table ng-show="vm.hasItems" c...
// This file was automatically generated by informer-gen package internalversion import ( internalinterfaces "k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/internalinterfaces" ) // Interface provides access to all the informers in this group version. type Interface interface { // Sta...
<?php /** * YunhoDBExport Example 2 * @package YunhoDBExport * @version 1.0.0 * @author José Luis Quintana <quintana.io> * @license MIT */ // Requerir librería require '../src/YunhoDBExport.php'; // Configuración de base de datos $host = 'localhost'; $name = 'dbtest'; $user = 'root'; $password = ''; // Asigna...
#ifndef HEADER_CURL_HTTP_NTLM_H #define HEADER_CURL_HTTP_NTLM_H #include "curl_setup.h" #if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) /* this is for ntlm header input */ CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy, const char *header); /* this is for creating ntlm ...
$(function () { var _ = function (key, lang, ign) { return Translate.translate(key, lang, ign); }; var __ = function (key, default_val) { return Translate.translate_def(key, default_val); }; var recalc = function () { var invoice = ''; var total_sum = new Prices.Su...
package com.thoughtworks.selenium.webdriven.commands; import com.thoughtworks.selenium.webdriven.SeleneseCommand; import org.openqa.selenium.WebDriver; public class IsAlertPresent extends SeleneseCommand<Boolean> { private final AlertOverride alertOverride; public IsAlertPresent(AlertOverride alertOverride) { ...
package test.utils import akka.actor.{Actor, Props, ActorRef, ActorSystem} import akka.testkit.TestProbe import com.ibm.spark.comm.{CommRegistrar, CommStorage} import com.ibm.spark.kernel.protocol.v5.client.socket._ import com.ibm.spark.kernel.protocol.v5.client.{ActorLoader, SparkKernelClient} import com.ibm.spark....
package DMOZ::BackoffDistribution::MissingVocabularyRenormalizedBackoffDistribution; # Generates distribution over Unassigned (missing) vocabulary # The distribution is renormalized based on corpus frequency statistics use strict; use warnings; use DMOZ::BackoffDistribution; use base qw(DMOZ::BackoffDistribution); ...
namespace logreg { template <typename EleType> class SoftmaxObjective : public Objective<EleType> { public: explicit SoftmaxObjective(const Configure& config); virtual float Predict(Sample<EleType>*sample, DataBlock<EleType>* model, EleType* predict); protected: float Sigmoid(Sample<EleType>* sample, D...
<?php namespace Psy\VersionUpdater; use Psy\Shell; /** * A version checker stub which always thinks the current verion is up to date. */ class NoopChecker implements Checker { /** * @return bool */ public function isLatest() { return true; } /** * @return string *...
module API # Issues API class Issues < Grape::API before { authenticate! } helpers do def filter_issues_state(issues, state) case state when 'opened' then issues.opened when 'closed' then issues.closed else issues end end def filter_issues_labels(i...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Knockout paged spec</title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css" /> <link rel="stylesheet" href="runner.css" /> </head> <body> <a href="https://github.com/ErikSchierboom/knockout-paging"> <img st...
package poly1305 // This function is implemented in poly1305_amd64.s //go:noescape func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]byte) // Sum generates an authenticator for m using a one-time key and puts the // 16-byte result into out. Authenticating two different messages with the same // key allows...
package com.xxx.jdk8; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.concurrent.ConcurrentHashMap; /** * Created by xiaowenzi on 2017/8/17. */ public class ConcurrentHashMapDemo { private static Logger logger = LoggerFactory.getLogger(ConcurrentHashMapDemo.class); public static ...
package org.apache.camel.itest.tx; import org.apache.camel.Exchange; import org.apache.camel.Processor; import org.apache.camel.test.AvailablePortFinder; /** * Route that listen on a JMS queue and send a request/reply over http * before returning a response. Is transacted. * <p/> * Notice we use the SpringRouteB...
/** * NTwitBot - data.test.js * @author Jordan Sne <jordansne@gmail.com> * @license MIT */ jest.mock('fs'); const fsMock = require('fs'); const Data = require('../../src/data.js'); const dataHandler = new Data(); describe('Data', () => { afterAll(() => { jest.unmock('fs'); }); describe('Data...
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Gesture &mdash; Leap Motion C# and Unity SDK v2.2 documentation</title> <link rel="stylesheet" href="../_static/basic.css" type="...
package io.netty.handler.ssl; import io.netty.bootstrap.Bootstrap; import io.netty.bootstrap.ServerBootstrap; import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBufAllocator; import io.netty.buffer.CompositeByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.Channel; import io.netty.channel.Cha...
#pragma once #include <stddef.h> #include <assert.h> #include <string> #include <functional> #include <vector> #include <map> #include <type_traits> #include <emscripten/val.h> #include <emscripten/wire.h> namespace emscripten { enum class sharing_policy { NONE = 0, INTRUSIVE = 1, BY_EMVAL...
// +build !ignore_autogenerated // This file was autogenerated by conversion-gen. Do not edit it manually! package v2alpha1 import ( resource "k8s.io/apimachinery/pkg/api/resource" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime...
This file exists for reminding contributors that this definition is **WIP**. ### Note There are a **large** number of methods of class `Parser` and `LooseParser` haven't been declared. However, these methods may not be useful for common users. So, I hang the job util it worth continuing. Of course, volunteers are w...
cask 'kap' do version '1.0.1.1' sha256 'f51902982b80925b6cf1fe81c920d4a3a0bb841dfb5bbae5879f934beeb2eae7' # github.com/wulkano/kap was verified as official when first introduced to the cask url "https://github.com/wulkano/kap/releases/download/v#{version.major_minor_patch}/Kap-#{version}.dmg" appcast 'https:...
package org.olat.user; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import java.util.HashMap; import java.util.List; import java.util.Local...
#include <af/dim4.hpp> #include <Array.hpp> #include <identity.hpp> #include <debug_opencl.hpp> #include <kernel/identity.hpp> namespace opencl { template<typename T> Array<T> identity(const dim4& dims) { Array<T> out = createEmptyArray<T>(dims); kernel::identity<T>(out); return ...
#include "CCTerrain.h" USING_NS_CC; #include <stdlib.h> #include <CCImage.h> #include <float.h> #include <set> #include "renderer/CCGLProgram.h" #include "renderer/CCGLProgramCache.h" #include "renderer/CCGLProgramState.h" #include "renderer/CCRenderer.h" #include "renderer/CCGLProgramStateCache.h" #include "rendere...
function createElement(tagName: "div"): HTMLDivElement {}
namespace WebKit { class WebFrame; } namespace gfx { class RectF; } namespace content { class WebMediaPlayerAndroid; // Class for managing all the WebMediaPlayerAndroid objects in the same // RenderView. class RendererMediaPlayerManager { public: RendererMediaPlayerManager(); virtual ~RendererMediaPlayerManage...
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>reveal.js - Barebones</title> <link rel="stylesheet" href="../../css/reveal.min.css"> </head> <body> <div class="reveal"> <div class="slides"> <section> <h2>Barebones Presentation</h2> <p>This example contains the b...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>metacoq-erasure: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap...
package org.apache.axis2.receivers; import org.apache.axis2.AxisFault; import org.apache.axis2.context.MessageContext; public interface ServerCallback { public void handleFault(AxisFault fault) throws AxisFault; public void handleResult(MessageContext result) throws AxisFault; }
package io.fabric8.mq.protocol.mqtt; import org.fusesource.hawtbuf.Buffer; import org.fusesource.hawtbuf.DataByteArrayInputStream; import org.fusesource.mqtt.codec.MQTTFrame; import java.io.IOException; public class MQTTCodec { private final MQTTFrameSink frameSink; private final Buffer scratch = new Buffe...
SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment varia...
require 'open-uri' require 'json' require 'strscan' require 'forwardable' require 'term/ansicolor' require 'fileutils' require_relative 'updater/scss' require_relative 'updater/js' require_relative 'updater/logger' require_relative 'updater/network' class Updater extend Forwardable include Network include Js ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ccs: 9 s</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"...
* Updated `bind` variant to use `[].join(' ')` as per the main script in 2.2.2 ## v2.2.2 / 2016-01-04 * Switched from string concatenation to `[].join(' ')` for a slight performance gain in the main function. ## v2.2.1 / 2015-11-26 * Add deps parameter to the AMD module, fixes an issue using the Dojo loader, thanks...
package org.mozilla.javascript.xmlimpl; import java.io.Serializable; import org.mozilla.javascript.*; import org.mozilla.javascript.xml.*; public final class XMLLibImpl extends XMLLib implements Serializable { // TODO Document that this only works with JDK 1.5 or backport its // features to earlie...
package devmapper import ( "bytes" "fmt" "os" "path/filepath" "golang.org/x/sys/unix" ) // FIXME: this is copy-pasted from the aufs driver. // It should be moved into the core. // Mounted returns true if a mount point exists. func Mounted(mountpoint string) (bool, error) { var mntpointSt unix.Stat_t if err :...
#ifndef BOOST_PREDEF_OS_IRIX_H #define BOOST_PREDEF_OS_IRIX_H #include <boost/predef/version_number.h> #include <boost/predef/make.h> /*` [heading `BOOST_OS_IRIX`] [@http://en.wikipedia.org/wiki/Irix IRIX] operating system. [table [[__predef_symbol__] [__predef_version__]] [[`sgi`] [__predef_detection__]...
<!DOCTYPE html> <html lang="tw"> <head> <title> Foundations of Computer Science | Superdanby </title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> <link rel="shortcut icon" type="image/jpeg" href="/Bl...
$.easing.doubleSqrt = function(t, millisecondsSince, startValue, endValue, totalDuration) { var res = Math.sqrt(Math.sqrt(t)); return res; }; (function($) { $.tileBlockSlider = function(element, options) { // настройки по умолчанию var defaults = { // период смены к...
require("./es7"); var types = require("../lib/types"); var defaults = require("../lib/shared").defaults; var def = types.Type.def; var or = types.Type.or; def("Noop") .bases("Node") .build(); def("DoExpression") .bases("Expression") .build("body") .field("body", [def("Statement")]); def("Super") .bases(...
var mixin = (function (O) {'use strict'; var // feature detection: try to use Symbol // to avoid name clashing as much as possible. // Also verify if Symbol.hasInstance is present // Use a basic Symbol fall-back and eventually // ignore setting the Symbol.hasInstance method notDefined = type...
#ifndef TextCodecICU_h #define TextCodecICU_h #include "TextCodec.h" #include <unicode/utypes.h> typedef struct UConverter UConverter; namespace WebCore { class TextCodecICU : public TextCodec { public: static void registerEncodingNames(EncodingNameRegistrar); static void registerCodecs(Te...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>metacoq-safechecker: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../boots...
<!doctype html> <html> <head> <title>paper-toast</title> <script src="../platform/platform.js"></script> <link rel="import" href="paper-toast.html"> <link rel="import" href="../font-roboto/roboto.html" > <link rel="import" href="../paper-button/paper-button.html" > <style> html, body { ...
package foo; import io.sarl.lang.annotation.PrivateAPI; /** * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ */ @PrivateAPI public final class PrivateAPIObject { /** */ public PrivateAPIObject() { // } /** */ public void function() { ...
<?php /** * @category Zend * @package Zend_Tool * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Tool_Project_Provider_DbTable extends Zend_Tool_Project_Provider_Abstract i...
public class JavaClass { public static void main(String[] args) { MainKt.component2(42); } }
import {CompileDirectiveMetadata, CompileDirectiveSummary, CompileIdentifierMetadata, CompileTokenMetadata, identifierName} from '../compile_metadata'; import {createDiTokenExpression} from '../compiler_util/identifier_util'; import {isPresent} from '../facade/lang'; import {Identifiers, createIdentifier} from '../i...
cd "${0%/*}" this=`basename "$0"` pip install pdoc pip install invoke pip install nose pip install wheel pip install twine pip install -r requirements.txt hash -r # Delete this script so it isn't run again git update-index --assume-unchanged $this rm $this exit 0
""" The reference implementation of usage logger using the Python standard logging library. """ from inspect import Signature import logging from typing import Any, Optional def get_logger() -> Any: """An entry point of the plug-in and return the usage logger.""" return PandasOnSparkUsageLogger() def _form...
<?php class Google_Service_AdExchangeBuyer_PretargetingConfigList extends Google_Collection { protected $collection_key = 'items'; protected $itemsType = 'Google_Service_AdExchangeBuyer_PretargetingConfig'; protected $itemsDataType = 'array'; public $kind; /** * @param Google_Service_AdExchangeBuyer_Pre...
"""The tests for the Yahoo Finance platform.""" import json import unittest from unittest.mock import patch import homeassistant.components.sensor as sensor from homeassistant.setup import setup_component from tests.common import ( get_test_home_assistant, load_fixture, assert_setup_component) VALID_CONFIG = { ...
using TerminalPrinter = tkom::modules::TerminalPrinter; const std::map<std::string, const unsigned int>& TerminalPrinter::getColors() { static const std::map<std::string, const unsigned int> colors = { { "red", 31 }, { "yellow", 33 }, { "blue", 34 }, { "cyan", 36 }, { "magen...
/** * Autogenerated by Thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING */ package org.apache.hadoop.hive.serde2.thrift.test; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.util.HashMap; import java.util.Set; import java.util.HashSet; import com.face...
package fi.vtt.physicalactivitylibrary.internal; public enum DataSourceID { ID_ACCELEROMETER, ID_ORIENTATION, ID_STABILITY, ID_GPS, ID_CELL_ID }
using System.Collections.Generic; using Orchard.Environment.Extensions.Models; using Orchard.Security.Permissions; namespace Orchard.Core.Settings { public class Permissions : IPermissionProvider { public static readonly Permission ManageSettings = new Permission { Description = "Manage Settings", Name = ...
cask 'eye-one-profiler' do version '1.5.6' sha256 '29804334aebcb98469e7db4ab476b1d20c42b73eb98e2c8b495057f282972528' url 'http://www.xrite.com/downloader.aspx?FileID=1455&Type=M&returnurl=%2fi1profiler-i1publish%2fsupport%2fd1455' name 'i1Profiler' homepage 'https://www.xrite.com/i1profiler-i1publish/support...
package org.apache.spark.sql.catalyst.expressions import org.apache.spark.SparkException import org.apache.spark.sql.catalyst.{CatalystTypeConverters, InternalRow} import org.apache.spark.sql.catalyst.expressions.codegen._ import org.apache.spark.sql.types.DataType /** * User-defined function. * Note that the use...
id: io-use title: How to use Pulsar connectors sidebar_label: "Use" original_id: io-use --- ````mdx-code-block import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; ```` This guide describes how to use Pulsar connectors. ## Install a connector Pulsar bundles several [builtin connectors](io-connecto...
package com.theoryinpractice.testng.intention; import com.intellij.codeInsight.daemon.quickFix.ExternalLibraryResolver; import com.intellij.openapi.module.Module; import com.intellij.openapi.roots.ExternalLibraryDescriptor; import com.intellij.util.ThreeState; import org.jetbrains.annotations.NotNull; import org.jetbr...
""" Low-level maya and pymel utilities. Functions in this module are used by both `pymel.api` and `pymel.core`, and are able to be defined before maya.standalone is initialized. """ from pymel.internal.plogging import getLogger
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <license-lookup xmlns="https://source.jasig.org/schemas/maven-notice-plugin/license-lookup" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://source.jasig.org/schemas/maven-notice-plugin/license-lookup https://source.jasig.org/schem...
YUI.add('base-base', function(Y) { /** * The base module provides the Base class, which objects requiring attribute and custom event support can extend. * The module also provides two ways to reuse code - It augments Base with the Plugin.Host interface which provides * plugin support and also prov...
package querytypes import ( "fmt" "github.com/youtube/vitess/go/bytes2" ) // This file defines the BoundQuery type. // // In our internal code, the following rules are true: // - a SQL query is always represented as a string. // - bind variables for a SQL query are always represented as // map[string]interface{}...
<?php namespace TypiCMS\Modules\Core\Services; use Illuminate\Support\Facades\Request; class PublicNavigator { private $controller; public function setController($controller) { $this->controller = $controller; } public function currentModule() { if (!empty($this->controller))...
<?xml version="1.0" encoding="UTF-8"?> <!-- 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 Lic...
// This file was automatically generated by informer-gen package internalversion import ( internalinterfaces "k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/internalinterfaces" ) // Interface provides access to all the informers in this group version. type Interface interface { // Dae...
define([ "../core" ], function( jQuery ) { /** * Determines whether an object can have data */ jQuery.acceptData = function( owner ) { // Accepts only: // - Node // - Node.ELEMENT_NODE // - Node.DOCUMENT_NODE // - Object // - Any /* jshint -W018 */ return owner.nodeType === 1 || ow...
using namespace swift; //===----------------------------------------------------------------------===// // Test Key/Value Generation //===----------------------------------------------------------------------===// namespace { uint32_t getTestKey(int i, uint32_t *) { return i; } uint32_t getTe...
package org.apache.commons.math4.legacy.ml.clustering; import org.apache.commons.math4.legacy.exception.NumberIsTooSmallException; import org.apache.commons.math4.legacy.ml.clustering.evaluation.CalinskiHarabasz; import org.apache.commons.math4.legacy.ml.distance.DistanceMeasure; import org.apache.commons.math4.lega...
// Package status implements errors returned by gRPC. These errors are // serialized and transmitted on the wire between server and client, and allow // for additional data to be transmitted via the Details field in the status // proto. gRPC service handlers should return an error created by this // package, and gR...
<?php class Twig_Node_Expression_Unary_Not extends Twig_Node_Expression_Unary { public function operator(Twig_Compiler $compiler) { $compiler->raw('!'); } } class_alias('Twig_Node_Expression_Unary_Not', 'Twig\Node\Expression\Unary\NotUnary', false);
/* * 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 distributed under t...
package org.apache.camel.component.jetty; import java.net.ConnectException; import org.apache.camel.CamelExecutionException; import org.apache.camel.test.spring.CamelSpringTestSupport; import org.junit.Test; import org.springframework.context.support.AbstractXmlApplicationContext; import org.springframework.context....
<?php function smarty_function_getall($params, &$smarty) { if(!isset($params['from'])) { echo 'No table name!'; return false; } if(!isset($params['_name'])) { echo 'No record variable name!'; return false; } global $php; $select = new SelectDB($php->db); $select->call_by = 'func'; i...
layout: post title: Courtney Gets A Creampie + Abby licking it titleinfo: pornvd desc: Watch Courtney Gets A Creampie + Abby licking it. Pornhub is the ultimate xxx porn and sex site. --- <iframe src="http://www.pornhub.com/embed/1679592069" frameborder="0" width="630" height="338" scrolling="no"></iframe> <h2>Courtne...
namespace Microsoft.Azure.Management.Media.Models { using System.Linq; /// <summary> /// Base class for Content Key Policy configuration. A derived class must /// be used to create a configuration. /// </summary> public partial class ContentKeyPolicyConfiguration { /// <summary> ...
require 'builder/xmlmarkup' module Builder # Create a series of SAX-like XML events (e.g. start_tag, end_tag) # from the markup code. XmlEvent objects are used in a way similar # to XmlMarkup objects, except that a series of events are generated # and passed to a handler rather than generating character-base...
<?php namespace lav45\fileUpload\widgets\assets; use yii\web\AssetBundle; /** * Class FileUploadAsset * @package lav45\fileUpload\widgets\assets */ class FileUploadAsset extends AssetBundle { /** * @var string */ public $sourcePath = '@bower/blueimp-file-upload'; /** * @var array *...
/* */ "format cjs"; "use strict"; exports.__esModule = true; var _es6ForOf = require("../es6/for-of"); var metadata = { optional: true }; exports.metadata = metadata; /** * [Please add a description.] */ var visitor = { /** * [Please add a description.] */ ForOfStatement: function ForOfStatement(n...
package org.keycloak.testsuite.federation.ldap; import org.junit.Assert; import org.junit.Assume; import org.junit.ClassRule; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; import org.keycloak.component.ComponentModel; import org.keycloak.models.ClientModel; import or...
@interface NavigationController () <UINavigationControllerDelegate> @end @implementation NavigationController - (id)initWithCoder:(NSCoder *)aDecoder { if (self = [super initWithCoder:aDecoder]) { self.delegate = self; } return self; } - (id<UIViewControllerAnimatedTransitioning>)navigationContr...
gexp --maxpeers 100 --rpc --rpccorsdomain "*" console
package com.example.android.rs.latencybench; import android.content.Context; import android.content.res.Resources; import android.renderscript.*; public class Benchmark implements Runnable { private final RenderScript mRS; private ScriptC_compute_benchmark mScript; private Allocation ain; private All...
using System.Resources; using System.Runtime.CompilerServices; namespace System { internal partial class SR { private static ResourceManager s_resourceManager; private static ResourceManager ResourceManager { get { if (SR.s_resourceManager == nul...
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.superagent=e()}}(function(){var define,module,exports...
namespace boost { namespace units { /// derived dimension for frequency : T^-1 typedef derived_dimension<time_base_dimension,-1>::type frequency_dimension; } // namespace units } // namespace boost #endif // BOOST_UNITS_FREQUENCY_DERIVED_DIMENSION_HPP
{% extends "basic/layout.html" %} {% block footer %} {{ super() }} <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-52596-13']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga...
class AddOrganizationRefToContacts < ActiveRecord::Migration def change add_reference :contacts, :organization, index: true end end