answer
stringlengths
15
1.25M
#include <linux/init.h> #include <linux/io.h> #include <linux/module.h> #include <linux/interrupt.h> #include <linux/clk.h> #include <linux/device.h> #include <linux/delay.h> #include <linux/slab.h> #include <linux/spinlock.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/of_irq.h> #include <linux...
/* Generated on Tue Mar 4 13:50:34 EST 2014 */ #include "codelet-rdft.h" #ifdef HAVE_FMA /* Generated by: ../../../genfft/gen_r2cb.native -fma -reorder-insns -<API key> -compact -variables 4 -pipeline-latency 4 -sign 1 -n 16 -name r2cbIII_16 -dft-III -include r2cbIII.h */ /* * This function contains 66 FP additions, ...
<?php namespace TYPO3\CMS\Extbase\Tests\Unit\Persistence\Generic\Mapper; use TYPO3\CMS\Core\Tests\<API key>; use TYPO3\CMS\Extbase\Persistence\Generic\Mapper\ColumnMap; use TYPO3\CMS\Core\DataHandling\TableColumnType; use TYPO3\CMS\Core\DataHandling\TableColumnSubType; /** * Test case */ class DataMapFactoryTest exte...
# Compile Options include $(MTK_PATH_BUILD)/Makefile WLAN_CHIP_LIST:=-UMT6620 -UMT6628 -UMT5931 -UMT6630 ccflags-y += $(WLAN_CHIP_LIST) WLAN_CHIP_ID=MT6630 ccflags-y:=$(filter-out -U$(WLAN_CHIP_ID),$(ccflags-y)) ccflags-y += -DLINUX -D$(WLAN_CHIP_ID) ifeq ($(HAVE_XLOG_FEATURE), yes) ccflags-y += -DCFG_SUPPORT_XLOG=...
# Makefile for the kernel USB device drivers. # Object files in subdirectories obj-$(CONFIG_USB) += core/ obj-$(CONFIG_USB_DWC3) += dwc3/ obj-$(CONFIG_USB_DWC2) += dwc2/ obj-$(CONFIG_USB_MON) += mon/ obj-$(CONFIG_PCI) += host/ obj-$(CONFIG_USB_EHCI_HCD) += host/ obj-$(<API key>) ...
/* * \brief Regulator-session component * \author Stefan Kalkowski * \date 2013-06-13 */ #ifndef <API key> #define <API key> #include <root/component.h> #include <regulator_session/rpc_object.h> #include <regulator/driver.h> namespace Regulator { class Session_component; class Root; } class Regulator::Se...
using System; using System.Text.RegularExpressions; using System.Windows.Forms; namespace WikiFunctions { <summary> Factory class for making instances of IArticleComparer </summary> public static class <API key> { <summary> </summary> <param name="comparator">The test string<...
<?php defined('JPATH_BASE') or die; jimport('joomla.form.formfield'); class JFormFieldAbout extends JFormField { protected $type = 'About'; protected function getInput() { return '<div id="gk_about_us">' . JText::_('<API key>') . '</div>'; } } // EOF
INSERT INTO spell_script_names VALUES (2823, 'spell_rog_poisons'), (8679, 'spell_rog_poisons'), (5761, 'spell_rog_poisons'), (3408, 'spell_rog_poisons');
/* testlib.c for c++ - test expectlib */ #include <stdio.h> #include "expect.h" extern "C" { extern int write(...); extern int strlen(...); } void timedout() { fprintf(stderr,"timed out\n"); exit(-1); } char move[100]; void read_first_move(int fd) { if (EXP_TIMEOUT == exp_expectl(fd,exp_glob,"first\...
<?php /** * base class */ require_once 'PEAR.php'; class PEAR_Command_Common extends PEAR { // {{{ properties /** * PEAR_Config object used to pass user system and configuration * on when executing commands * * @var PEAR_Config */ var $config; /** * @var PEAR_Registry ...
<?php /** * Xmlconnect Form field renderer interface * * @category Mage * @package Mage_XmlConnect * @author Magento Core Team <core@magentocommerce.com> */ interface <API key> { public function render(<API key> $element); }
// <API key>: GPL-2.0 #ifndef <API key> #define <API key> #include <QMainWindow> #include <QFileDialog> #include <QFileInfo> extern "C" void smartrak_import(const char *file, struct dive_table *divetable); namespace Ui { class Smrtk2ssrfcWindow; } class Smrtk2ssrfcWindow : public QMainWindow { Q_OBJECT public: ...
package org.zarroboogs.weibo.hot.bean.hotweibo; import org.json.*; public class TopicStruct { private String topicTitle; private String topicUrl; public TopicStruct () { } public TopicStruct (JSONObject json) { this.topicTitle = json.optString("topic_title"); this.topicUrl = json.opt...
/** \file lees_edwards.h Data and methods for Lees-Edwards periodic boundary conditions. The gist of LE-PBCs is to impose shear flow by constantly moving the PBC wrap such that: $x_{unfolded} == x_{folded} + x_{img} \times L + (y_{img} * \gamma * t)$, and $vx_{unfolded} = vx_{folded} + (y_{img} * \gamma...
/* lzw.c -- compress files in LZW format. * This is a dummy version avoiding patent problems. */ #include <config.h> #include "tailor.h" #include "gzip.h" #include "lzw.h" static int msg_done = 0; /* Compress in to out with lzw method. */ int lzw(in, out) int in, out; { if (msg_done) return ERROR; msg_don...
<?php /** * @file * @ingroup SpecialPage */ /** * @todo document * @ingroup SpecialPage */ class ProtectedPagesForm { protected $IdLevel = 'level'; protected $IdType = 'type'; public function showList( $msg = '' ) { global $wgOut, $wgRequest; if( $msg != "" ) { $wgOut->set...
#!/bin/bash test_info() { cat <<EOF Verify that the ctdb_transaction test succeeds. Prerequisites: * An active CTDB cluster with at least 2 active nodes. Steps: 1. Verify that the status on all of the ctdb nodes is 'OK'. 2. Run two copies of ctdb_transaction on each node with a 30 second timeout. 3. Ensure that ...
package com.earth2me.essentials.antibuild; import java.util.EnumMap; import java.util.List; import java.util.Map; import org.bukkit.plugin.Plugin; import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; public class EssentialsAntiBuild extends JavaPlugin implements IAntiBuild { private fin...
'use strict'; --- Exports /** * JSONP formatter. like JSON, but with a callback invocation. * * Unicode escapes line and paragraph separators. * * @public * @function formatJSONP * @param {Object} req the request object * @param {Object} res the response object * @param {Object} body response body ...
// The LLVM Compiler Infrastructure // This file is distributed under the University of Illinois Open Source // This header Bitcode enum values. // The enum values defined in this file should be considered permanent. If // new features are added, they should have values added at the end of the // r...
(function(){CKEDITOR.on("dialogDefinition",function(a){var b;b=a.data.name;a=a.data.definition;"link"==b?(a.removeContents("target"),a.removeContents("upload"),a.removeContents("advanced"),b=a.getContents("info"),b.remove("emailSubject"),b.remove("emailBody")):"image"==b&&(a.removeContents("advanced"),b=a.getContents("...
declare module Virtex { interface IOptions { ambientLightColor: number; cameraZ: number; <API key>: number; <API key>: number; <API key>: number; <API key>: number; doubleSided: boolean; element: string; fadeSpeed: number; far: number; ...
using System.Windows.Forms; using <API key>; using ResourceManager; namespace <API key> { public class <API key> : GitPluginBase { public <API key>() { <API key>("Release Notes Generator"); Translate(); } public override bool Execute(GitUIBaseEventArgs git...
"""Implement standard (and unused) TCP protocols. These protocols are either provided by inetd, or are not provided at all. """ from __future__ import absolute_import, division import time import struct from zope.interface import implementer from twisted.internet import protocol, interfaces from twisted.python.compat i...
//! The `MozMap` (open-ended dictionary) type. use dom::bindings::conversions::jsid_to_string; use dom::bindings::str::DOMString; use js::conversions::{<API key>, ToJSValConvertible, ConversionResult}; use js::jsapi::GetPropertyKeys; use js::jsapi::HandleValue; use js::jsapi::JSContext; use js::jsapi::JSITER_OWNONLY; u...
#ifndef _BITSETV_H #define _BITSETV_H #include "bitset.h" typedef bitset * bitsetv; /* Create a vector of N_VECS bitsets, each of N_BITS, and of type TYPE. */ extern bitsetv bitsetv_alloc (bitset_bindex, bitset_bindex, enum bitset_type); /* Create a vector of N_VECS bitsets, each of N_BITS, and with attribute hi...
// Themes import './styles/main.scss'; import './styles/themes/abductor.scss'; import './styles/themes/cardtable.scss'; import './styles/themes/hackerman.scss'; import './styles/themes/malfunction.scss'; import './styles/themes/neutral.scss'; import './styles/themes/ntos.scss'; import './styles/themes/paper.scss'; impo...
(function() { 'use strict'; Features.$inject = ['urls']; function Features(urls) { var self = this; urls.links().then(function(links) { angular.extend(self, links); }); } /** * Provides info what features are available on server */ angular.module('superdesk.features', ['superdesk.api']) .servi...
#ifndef <API key> #define <API key> #include <nuttx/config.h> #define GPIO_MODE_SHIFT (22) /* Bits 22-23: GPIO mode */ #define GPIO_MODE_MASK (3 << GPIO_MODE_SHIFT) # define GPIO_INPUT (0 << GPIO_MODE_SHIFT) /* GPIO Input */ # define GPIO_OUTPUT (1 << GPIO_MODE...
/* Colorbox Core Style: The following CSS is consistent between example themes and should not be altered. */ #colorbox, #cboxOverlay, #cboxWrapper { position: absolute; top: 0; left: 0; z-index: 9999; overflow: hidden; } #cboxOverlay { position: fixed; width: 100%; height: 100%; ...
require File.dirname(__FILE__)+"/env" module Actors # /actors/worker class Worker include Magent::Actor expose :echo def echo(payload) puts payload.inspect end end Magent.register(Worker.new) end if $0 == __FILE__ Magent::Processor.new(Magent.current_actor).run! end
UPDATE `version` SET `app_ver` = '1.4.0', `XmdsVersion` = 3; UPDATE `setting` SET `value` = 0 WHERE `setting` = 'PHONE_HOME_DATE'; UPDATE `version` SET `DBVersion` = '50';
# -*- coding: utf-8 -*- # This file is part of weboob. # weboob is free software: you can redistribute it and/or modify # (at your option) any later version. # weboob is distributed in the hope that it will be useful, # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the import requests.cookies try: import...
<?php /** * @package Core * @subpackage system * @deprecated */ require_once ( __DIR__ . "/kalturaSystemAction.class.php" ); /** * @package Core * @subpackage system * @deprecated */ class <API key> extends kalturaSystemAction { // TODO - read from the entryWrapper private static $allowed_names = ...
/** * Action that sets up BCs for porous flow module */ class <API key> : public MooseObjectAction { public: static InputParameters validParams(); <API key>(const InputParameters & parameters); virtual void act() override; protected: /** * Setup a BC corresponding to hot/cold fluid injection */ void <...
package lucee.runtime.type.comparator; import java.util.Comparator; import lucee.commons.lang.ComparatorUtil; import lucee.runtime.PageContext; import lucee.runtime.engine.<API key>; import lucee.runtime.exp.PageException; import lucee.runtime.op.Caster; /** * Implementation of a Comparator, compares to Softregister O...
#include "QXmppClient.h" #include "QXmppConstants.h" #include "QXmppUtils.h" #include "QXmppVCardIq.h" #include "QXmppVCardManager.h" class <API key> { public: QXmppVCardIq clientVCard; bool <API key>; }; QXmppVCardManager::QXmppVCardManager() : d(new <API key>) { d-><API key> = false; } QXmppVCardManag...
using Nop.Web.Framework.Mvc; namespace Nop.Admin.Models.Common { public partial class SystemWarningModel : BaseNopModel { public SystemWarningLevel Level { get; set; } public string Text { get; set; } } public enum SystemWarningLevel { Pass, Warning, Fail ...
Module Name: AzureRM.ApiManagement Module Guid: <API key> Download Help Link: None Help Version: 4.0.0.0 Locale: en-US ms.assetid: <API key> # AzureRM.ApiManagement Module ## Description This topic displays help topics for the Azure API Management Cmdlets. ## AzureRM.ApiManagement Cmdlets [<API key>](<API key>.md) Adds...
// Tests for the JavaScriptMVC compatibility layer. Will be removed eventually steal('funcunit/qunit', 'jquerypp/controller/view/test/qunit' , 'jquerypp/class/class_test.js' , 'jquerypp/model/test/qunit' , 'jquerypp/controller/controller_test.js' , 'jquerypp/view/test/qunit' , 'jquerypp/dom/route/ro...
package org.wso2.developerstudio.eclipse.gmf.esb.provider; import java.util.Collection; import java.util.List; import org.eclipse.emf.common.notify.AdapterFactory; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.edit.provider.<API key>; import org.eclipse.emf.edit.provider.IItemLabelProvider; ...
/** * @fileOverview */ /** * Constains the dictionary of language entries. * @namespace */ CKFinder.lang['el'] = { appTitle : 'CKFinder', // MISSING // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_...
(function (define) { 'use strict'; var undef; /** * Aggregate messages into batches as they are received. */ define(function (require) { var msgs = require('..'); /** * Aggregates messages into batches as they are received. Batches may * be chunked either by a...
<widget-modal widget-modal-title="Administer Api Token"> <form name="cdf" class="form" ng-submit="ctrl.submit(cdf)" novalidate> <form-group input="apiUser" errors="{required: 'Api user name is required', minlength: 'Min length of 6 characters', ...
package me.kafeitu.activiti.chapter15.leave; import me.kafeitu.activiti.chapter15.leave.ws.LeaveWebService; import org.apache.cxf.interceptor.<API key>; import org.apache.cxf.interceptor.<API key>; import org.apache.cxf.jaxws.<API key>; import org.junit.After; import org.junit.Before; import org.junit.Test; import java...
# Yieldmo ## Example html <amp-ad width="300" height="168" type="yieldmo" data-ymid="1349317029731662884"> </amp-ad> ## Configuration For semantics configuration, please [contact Yieldmo](https://yieldmo.com/#contact). Supported parameters: - `data-ymid` ## Multi-size Ad Yieldmo implicitly handles rendering different...
<!DOCTYPE html> <html lang="en"> <head> <title>What is the Drop Box tool?</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta content="sakai.dropbox, main" name="description"> <meta content="student folders" name="search"> <link href="/library/skin/tool_base.css" media="screen" rel="styles...
//>>built define("dojox/atom/widget/nls/hr/FeedEntryViewer",{displayOptions:"[opcije prikaza]",title:"Naslov",authors:"Autori",contributors:"Doprinositelji",id:"ID",close:"[zatvori]",updated:"A\u017eurirano",summary:"Sa\u017eetak",content:"Sadr\u017eaj"});
<!DOCTYPE html> <html lang="en"> <head> <title>How do I delete an alias?</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta content="sakai.aliases" name="description"> <meta content="" name="search"> <link href="/library/skin/tool_base.css" media="screen" rel="stylesheet" type="text/css" ...
package org.keycloak.example.oauth; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.jboss.logging.Logger; import org.keycloak.<API key>; impor...
# Oblivki ## Example html <amp-ad width="300" height="250" type="oblivki" data-use-a4a="true" data-block-key="<API key>" src="https://oblivki.biz/amp_a4a?key=<API key>" > </amp-ad> ## Configuration For configuration details and to generate your tags, please contact support@oblivki.biz Supported parameters: ...
<?php final class <API key> extends PhortuneController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $accounts = <API key>::loadAccountsForUser( $viewer, <API key>::newFromRequest($request)); if (count($accounts) == 1) { $account = head($acco...
<?php /** * opSkinClassicPlugin actions. * * @package OpenPNE * @subpackage skin * @author Kousuke Ebihara <ebihara@tejimaya.com> */ class <API key> extends sfActions { public function executeCss(sfWebRequest $request) { opSkinClassicConfig::setCurrentTheme($request->getParameter('theme')); } p...
using System; using System.Collections.Generic; using System.Threading; using XenAdmin.Network; using XenAPI; namespace XenAdmin.Actions { <summary> ParallelAction takes a list of any number of actions and runs a certain number of them simultaneously. Once one simultaneous action is finished the next one in...
cask 'malwarebytes' do version '3.0.3.433' sha256 '<SHA256-like>' # data-cdn.mbamupdates.com/web was verified as official when first introduced to the cask url "https://data-cdn.mbamupdates.com/web/mb#{version.major}_mac/Malwarebytes-#{version}.dmg" name 'Malwarebytes for Mac' homepage 'https: auto_update...
#ifndef PLANNER_H #define PLANNER_H #include "nodes/plannodes.h" #include "nodes/relation.h" /* Hook for plugins to get control in planner() */ typedef PlannedStmt *(*planner_hook_type) (Query *parse, int cursorOptions, ...
/** * Asserts that device property values match properties in |expectedProperties|. * The method will *not* assert that the device contains *only* properties * specified in expected properties. * @param {Object} expectedProperties Expected device properties. * @param {Object} device Device object to test. */ func...
// This macro reads the Hits Tree void AliPMDHitsRead(Int_t nevt = 1) { TStopwatch timer; timer.Start(); TH2F *h2 = new TH2F("h2"," Y vs. X",200,-100.,100.,200,-100.,100.); // FILE *fpw = fopen("alipmdhits.dat","w"); AliRunLoader *fRunLoader = AliRunLoader::Open("galice.root"); if (!fRunLoader) { p...
#!/usr/bin/env python """Valid certificate chain where the target certificate contains a public key with a 512-bit modulus (weak).""" import sys sys.path += ['../..'] import gencerts # Self-signed root certificate. root = gencerts.<API key>('Root') # Intermediate intermediate = gencerts.<API key>('Intermediate', root) ...
#include "content/public/browser/<API key>.h" #include "content/browser/renderer_host/<API key>.h" namespace content { <API key>::<API key>() { <API key>::<API key>(this); } <API key>::~<API key>() { <API key>::<API key>(this); } } // namespace content
#include "ui/views/widget/desktop_aura/<API key>.h" #include <algorithm> #include <vector> #include <X11/extensions/shape.h> #include <X11/Xlib.h> #include <X11/Xregion.h> // Get rid of X11 macros which conflict with gtest. #undef Bool #undef None #include "base/memory/scoped_ptr.h" #include "base/path_service.h" #incl...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http: <html> <head> <title>This tests that the querySelector and querySelectorAll fast path for IDs is not overzelous.</title> <script src="../../../resources/testharness.js"></script> <script src="../../../resources/testharnessreport.js"></script> </head> <body> <s...
li a { color: green; } body { background: white url("images/background.gif") no-repeat right bottom; }
<!DOCTYPE html> <! Copyright (c) 2013 Samsung Electronics Co., Ltd. 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: Unless required by applicable law or agreed to in writing, software distributed...
/* without modification, are permitted provided that the following */ /* conditions are met: */ /* provided with the distribution. */ /* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF TEXAS AT */ /* AUSTIN ``AS IS'' AND ANY...
/* eslint strict:0 */ var modules = Object.create(null); var inGuard = false; function define(id, factory) { modules[id] = { factory, module: {exports: {}}, isInitialized: false, hasError: false, }; if (__DEV__) { // HMR Object.assign(modules[id].module, { hot: { acceptCallback: ...
#ifndef EXPAND_PICTURE_H #define EXPAND_PICTURE_H #include "typedefs.h" #if defined(__cplusplus) extern "C" { #endif//__cplusplus #define PADDING_LENGTH 32 // reference extension #define <API key> 16 // chroma reference extension #if defined(X86_ASM) void <API key> (uint8_t* pDst, const int...
'use strict'; /** @suppress {duplicate} */ var remoting = remoting || {}; /** * @param {chrome.runtime.Port} hangoutPort * @param {remoting.It2MeHostFacade} host * @param {remoting.HostInstaller} hostInstaller * @param {function()} onDisposedCallback Callback to notify the client when * the connection is torn d...
#include "skia/ext/<API key>.h" #include "base/trace_event/<API key>.h" #include "base/trace_event/memory_dump_manager.h" #include "base/trace_event/process_memory_dump.h" #include "skia/ext/<API key>.h" namespace skia { namespace { const char kMallocBackingType[] = "malloc"; } <API key>::<API key>( base::trace_eve...
#include "MissFailoverRoute.h" #include <folly/dynamic.h> #include "mcrouter/lib/config/RouteHandleFactory.h" #include "mcrouter/routes/<API key>.h" #include "mcrouter/routes/McrouterRouteHandle.h" namespace facebook { namespace memcache { namespace mcrouter { <API key> makeNullRoute(); <API key> <API key>( std::vect...
#ifndef <API key> #define <API key> #include <set> #include "ash/ash_export.h" #include "ash/display/<API key>.h" #include "ash/wm/wm_types.h" #include "base/callback.h" #include "base/compiler_specific.h" #include "base/macros.h" #include "base/memory/scoped_ptr.h" #include "ui/events/event_handler.h" #include "ui/gfx...
#/bin/sh #set -x # Script for processing DETdigits.C (or digitITSDET.C) macros # and generating files with histograms. # Generated histograms can be then plot with plotDigits2.C. # Currently the macro has to be run in the directory # with the aliroot output, and one has to specify the # number of events and the number ...
.window { font-size:12px; position:absolute; overflow:hidden; background:transparent url('images/panel_title.png'); background1:#878787; padding:5px; border:1px solid #99BBE8; -moz-border-radius:5px; -<API key>: 5px; } .window-shadow{ position:absolute; background:#ddd; -...
#include "components/<API key>/core/<API key>.h" #include "net/base/net_errors.h" #include "testing/gtest/include/gtest/gtest.h" namespace <API key> { TEST(SSLErrorOptionsMask, <API key>) { int mask; // Non-overridable cert error. mask = <API key>( net::<API key>, /* cert_error */ false, ...
<html> <head> <title>Weak Showers</title> <link rel="stylesheet" type="text/css" href="pythia.css"/> <link rel="shortcut icon" href="pythia32.gif"/> </head> <body> <h2>Weak Showers</h2> The emission of <i>W^+-</i> and <i>Z^0</i> gauge bosons off fermions is intended to be an integrated part of the initial- and final-st...
#include "ui/gfx/render_text.h" #include <algorithm> #include <climits> #include "base/command_line.h" #include "base/i18n/break_iterator.h" #include "base/logging.h" #include "base/stl_util.h" #include "base/strings/string_util.h" #include "base/strings/<API key>.h" #include "third_party/icu/source/common/unicode/rbbi...
// modification, are permitted provided that the following conditions are // met: // documentation and/or other materials provided with the distribution. // * Neither the name of Image Engine Design nor the names of any // other contributors to this software may be used to endorse or // promote ...
.yui3-skin-sam .yui3-panel-content { -webkit-box-shadow: 0 0 5px #333; -moz-box-shadow: 0 0 5px #333; box-shadow: 0 0 5px #333; border: 1px solid black; background: white; } .yui3-skin-sam .yui3-panel .yui3-widget-hd { padding: 8px 28px 8px 8px; /* Room for close button. */ min-height: 13px...
--TEST Test <API key>() function : usage variations - common key and value(Bug#43559) --FILE <?php /* Prototype : array <API key>(array $arr1[, array $...]) * Description: Recursively merges elements from passed arrays into one array * Source code: ext/standard/array.c */ /* * Testing the functionality of <API key>...
require 'optparse' require 'uri' require 'puma/server' require 'puma/const' require 'puma/configuration' require 'puma/binder' require 'puma/detect' require 'puma/daemon_ext' require 'puma/util' require 'puma/single' require 'puma/cluster' require 'puma/commonlogger' module Puma class << self # The CLI exports it...
<?php namespace Symfony\Component\Form\Extension\Core\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Intl\Intl; use Symfony\Component\Locale\Locale; use Symfony\Component\OptionsResolver\<API key>; class LocaleType extends AbstractType { /** * {@inheritdoc} */ public function set...
KB.onClick('.accordion-toggle', function (e) { var sectionElement = KB.dom(e.target).parent('.accordion-section'); if (sectionElement) { KB.dom(sectionElement).toggleClass('accordion-collapsed'); } });
#include <config.h> #if defined(<API key>) #error "PHY not supported yet" /* We just assume that we are running 100FD for now */ /* We all use switches, right? ;-) */ #endif /* I assume ethernet behaves like au1000 */ #ifdef CONFIG_SOC_AU1000 /* Base address differ between cpu:s */ #define ETH0_BASE AU1000_ETH0_BASE #d...
#import <Foundation/NSObject.h> @class NSNotification; @interface <API key> : NSObject { id _observer; SEL _selector; } - initWithObserver:object selector:(SEL)selector; - observer; - (void)postNotification:(NSNotification *)note; @end
#include "PolyCollisionScene.h" #include "<API key>.h" #include "PolyEntity.h" using namespace Polycode; CollisionScene::CollisionScene(Vector3 size, bool virtualScene, bool deferInitCollision) : Scene(Scene::SCENE_3D, virtualScene), world(NULL), <API key>(NULL), dispatcher(NULL), axisSweep(NULL) { if(!deferInitCol...
#ifndef __util_h__ #define __util_h__ #define <API key> // So we can use the PAL_TRY_NAKED family of macros without dependencies on utilcode. inline void <API key>() {} #include <cor.h> #include <corsym.h> #include <clrdata.h> #include <palclr.h> #include <metahost.h> #include <new> #if !defined(FEATURE_PAL) #include <...
<!DOCTYPE HTML PUBLIC "- <!-- NewPage --> <html lang="de"> <head> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.apache.commons.lang3.SerializationUtils (Apache Commons Lang 3.4 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title=...
package org.bouncycastle.crypto.test; import java.math.BigInteger; import java.security.SecureRandom; import java.util.Vector; import org.bouncycastle.crypto.<API key>; import org.bouncycastle.crypto.<API key>; import org.bouncycastle.crypto.engines.NaccacheSternEngine; import org.bouncycastle.crypto.generators.<API ke...
require File.expand_path('../../../spec_helper', __FILE__) describe :rational_quo, shared: true do it "needs to be reviewed for spec completeness" end
<?php namespace Symfony\Component\Security\Core\Authorization\Voter; interface <API key> extends VoterInterface { public function supportsAttribute(string $attribute): bool; /** * @param string $subjectType The type of the subject inferred by `get_class` or `get_debug_type` */ public function supp...
})(); Clazz._coreLoaded = true;
// Don't need this for our purposes module = function(){}; if(typeof equal != 'undefined') { equals = equal; } ok = function(actual, message) { equal(actual, true, message); } raises = function(fn, expected, message) { raisesError(fn, message); }; asyncTest = function(name, delay, fn) { test(name, fn); } start ...
package aima.core.probability.util; import java.util.HashSet; import java.util.Map; import java.util.Set; import aima.core.probability.RandomVariable; import aima.core.probability.domain.Domain; import aima.core.probability.proposition.TermProposition; /** * Default implementation of the RandomVariable interface. * ...
#include <spine/EventData.h> #include <spine/extension.h> spEventData* spEventData_create (const char* name) { spEventData* self = NEW(spEventData); MALLOC_STR(self->name, name); return self; } void spEventData_dispose (spEventData* self) { FREE(self->stringValue); FREE(self->name); FREE(self); ...
package aima.core.probability.bayes.exact; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; import aima.core.probability.<API key>; import aima.core.probability.Factor; import aima.core.probability.RandomVariabl...
namespace Microsoft.OData.Client { using Microsoft.OData.Core; <summary> Arguments used to configure the odata message reader settings. </summary> public class <API key> { <summary> Initializes a new instance of the <see cref="<API key>"/> class. </summary> <param...
if (typeof jQuery === 'undefined') { throw new Error('Tempus Dominus Bootstrap4\'s requires jQuery. jQuery must be included before Tempus Dominus Bootstrap4\'s JavaScript.'); } +function ($) { var version = $.fn.jquery.split(' ')[0].split('.'); if ((version[0] < 2 && version[1] < 9) || (version[0] === 1 && versio...
#import <UIKit/UIKit.h> @interface UIView (WMF_RoundCorners) /** * @warning Watch out for race conditions with auto layout when using these methods! Be sure to call them after layout, * e.g. in @c <API key>. */ Round all corners of the receiver, making it circular. - (void)wmf_makeCircular; /** * Round the given co...
The Elixir and Phoenix communities are friendly and welcoming. All questions and comments are valuable, so please come join the discussion! There are a number of places to connect with community members at all experience levels. * We're on freenode IRC in [\ * We have a [Slack channel](https://elixir-slackin.herokuapp....