text
stringlengths
3
1.05M
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("Ho...
package scala.macros.internal package plugins.scalac package reflect import scala.tools.nsc.Global trait ReflectToolkit extends Errors with Definitions with Names { val global: Global }
namespace CSBackend { namespace OpenGL { namespace GLTextureUtils { //------------------------------------------------------------------------------ void UploadImageDataNoCompression(GLenum target, ChilliSource::ImageFormat format, const ChilliSource::Integer2& dimensions...
import logging from PyQt4 import QtGui, QtCore from PyQt4.QtGui import QMenu, QMenuBar, QToolBar, QAction from gii.core import signals, app from Menu import MenuManager from gii.qt.IconCache import getIcon class ToolBarItem(object): def __init__( self, name, **option ): option = option or {} self.name = nam...
package com.ly.hi.im.adapter; import java.util.List; import android.content.Context; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import cn.bmob.im.bean.BmobChatUser; import com.ly.hi.R; import com.ly.hi.im.adapter.base.BaseListAdapter; imp...
var express = require('express'); var fs = require('fs'); var path = require('path'); var favicon = require('serve-favicon'); var logger = require('morgan'); var cookieParser = require('cookie-parser'); var bodyParser = require('body-parser'); var routes = require('./routes/index'); var largeImagePath = path.join(__d...
package demo.codeanalyzer.model; import com.sun.source.tree.CompilationUnitTree; import com.sun.source.tree.Tree; import com.sun.source.util.SourcePositions; /** * Stores tree information of java class * @author Deepa Sobhana, Seema Richard */ public class SourceTreeInfo { private Tree tree = null; privat...
module.exports = (testObj) => { if (testObj.parent.type === "root") { return testObj.parent; } while (testObj.parent && testObj.parent.type !== "root") { testObj = testObj.parent; } return testObj; };
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- From: file:/Users/android/workspace/jenkins/workspace/fabric-android-deploy/sdk/kits/tweetui/src/main/res/values-zh-rCN/plurals.xml --> <eat-comment /> <plurals name="tw__time_hours"> <item quantity="one">1时</item> <item quantity="oth...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" version="2.0"> <persistence-unit name="persistence"> <description>T...
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFF"> <RelativeLayout android:layout_width="match_parent" android:layout_h...
{# Custom site profile data #} {% load formfieldvalue %} {% load withblock %} {% load i18n %} {% if profileform or profiledata %} <div class="actions"> <h2 class="design-highlight-color"> {% blocktrans with member.display_name as name %} More About {{ name }} {% endblocktrans %} </h2> ...
const msgNavType = 'livechat_navigation_history'; const sendMessageType = (msgType) => { const sendNavHistory = RocketChat.settings.get('Livechat_Visitor_navigation_as_a_message') && RocketChat.settings.get('Send_visitor_navigation_history_livechat_webhook_request'); return sendNavHistory && msgType === msgNavType;...
<component name="libraryTable"> <library name="SBT: org.webjars:webjars-locator-core:0.22"> <CLASSES> <root url="jar://$USER_HOME$/.ivy2/cache/org.webjars/webjars-locator-core/jars/webjars-locator-core-0.22.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> </library> </component>
import { forceReflow } from './utils'; // This is only used for development and should be set to false for release const _DBG_COORD_ = false && process.env.NODE_ENV !== 'production'; export const enum AnimationPhase { INITIALIZE, MEASURE, SET_START_STATE, ACTIVATE_TRANSITIONS, REGISTER_LISTENERS, ACTIVATE...
<div class="alert alert-danger"> <?= $message; ?> </div>
using Sisacon.Domain.Entities; using Sisacon.Domain.ValueObjects; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace Sisacon.UI.ViewModels { public class CostViewModel : BaseViewModel { [Required] ...
"""Wait for kubeflow deployment. Right now, it only checks for the presence of tfjobs and pytorchjobs crd. More things can be added incrementally. python -m testing.wait_for_deployment --cluster=kubeflow-testing \ --project=kubeflow-ci --zone=us-east1-d --timeout=3 TODO(jlewi): Waiting for the CRD's to be created...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__c_CWE193_wchar_t_cpy_68a.c Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_CWE193.label.xml Template File: sources-sink-68a.tmpl.c */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Allocate mem...
#include "php_http_api.h" void php_http_client_options_set_subr(zval *this_ptr, char *key, size_t len, zval *opts, int overwrite TSRMLS_DC); void php_http_client_options_set(zval *this_ptr, zval *opts TSRMLS_DC); void php_http_client_options_get_subr(zval *this_ptr, char *key, size_t len, zval *return_value TSRMLS_D...
using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Game.Online.Multiplayer; using osu.Game.Screens.OnlinePlay.Match.Components; namespace osu.Game.Screens.OnlinePlay.Multiplayer { public class CreateMultiplayerMatchButton : CreateRoomButton { private IBindable<bool> isConnected; ...
package com.heliosapm.opentsdb.server.handlergroups.websockets; import static org.jboss.netty.handler.codec.http.HttpHeaders.isKeepAlive; import static org.jboss.netty.handler.codec.http.HttpHeaders.setContentLength; import static org.jboss.netty.handler.codec.http.HttpMethod.GET; import static org.jboss.netty.handl...
// Page specific js code /*global msos: false, jQuery: false */ msos.provide("demo.bstrap.breadcrumbs"); msos.require("bootstrap.navbar"); msos.onload_functions.push( function () { "use strict"; msos.console.info('Content: breadcrumbs.html loaded!'); } );
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
using System; namespace System.Xml.Schema { public abstract class XmlSchemaGroupBase: XmlSchemaParticle { [TODO] protected XmlSchemaGroupBase() { throw new NotImplementedException(".ctor"); } [TODO] public abstract XmlSchemaObjectCollection Items { get; } } }//namespace
<!DOCTYPE html> <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>検索 &mdash; Python documentation</title> ...
package microsoft.exchange.webservices.data; /** * Represents a meeting cancellation message. Properties available on meeting * messages are defined in the MeetingMessageSchema class. */ @ServiceObjectDefinition(xmlElementName = XmlElementNames.MeetingCancellation) public class MeetingCancellation extends Meeting...
<html> <head> <title>Malcolm Messiter's panel show appearances</title> <script type="text/javascript" src="../common.js"></script> <link rel="stylesheet" media="all" href="../style.css" type="text/css"/> <script type="text/javascript" src="../people.js"></script> <!--#include virtual="head.txt" --> </head> <body> <...
/* * ============================================================================== * Name : OgreSamplesBrowserDocument.cpp * Part of : OpenGLEx / OgreSamplesBrowser * * ============================================================================== */ // INCLUDE FILES #include "OgreSamplesBrowserDo...
#include <apr_time.h> #include <apr_queue.h> #include "apt_consumer_task.h" #include "apt_log.h" struct apt_consumer_task_t { void *obj; apt_task_t *base; apr_queue_t *msg_queue; }; static apt_bool_t apt_consumer_task_msg_signal(apt_task_t *task, apt_task_msg_t *msg); static apt_bool_t apt_consumer_task_...
var config = require("./config/config") , Sequelize = require("../index") , dialects = ['sqlite', 'mysql', 'postgres'] describe('DAO', function() { dialects.forEach(function(dialect) { describe('with dialect "' + dialect + '"', function() { var User = null , sequelize = new Sequelize( ...
Django PayPal ============= .. image:: https://github.com/spookylukey/django-paypal/workflows/build/badge.svg :target: https://github.com/spookylukey/django-paypal/actions?query=workflow%3Abuild+branch%3Amaster .. image:: https://badge.fury.io/py/django-paypal.svg :target: https://badge.fury.io/py/django-payp...
Ttree.Neos.Pingdom ================== [![StyleCI](https://styleci.io/repos/46942278/shield)](https://styleci.io/repos/46942278) Introduction ------------ Neos CMS package to display Pingdom report in the Neos CMS backend. **Early version of this package, we be released on stable version with Neos 2.1** Features --...
v2.1.3 / 2017-10-03 ================== * add module entry point (#133) v2.1.2 / 2017-07-25 ================== * - does not fake process.nextTick by default - added .idea folder to .gitignore - fixed documentation - added clock teardowns in tests * overflowing the timer correctly (issue #67) v2.1.1 / 2017-07-1...
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- From: file:/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/res/values-vi/values.xml --> <eat-comment/> <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Điều...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
package org.odlabs.wiquery.core.effects.basic; import org.odlabs.wiquery.core.effects.Effect; import org.odlabs.wiquery.core.effects.EffectSpeed; /** * $Id: Toggle.java 1714M 2012-01-17 08:28:23Z (local) $ * <p> * Defines the toggle {@link Effect}. A toggle consists to show a component when it's * hidden, and to...
ACCEPTED #### According to Index Fungorum #### Published in null #### Original name Phaeographina toxopaei Zahlbr. ### Remarks null
/* * Written for the Pkcs11Interop project by: * Jaroslav IMRICH <jimrich@jimrich.sk> */ using System; using Net.Pkcs11Interop.Common; using Net.Pkcs11Interop.LowLevelAPI80; using NUnit.Framework; using NativeULong = System.UInt64; // Note: Code in this file is generated automatically. namespace Net.Pkcs11Int...
package org.apache.hadoop.util; import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability; /** * Plugin to calculate resource information on the system. */ @InterfaceAudience.Public @InterfaceStability.Evolving public abstract class SysInfo { /** *...
package com.example.alexeyglushkov.dropboxservice; import com.dropbox.client2.DropboxAPI; import com.example.alexeyglushkov.authtaskmanager.IServiceTask; import com.example.alexeyglushkov.authtaskmanager.ServiceTaskImp; import com.example.alexeyglushkov.streamlib.progress.ProgressInfo; /** * Created by alexeyglushko...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>mathcomp-analysis: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstr...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_171) on Wed Oct 24 16:18:47 MDT 2018 --> <title>com.fitpay.android.api.models.device Class Hierarchy</title> <meta name="date" content="2018-10...
{% extends "layout.html" %} {% block page_title %} Search for a charge {% endblock %} {% block content %} <main id="content" role="main"> <!-- alpha banner --> <div class="phase-banner"> <p><strong class="phase-tag">BETA</strong></p> </div> <!-- main content starts --> <div class="grid-row"> <div class="col...
As branches auxiliares nos apoiam no desenvolvimento entre os membros da equipe, nos ajudam a rastrear os recursos versionados, correções rápidas e facilita a preparação para os lançamentos em produção. Diferente das branches principais, as mesmas tem um tempo limitado de vida, sendo removidos quando cumprem o objeti...
package org.apache.felix.ipojo.composite.util; import java.util.ArrayList; import java.util.Dictionary; import java.util.List; import org.apache.felix.ipojo.ConfigurationException; import org.apache.felix.ipojo.ContextListener; import org.apache.felix.ipojo.ContextSource; import org.apache.felix.ipojo.comp...
import org.rosuda.JRclient.REXP; import org.rosuda.JRclient.RSrvException; import org.rosuda.JRclient.Rconnection; public class RTest { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try { Rconnection c = new Rconnection(); REXP x = c...
class Person include DataMapper::Resource property :id, Integer, :serial => true property :name, String has n, :entries xss_terminate :except => [:name] end
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
<?php /** * Plugin Name: WooCommerce Blocks * Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block * Description: WooCommerce blocks for the Gutenberg editor. * Version: 2.3.0 * Author: Automattic * Author URI: https://woocommerce.com * Text Domain: woo-gutenberg-products-block * WC ...
using System.Reflection; [assembly: AssemblyTitle("Projac")] [assembly: AssemblyDescription("This library provides lightweight infrastructure for producing SQL based projections.")]
Settings ======== ``ALAPAGE_CODE_MODE = False`` : to use the wysywig editor instead of the code editor ``ALAPAGE_BASE_TEMPLATE_PATH = 'my_base_template.html'`` : to choose a root base template with a different name than the default ``base.html`` To configure the Ckeditor interface: .. highlight:: python :: CK...
namespace Sample.WebApi.Areas.HelpPage { /// <summary> /// Indicates whether the sample is used for request or response /// </summary> public enum SampleDirection { Request = 0, Response } }
PEGASUS_NAMESPACE_BEGIN SelectStatementRep::SelectStatementRep() :_ctx(NULL) { } SelectStatementRep::SelectStatementRep(const SelectStatementRep& ssr) :_qlang(ssr._qlang), _query(ssr._query) { _ctx = NULL; if (ssr._ctx != NULL) { _ctx = ssr._ctx->clone(); } } SelectStatementRep::SelectStatementRep...
/* * 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 u...
// Copyright (c) 2013 Intel Corporation. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.xwalk.core.internal; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundExceptio...
<?php class Google_Service_ShoppingContent_ReturnpolicyCustomBatchRequest extends Google_Collection { protected $collection_key = 'entries'; protected $entriesType = 'Google_Service_ShoppingContent_ReturnpolicyCustomBatchRequestEntry'; protected $entriesDataType = 'array'; /** * @param Google_Service_Shop...
SYNONYM #### According to Interim Register of Marine and Nonmarine Genera #### Published in null #### Original name null ### Remarks null
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qclipboard.cp...
package com.divankits.mvc; public class ControllerOptions { private boolean mCacheForms; private boolean mDefaultOperations = false; private IControllerLifecycleHooks mLifecycleHooks; private Controller mController; public ControllerOptions a(Controller b){ mController = b; ret...
_box = std.object { _type = "Box", height= 0, depth= 0, width= 0, type="special", value=nil, __tostring = function (s) return s.type end, __concat = function (x,y) return tostring(x)..tostring(y) end, init = function(self) return self end } function _box:outputYourself () SU.error(self.type.." with ...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading; using System.Threading.Tasks; using LinqToDB; using NUnit.Framework; namespace Tests.Linq { using Model; [TestFixture] public class CompileTests : TestBase { [Test] p...
Type.registerNamespace("Strings"); Strings.OfficeOM = function() { }; Strings.OfficeOM.registerClass("Strings.OfficeOM"); Strings.OfficeOM.L_InvalidNamedItemForBindingType = "Указанный тип привязки несовместим с заданным именованным элементом."; Strings.OfficeOM.L_EventHandlerNotExist = "Указанный обработчик событий н...
#include <fx2macros.h> #include <fx2ints.h> #include <autovector.h> #include <delay.h> #include <setupdat.h> #ifdef DEBUG_FIRMWARE #include <serial.h> #include <stdio.h> #else #define printf(...) #endif volatile __bit dosud=FALSE; volatile __bit dosuspend=FALSE; // custom functions extern void main_loop(); ext...
#ifndef ZABBIX_VMSTAT_H #define ZABBIX_VMSTAT_H #include "sysinfo.h" #ifdef _AIX typedef struct { /* public */ unsigned char enabled; /* collecting enabled */ unsigned char data_available; /* data is collected and available */ unsigned char shared_enabled; /* partition runs in shared mode */ unsigned char ...
/* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F4xx_HAL_RNG_H #define __STM32F4xx_HAL_RNG_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal_def.h" /** @addtogroup STM32...
require 'google/protobuf' Google::Protobuf::DescriptorPool.generated_pool.build do add_file("google/ads/googleads/v12/enums/keyword_plan_network.proto", :syntax => :proto3) do add_message "google.ads.googleads.v12.enums.KeywordPlanNetworkEnum" do end add_enum "google.ads.googleads.v12.enums.KeywordPlanNe...
using System.Security.Claims; using System.Security.Principal; namespace SerialLabs { /// <summary> /// Provides extensions methods for the <see cref="IPrincipal"/> interface /// </summary> public static class IPrincipalExtensions { /// <summary> /// Returns the current <see cref="...
<?xml version="1.0" encoding="UTF-8"?> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gedmo="http://gediminasm.org/schemas/orm/doctrine-extensions-mapping" xsi:schemaLocation="http://doctrine-project.org/sch...
@interface DTCoreTextLayoutLine () @property (nonatomic, strong) NSArray *glyphRuns; @property (nonatomic, assign) dispatch_semaphore_t layoutLock; @end #define SYNCHRONIZE_START(obj) dispatch_semaphore_wait(layoutLock, DISPATCH_TIME_FOREVER); #define SYNCHRONIZE_END(obj) dispatch_semaphore_signal(layoutLock); @im...
<?php namespace Phine\Bundles\Core\Logic\Module; use Phine\Framework\Database\Objects\TableObject; use Phine\Framework\Database\Objects\TableSchema; use Phine\Framework\System\Http\Request; use Phine\Framework\System\Http\Response; use Phine\Framework\FormElements\Fields\Input; use Phine\Framework\FormElements\Fields...
<?php use Openbizx\Openbizx; use Openbizx\Object\MetaIterator; use Openbizx\Helpers\MessageHelper; include_once 'WebsvcError.php'; include_once 'WebsvcResponse.php'; class WebsvcService { public $errorCode = 0; public $websvcDO = "websvc.do.WebsvcDO"; public $publicMethods; public $messageFile;...
module Azure::DataFactory::Mgmt::V2018_06_01 module Models # # Linked service debug resource. # class LinkedServiceDebugResource < SubResourceDebugResource include MsRestAzure # @return [LinkedService] Properties of linked service. attr_accessor :properties # # Mapper...
var food = ['apple', 'pizza', 'pear']; console.log(food[1]); // bracket notation
package # hide from PAUSE indexer TypeLib; use MooseX::Types -declare => [ qw( XAccount ) ]; use MooseX::Types::Moose qw/HashRef/; class_type XAccount, { class => 'Account' }; coerce XAccount, from HashRef, via { Account->new(%$_) };
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- **************************************************************** --> <!-- * PLEASE KEEP COMPLICATED EXPRESSIONS OUT OF THESE TEMPLATES, * --> <!-- * i.e. only iterate & print data where possible. Thanks, Jez. *...
package de.danoeh.antennapod.fragment; import android.content.Context; import android.os.AsyncTask; import android.os.Bundle; import android.support.v4.app.ListFragment; import android.support.v4.view.MenuItemCompat; import android.support.v7.app.ActionBarActivity; import android.support.v7.widget.SearchView; import a...
<!-- Generated by pkgdown: do not edit by hand --> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AFINN Sentiment Lexicon — sentiment_afinn • corpus</title> <!-- jquery --> <sc...
using System.Collections.Generic; using System.Linq; using AutoMapper; using Dapper; using Neemo.Store; namespace Neemo.CarParts.EntityFramework { public class CategoryRepository : ICategoryRepository { public List<Category> GetAllCategories() { using (var context = DbContextFactor...
@interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. return YES; } - (void)applicationWillResignActive:(UIApplication *)applica...
package ij; import java.awt.*; import java.awt.image.*; import java.net.URL; import java.util.*; import ij.process.*; import ij.io.*; import ij.gui.*; import ij.measure.*; import ij.plugin.filter.Analyzer; import ij.util.*; import ij.macro.Interpreter; import ij.plugin.*; import ij.plugin.frame.*; /** An ImagePlus c...
<?php namespace App\Http\Controllers; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Routing\Controller as BaseController; use Illuminate\Foundation\Validation\ValidatesRequests; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; class BugtrackerBaseController extends BaseController { use Au...
A simple site for art profiles.
class Admin::TaxCategoriesController < Admin::ResourceController end
package syntax import "fmt" // TODO(gri) consider making this part of the parser code // checkBranches checks correct use of labels and branch // statements (break, continue, goto) in a function body. // It catches: // - misplaced breaks and continues // - bad labeled breaks and continues // - invalid, unus...
<?xml version="1.0" encoding="UTF-8"?> <ldswebml type="image" uri="/media-library/images/member-missionary#woman-giving-away-book-of-mormon-561549" xml:lang="eng" locale="eng" status="publish"> <search-meta> <uri-title its:translate="no" xmlns:its="http://www.w3.org/2005/11/its">woman-giving-away-book-of-mormon...
require 'fileutils' require 'erb' require 'open3' module Kontena module Machine module DigitalOcean class MasterProvisioner include RandomName include Machine::CertHelper include Kontena::Cli::ShellSpinner attr_reader :client, :http_client # @param [String] token D...
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="20dp" android:height="20dp" android:viewportWidth="20" android:viewportHeight="20" android:tint="?attr/colorControlNormal"> <path android:fillColor="@android:color/white" android:pathData="M2.75,15.583V4....
<html> <head> <title>OGRE: Member List - OGRE Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link type="text/css" rel="stylesheet" href="doxygen.css"> <link type="text/css" rel="stylesheet" href="tabs.css"> </head> <body> <!-- Generated by Doxygen 1.7.1 --> <div class=...
%% prelude.tex %% https://tex.stackexchange.com/questions/36609/formatting-section-titles %% KOMA needs it \let\sf\sffamily \let\bf\bfseries \let\tt\ttfamily \let\it\itshape \let\rm\rmfamily \usepackage{boolexpr,pdftexcmds,trace} \usepackage{multicol} %% KOMA for headers : \usepackage{scrlayer-scrpage} \pagestyle{scr...
using pb = global::Google.Protobuf; using pbc = global::Google.Protobuf.Collections; using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace Google.Ads.GoogleAds.V11.Services { /// <summary>Holder for reflection information generated from google/ads/googleads/v11/ser...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>libhyps: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css...
package com.codahale.metrics.httpclient; import com.codahale.metrics.MetricRegistry; import org.apache.http.HttpRequest; import org.apache.http.client.HttpClient; @FunctionalInterface public interface HttpClientMetricNameStrategy { String getNameFor(String name, HttpRequest request); default String getNameF...
layout: post102 title: Overview categories: XAP102 parent: administration-and-monitoring-overview.html weight: 100 --- {% summary%}{% endsummary %} Before diving into the Admin API, here are some code examples showing how the Admin API can be used to display information on the currently deployed servi...
Seismic wave modeling and reverse time migration - gpu implementation
/* @test @bug 7193219 @summary JComboBox serialization fails in JDK 1.7 @author Anton Litvinov */ import java.io.*; import javax.swing.*; import javax.swing.plaf.metal.*; public class bug7193219 { private static byte[] serializeGUI() { // Create and set up the window. JFrame frame = ne...
@class SNTabBar; @protocol SNTabBarDelegate <NSObject> @optional - (void)tabBarDidClickedPlusButton:(SNTabBar *)tabBar; @end @interface SNTabBar : UITabBar @property (nonatomic, weak) id<SNTabBarDelegate> tabBarDelegate; @end
package com.littleinc.orm_benchmark.sugarorm; import com.orm.Database; import com.orm.SugarApp; /** * Created by kgalligan on 10/24/15. */ public class SugarWeirdAppExtensionBecauseBadDesign extends SugarApp { public Database sneakyBreakEncapsulationBecause() { return getDatabase(); } }