text
stringlengths
3
1.05M
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_seq_packet_socket::message_out_of_band</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.h...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" con...
package com.mindoo.domino.jna.errors; import com.mindoo.domino.jna.NotesNote; /** * The exception is thrown in {@link NotesNote} when an item value is read that cannot (yet) * be parsed. * * @author Karsten Lehmann */ public class UnsupportedItemValueError extends NotesError { private static final long serialV...
size_t __cdecl strftime (char *string,size_t maxsize,const char *format,const struct tm *timeptr); #endif #endif
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Connection | miappio-sdk</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/...
namespace renderer { class IMaterialFactory; } namespace renderer { // // An array of material factories. // APPLESEED_DECLARE_APIARRAY(MaterialFactoryArray, IMaterialFactory*); // // Material factory registrar. // class APPLESEED_DLLSYMBOL MaterialFactoryRegistrar : public foundation::NonCopyable { public: ...
package model.semisupervised.activelearning; import data.DataSet; import gnu.trove.list.array.TDoubleArrayList; import gnu.trove.set.hash.TIntHashSet; import model.Predictable; import model.Trainable; import model.supervised.boosting.adaboot.SAMME; import org.apache.logging.log4j.LogManager; import org.apache.logging....
FROM darksasori/golang-dep as builder WORKDIR /go/src/github.com/darksasori/tvshow COPY Gopkg.lock Gopkg.lock COPY Gopkg.toml Gopkg.toml RUN dep ensure -v -vendor-only COPY . . RUN GOOS=linux go build -o tvshow FROM alpine:3.7 RUN addgroup -S tvshow && adduser -S -g tvshow tvshow EXPOSE 8080 USER tvshow ENV T...
#include "iotreewindowcontroller.h" @implementation IOTreeWindowController -(id)initWithMemSpace:(int)space { self = [super initWithWindowNibName:@"IOTreeWindow" title:@"IO Tree" memSpace:space]; if (!self) { return self; } // read in io tree plist NSDictionary *treeDict = [[NSDiction...
import {ComplexActivationStrategy} from "../../../Source/Strategies/ComplexActivationStrategy"; var _first = null; var _second = null; var _third = null; class MyClass { constructor(first, second, third) { _first = first; _second = second; _third = third; } } describe("when activati...
package sriovnet import ( "fmt" "log" "net" "os" "path" "path/filepath" "regexp" "strconv" "strings" "github.com/google/uuid" "github.com/vishvananda/netlink" utilfs "github.com/Mellanox/sriovnet/pkg/utils/filesystem" ) const ( // Used locally etherEncapType = "ether" ibEncapType = "infiniband" ) ...
package de.lezleoh.mathgame.term; import java.util.ArrayList; public class TermQueue { ArrayList<TermInt> terms; int counter; public TermQueue() { super(); terms = new ArrayList<TermInt>(); counter = 0; } public void addTerm(TermInt term) { terms.add(term); } public void removeTerm...
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W30977_text</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> ...
// // UIColor+PXColors.h // Pixate // // Created by Kevin Lindsey on 6/15/12. // Copyright (c) 2012 Pixate, Inc. All rights reserved. // #import <UIKit/UIKit.h> /** * The UIColor+PXColors category extends UIColor to allow colors to be specified by SVG color name, hex strings, * and hex values. Additionally, H...
/* The file is part of Snowman decompiler. */ /* See doc/licenses.asciidoc for the licensing information. */ #pragma once #include <nc/config.h> #include <QCoreApplication> #include <QTextStream> #include "Logger.h" namespace nc { /** * Logger printing messages to a stream. */ class StreamLogger: public nc::Log...
ACCEPTED #### According to Index Fungorum #### Published in Mycol. Res. 102(7): 851 (1998) #### Original name Claviceps citrina Pažoutová, Fucík., Leyva-Mir & Flieger ### Remarks null
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>plouffe: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css...
<?php namespace TimMcLeod\ViewModel\Console; use Illuminate\Console\GeneratorCommand; class ViewModelMakeCommand extends GeneratorCommand { /** * The console command name. * * @var string */ protected $name = 'make:view-model'; /** * The console command description. * ...
<?php Class Product_Form_Frm extends Zend_Dojo_Form { // public function init() // { // } public function Frmbranch($data=null){ $tr = Application_Form_FrmLanguages::getCurrentlanguage(); $filter = 'dijit.form.FilteringSelect'; $tvalidate = 'dijit.form.ValidationTextBox'; $textbox = 'dijit.form.TextBox'...
external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 9F69DAEF-F2ED-449B-B75F-FCA7ED73D98F online version: schema: 2.0.0 --- # Set-AzureRmNetworkSecurityGroup ## SYNOPSIS Sets the goal state for a network security group. ## SYNTAX ``` Set-AzureRmNetworkSecurityG...
using System; using System.Collections.Generic; using System.Linq; using MonoTouch.Foundation; using MonoTouch.UIKit; namespace LMT65 { public class Application { static void Main (string[] args) { UIApplication.Main (args); } } // The name AppDelegate is referenced in the MainWindow.xib file. public pa...
<?php /** * @file * Contains \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest. */ namespace Drupal\Tests\Core\Config\Entity { use Drupal\Core\Config\Entity\ConfigEntityInterface; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Language\Language; use Drupal\Tests\UnitTestCase; use Symfony\Component...
<?php namespace Noherczeg\Breadcrumb; use InvalidArgumentException; /** * Translator * * The sole job of this class is to properly translate (or not) the given value * according to the configurations. */ class Translator { private $dictionary = null; private $language_folder = null; ...
using DemoParser_Core.Streams.BitStream; using DemoParser_Core.DataTables; using DemoParser_Core.Entities; using DemoParser_Core.Messages; using System.Diagnostics; using System.IO; using DemoParser_Core.Events; namespace DemoParser_Core.Packets.Handlers { /// <summary> /// Manage lifetime of all entities, from cre...
class CreateProfileBasics < ActiveRecord::Migration def change create_table :profile_basics do |t| t.references :identity_member, index: true, foreign_key: true t.string :first_name, default: '' t.string :last_name, default: '' t.string :github, default: '' t.string :deviantart, defa...
require 'sidekiq/web' require 'api/api' Gitlab::Application.routes.draw do namespace :ci do # CI API Ci::API::API.logger Rails.logger mount Ci::API::API => '/api' resource :lint, only: [:show, :create] resources :projects do collection do post :add get :disabled end ...
package io.hops.security; import com.google.common.base.Predicates; import com.google.common.collect.Collections2; import com.google.common.collect.Lists; import io.hops.exception.ForeignKeyConstraintViolationException; import io.hops.exception.StorageException; import io.hops.exception.UniqueKeyConstraintViolationEx...
<?php /** * DistrictResponseTest * * PHP version 5 * * @category Class * @package Swagger\Client * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen */ /** * Clever API * * The Clever API * * OpenAPI spec version: 2.1.0 * * Generated by: https://github.com/swag...
<?php declare(strict_types=1); namespace App\Validator; use App\Entity\Package; use App\Model\DownloadManager; use App\Util\DoctrineTrait; use Doctrine\Persistence\ManagerRegistry; use Symfony\Component\HttpFoundation\RequestStack; use Symfony\Component\Mailer\MailerInterface; use Symfony\Component\Mime\Address; us...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE190_Integer_Overflow__int_max_square_14.c Label Definition File: CWE190_Integer_Overflow__int.label.xml Template File: sources-sinks-14.tmpl.c */ /* * @description * CWE: 190 Integer Overflow * BadSource: max Set data to the max value for int * GoodSource: S...
const http = require('http') const https = require('https') const parseUrl = require('url').parse const common = require('../common') const retry = require('../retry') const FakeResponse = require('../http/response') const assign = require('lodash').assign const setupReq = requ...
export {}; //# sourceMappingURL=index.d.js.map
require 'news_scraper/trainer/preset_selector' require 'news_scraper/trainer/url_trainer' module NewsScraper module Trainer extend self # Fetches articles from Extraction sources and trains on the results # # *Training* is a process where we take an untrained url (root domain # is not in <code>a...
package com.alfresco.activiti.analytics; import java.util.Map; import org.activiti.engine.history.HistoricProcessInstance; import org.activiti.engine.history.HistoricTaskInstance; public interface CustomAnalyticsEndpoint { String fetchWaterMark(); void updateWaterMark(String watermark); void preProces...
/* * 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.levigo.jadice.server.converterclient.configurations; import com.levigo.jadice.server.Job; import com.levigo.jadice.server.documentplatform.DocumentPrintNode; import com.levigo.jadice.server.documentplatform.JadiceDocumentInfoNode.UnhandledFormatAction; import com.levigo.jadice.server.nodes.StreamInput...
<?xml version="1.0"?> <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> <!-- =============================================================== --> <!-- Configure stderr and stdout to a Jetty rollover log file --> <!-- this configuration file should be used in comb...
/* * Description: * replica container - replica stub * * Revision history: * Mar., 2015, @imzhenyu (Zhenyu Guo), first version * xxxx-xx-xx, author, fix bug about xxx */ #include "replica.h" #include "replica_stub.h" #include "mutation_log.h" #include "mutation.h" #include <dsn/cpp/json_helper.h>...
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model common\models\ProductCategory */ $this->title = Yii::t('common', 'Update {modelClass}: ', [ 'modelClass' => 'Product Category', ]) . ' ' . $model->title; $this->params['breadcrumbs'][] = ['label' => Yii::t('product_category', 'Product Categ...
from flask import Flask,request,session from database import db_session import os from flask_wtf.csrf import CsrfProtect from datetime import datetime from hashlib import md5 from flask.ext.login import LoginManager from itsdangerous import URLSafeTimedSerializer from datetime import timedelta from flask.ext.login impo...
<?php namespace Itkg\Core\Response\Processor; use Itkg\Core\Response\PostProcessorInterface; use Symfony\Component\HttpFoundation\Response; class CompressProcessor implements PostProcessorInterface { /** * Drop comments & compress response content * * @param Response $response */ publi...
<?php /** * RealNameValidation * * PHP version 5 * * @category Class * @package GoDaddyDomainsClient * @author http://github.com/swagger-api/swagger-codegen * @license http://www.apache.org/licenses/LICENSE-2.0 Apache Licene v2 * @link https://github.com/swagger-api/swagger-codegen */ /** * No descr...
namespace Google.Cloud.Tasks.V2.Snippets { // [START cloudtasks_v2_generated_CloudTasks_PauseQueue_async_flattened] using System.Threading.Tasks; using gctv = Google.Cloud.Tasks.V2; public sealed partial class GeneratedCloudTasksClientSnippets { /// <summary>Snippet for PauseQueueAsync</sum...
cat module.requires > dist/id-map.js cat ../../meteor/packages/id-map/id-map.js >> dist/id-map.js cat module.exports >> dist/id-map.js
import * as React from 'react'; import { getClasses } from '@material-ui/core/test-utils'; import createMount from 'test/utils/createMount'; import describeConformance from '@material-ui/core/test-utils/describeConformance'; import TimelineContent from './TimelineContent'; describe('<TimelineContent />', () => { con...
FROM ubuntu:14.04 MAINTAINER Satnam Singh "satnam@google.com" # Ensure there are enough file descriptors for running Fluentd. RUN ulimit -n 65536 # Disable prompts from apt. ENV DEBIAN_FRONTEND noninteractive # Install prerequisites. RUN apt-get update && \ apt-get install -y curl && \ apt-get install -y -q ...
<div class="small-screen-search-backdrop" [hidden]="toggleBackdrop" (click)="toggleSearchForm()"> </div> <button class="small-width-search-btn" (click)="toggleSearchForm()"> <img src="app/assets/images/search-icon.svg"> </button> <md-icon svgIcon="arrow" class="arrow-icon" [hidden]="toggleBackdrop"></md-icon> <fo...
RSpec.describe 'Sanity' do it 'Agrees that true is truthy' do expect(true).to be_truthy end end
import Input from '@salesforce/design-system-react/components/input'; import Tooltip from '@salesforce/design-system-react/components/tooltip'; import debounce from 'lodash/debounce'; import React, { useState } from 'react'; interface Props { label?: string | null; defaultValue?: string | null; onValueUpdate: (v...
"""Implements text_summary in TensorFlow, with TensorBoard support. The text_summary is basically a wrapper around the generic tensor_summary, and it uses a TextSummaryPluginAsset class to record which tensor_summaries are readable by the TensorBoard text plugin. """ from __future__ import absolute_import from __futu...
package org.sejda.sambox.pdmodel.interactive.form; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.util.ArrayList; import java.util.List; import org.junit.Before; import org.junit.Test; import org.sejda.sambox.cos.COSArr...
<?php $file = __DIR__.'/../vendor/autoload.php'; if (!file_exists($file)) { throw new RuntimeException('Install dependencies to run test suite.'); } $autoload = require_once($file);
<!--Man nav bar--> <nav class="navbar navbar-default" ng-if="currentUser.id != undefined"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#...
Services for Google Cloud Artifactregistry v1 API ================================================= .. toctree:: :maxdepth: 2 artifact_registry
std::shared_ptr<ICompression> CompressionFactory::getObject(int t_width, int t_height, rs2_format t_format, rs2_stream t_streamType, int t_bpp) { ZipMethod zipMeth; if(t_streamType == RS2_STREAM_COLOR || t_streamType == RS2_STREAM_INFRARED) { zipMeth = ZipMethod::jpeg; } else if(t_streamType...
// Code generated by go-swagger; DO NOT EDIT. package operations // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "net/http" "time" "golang.org/x/net/context" "github.com/go-openapi/errors" "github.com/go-openapi/runt...
import React from 'react'; import clsx from 'clsx'; import { makeStyles, useTheme } from '@material-ui/core/styles'; import Input from '@material-ui/core/Input'; import InputLabel from '@material-ui/core/InputLabel'; import MenuItem from '@material-ui/core/MenuItem'; import FormControl from '@material-ui/core/FormContr...
/** * Main file * Pokemon Showdown - http://pokemonshowdown.com/ * * This is the main Pokemon Showdown app, and the file you should be * running to start Pokemon Showdown if you're using it normally. * * This file sets up our SockJS server, which handles communication * between users and your server, and also s...
<?php namespace RodrigoPedra\RecordProcessor\RecordSerializers; use RodrigoPedra\RecordProcessor\Contracts\Record; use RodrigoPedra\RecordProcessor\Contracts\RecordSerializer; use RodrigoPedra\RecordProcessor\Contracts\Serializer; class CallbackRecordSerializer implements RecordSerializer { protected $callback; ...
module Nimbos class Listitem < ActiveRecord::Base def to_partial_path() "nimbos/listheaders/listitem" end belongs_to :listheader #attr_accessible :code, :i18n_code, :list_code, :name Nimbos::Listheader.all.each do |header| scope "#{header.code}", -> { where(list_code: header.code) } ...
package com.orangereading.stardict.domain; import java.util.Arrays; /** * * StarDict dictionary meta. * * @author sean * */ public class DictionaryInfo implements ImmutableDictionaryInfo { private static final long serialVersionUID = 8843514996627435927L; private String version; private String bookname;...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/iam/v1/iam_policy.proto package com.google.iam.v1; /** * <pre> * Request message for `TestIamPermissions` method. * </pre> * * Protobuf type {@code google.iam.v1.TestIamPermissionsRequest} */ public final class TestIamPermissionsRequ...
<!DOCTYPE> <html> <head> <title>Thermostat</title> <meta charset='utf8'> <style> body { margin: 20px; font-size: 20px; font-family: 'Helvetica Neue'; } .efficient { color: green; } .average { color: orange; } .inefficient { color: red; } </style> </head> <body> <h2> ...
using System.Windows.Forms; using System.Collections.Generic; using System.Linq; using Common; using Common.Controls; using Fairweather.Service; namespace Config_Gui { public class Settings_Control : DTA_Tab_Control { public Settings_Control() { var tabs = Get_Tabs(); ...
version: v1.2.0 category: API redirect_from: - /docs/v0.24.0/api/menu/ - /docs/v0.25.0/api/menu/ - /docs/v0.26.0/api/menu/ - /docs/v0.27.0/api/menu/ - /docs/v0.28.0/api/menu/ - /docs/v0.29.0/api/menu/ - /docs/v0.30.0/api/menu/ - /docs/v0.31.0/api/menu/ - /docs/v0.32.0/api/menu/ -...
require 'minitest_helper' require 'montage/operators/gte' class Montage::Operators::GteTest < Minitest::Test context ".==" do should "return true if the operator matches" do assert Montage::Operators::Gte == "foo >= 42" end should "return false if the operator does not match" do refute Monta...
/** * @file * @author LKostyra (costyrra.xl@gmail.com) * @brief Common declarations for Renderer */ #ifndef __RENDERER_COMMON_HPP__ #define __RENDERER_COMMON_HPP__ #include "Common/Logger.hpp" #include <string> #ifdef WIN32 #include <Windows.h> #endif // WIN32 #include <GL/gl.h> #ifdef _DEBUG #include <GL/g...
import { Inject, Injectable } from '@angular/core'; import { Headers, Http } from '@angular/http'; import { ActivatedRoute } from '@angular/router'; import { cloneDeep } from 'lodash'; import { Spaces, WIT_API_URL } from 'ngx-fabric8-wit'; import { Observable } from 'rxjs/Observable'; import { Subject } from 'rxjs/Subj...
@extends('adminlte::layouts.app') @section('htmlheader_title') {{ trans('adminlte_lang::message.productgroups') }} - {{ $productgroup->name }} @endsection @section('contentheader_title') {{ trans('adminlte_lang::message.productgroups') }} <small>{{ $productgroup->name }}</small> @endsection @section('breadcr...
[![Meteor Icon](http://icon.meteor.com/package/useraccounts:semantic-ui)](https://atmospherejs.com/useraccounts/semantic-ui) [![Build Status](https://travis-ci.org/meteor-useraccounts/semantic-ui.svg?branch=master)](https://travis-ci.org/meteor-useraccounts/semantic-ui) useraccounts:semantic-ui =======================...
package org.metafacture.formeta.formatter; import org.metafacture.commons.StringUtil; import org.metafacture.formeta.Formeta; /** * Base class for formatters. * * @author Christoph Böhme. * */ public abstract class AbstractFormatter implements Formatter { public static final String CHARS_TO_ESCAPE_QUOTED =...
ACCEPTED #### According to IUCN Red List of Threatened Species #### Published in null #### Original name null ### Remarks null
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>Bad - ScalaTest 2.1.0 - org.scalautils.Bad</title> <meta name="description" content="Bad - ScalaTest 2.1.0 - org.scalautils.Bad" /> ...
using System; using System.Text.RegularExpressions; using UnityEngine; namespace NetworkSkins.Net { public static class CatenaryUtils { // Tram Pole Center // private static readonly string[] TramPoleSideNames = new[] { "Tram Pole Side" }; private ...
namespace segmatch { typedef kindr::minimal::QuatTransformationTemplate<double> SE3; template <typename PointCloudT> static void loadCloud(const std::string& filename, PointCloudT* cloud) { LOG(INFO) <<"Loading cloud: " << filename << "."; CHECK_NE(pcl::io::loadPCDFile(filename, *cloud), -1) << "Failed to l...
/*=================================================== CONTROL MASTER CODE ===================================================*/ // Global Include #include <blackbox/plugin/bb.h> #include <string.h> #include <stdlib.h> //Parent Include #include "ControlMaster.h" //Includes #include "Definitions.h" #include "PluginM...
package org.springframework.web.testfixture.servlet; import java.io.IOException; import jakarta.servlet.Filter; import jakarta.servlet.FilterChain; import jakarta.servlet.Servlet; import jakarta.servlet.ServletException; import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import org.spri...
<?xml version='1.0'?> <test xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:noNamespaceSchemaLocation="string_maxLength001.xsd" > <!-- facet=maxLength and value=4 and document value=abcde --> <foo>abcde</foo> </test>
<?php namespace Tests\Feature; use Tests\TestCase; use Illuminate\Foundation\Testing\WithoutMiddleware; use Illuminate\Foundation\Testing\DatabaseMigrations; use Illuminate\Foundation\Testing\DatabaseTransactions; use Illuminate\Foundation\Testing\RefreshDatabase; use App\Models\User; class ImpersonateUsersTest exte...
 namespace Apache.Ignite.Core.PersistentStore { using System; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using Apache.Ignite.Core.Binary; using Apache.Ignite.Core.Configuration; using Apache.Ignite.Core.Impl.Binary; /// <summary> ...
LAppMenuPlugin::LAppMenuPlugin(QWidget *parent, QString id, bool horizontal) : LPPlugin(parent, id, horizontal){ button = new QToolButton(this); button->setAutoRaise(true); button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); mainmenu = new QMenu(this); button->setMenu( mainmenu ); button->setP...
<?php get_header(); ?> <section role="main"> <?php if (have_posts()): the_post(); ?> <h1><?php _e( 'Author Archives for ', 'html5blank' ); echo get_the_author(); ?></h1> <?php if ( get_the_author_meta('description')) : ?> <?php echo get_avatar(get_the_author_meta('user_email')); ?> <h2><?php _e( 'Abou...
package pku.miao.zhihudaily.component; import android.content.Context; import android.support.design.widget.Snackbar; import android.util.Log; import android.view.View; import android.widget.Toast; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.squareup.okhttp.OkHttpClient; import java.u...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in Ann. Missouri Bot. Gard. 20:322. 1933 #### Original name null ### Remarks null
<?php /* SensioDistributionBundle:Configurator:check.html.twig */ class __TwigTemplate_8111c124c9174c8b40296ae0084c96be1e12bfab54f974543e5f1882e363103a extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); // line 1 try { $t...
<div id="pedido-main"> <div id="pedido-title"> <h1>NRO. {{id}} - ESTADO: {{getStatusText(data.status)}}</h1> <i class="fa fa-home" aria-hidden="true" style="cursor: pointer" (click)="goTo('principal')"></i> </div> <div class="pedido-items-title"> <span>PRODUCTOS SELECCIONADOS</span> ...
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.1.0-rc.5-master-7f01138 */ /* Only used with Theme processes */ html.md-THEME_NAME-theme, body.md-THEME_NAME-theme { color: '{{foreground-1}}'; background-color: '{{background-color}}'; } md-tooltip.md-THEME_NAME-theme { ...
import * as vscode from 'vscode'; import { AbstractServer } from './engine/AbstractServer'; class ConnectionsProvider{ items: vscode.TreeItem[]; _onDidChangeTreeData: vscode.EventEmitter<any>; onDidChangeTreeData: any; constructor() { this._onDidChangeTreeData = new vscode.EventEmitter()...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
tutorial on refining molecular dynamics force-fields for the SHUG 2015 meeting
require 'rails_admin/config/fields/base' module RailsAdmin module Config module Fields module Types class Text < RailsAdmin::Config::Fields::Base # Register field type for the type loader RailsAdmin::Config::Fields::Types::register(self) @searchable = true ...
package net.ngeor.t3; public interface MainActivityView { void setHeaderText(int resourceId); void invalidateBoardView(); }
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle...
package org.opencb.cellbase.core.common.regulatory; // Generated Jun 5, 2012 6:41:13 PM by Hibernate Tools 3.4.0.CR1 import java.util.HashSet; import java.util.Set; /** * RegulatoryRegion generated by hbm2java. */ public class RegulatoryRegion implements java.io.Serializable { private int regulatoryRegionId...
<?php namespace Sf\LoanBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Sf\UserBundle\Entity\UserRepository; class LoanType extends AbstractType { private $foyerId; public function __con...
require 'rails_helper' RSpec.describe AdminUser do describe 'validations' do before do create(:admin_user) end it { is_expected.to validate_presence_of(:first_name) } it { is_expected.to validate_presence_of(:last_name) } it { is_expected.to validate_presence_of(:email) } it { is_expe...
module SimplifiedStarling ## # Push record task into the queue # def push(task, *args) ActiveRecord::Base.verify_active_connections! if defined?(ActiveRecord) job = {} job[:type] = (self.kind_of? Class) ? self.to_s : self.class.to_s job[:id] = (self.kind_of? Class) ? nil : self.id job[:ta...
package ec2 import "github.com/timob/javabind" type ServicesEc2ModelDescribeSubnetsResultInterface interface { JavaLangObjectInterface // public java.util.List<com.amazonaws.services.ec2.model.Subnet> getSubnets() GetSubnets() []*ServicesEc2ModelSubnet // public void setSubnets(java.util.Collection<com.amazonaw...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>LCOV - coverage.info - Controllers/ViewController.m - functions</title> <link rel="stylesheet" type="text/css" href="../gcov.css"> </head> <body> ...
package org.coursera.androidcapstone.potlatch.services; import android.app.Activity; import android.app.IntentService; import android.content.Intent; import android.support.v4.content.LocalBroadcastManager; import org.coursera.androidcapstone.potlatch.activities.PotlatchApplication; import org.coursera.androidcapston...