text stringlengths 3 1.05M |
|---|
@implementation DateTools : NSObject
+ (NSString *)getDateFromString:(NSString *)timestamp{
NSTimeInterval time = [timestamp doubleValue];
NSDate *date = [NSDate dateWithTimeIntervalSince1970:time];
NSDateFormatter *formater = [[NSDateFormatter alloc] init];
formater.dateFormat = @"yyyy-MM-dd";
NSS... |
namespace llvm {
// Forward declarations.
class Module;
class raw_ostream;
class SMDiagnostic;
class StringRef;
class Twine;
class Value;
/// \brief Interface for custom diagnostic printing.
class DiagnosticPrinter {
public:
virtual ~DiagnosticPrinter() {}
// Simple types.
virtual DiagnosticPrinter &operator<<(... |
require 'rails_helper'
RSpec.describe OrderItem, type: :model do
subject { FactoryGirl.create :order_item }
it { expect(subject).to validate_presence_of(:price) }
it { expect(subject).to validate_presence_of(:quantity) }
it { expect(subject).to belong_to(:book) }
it { expect(subject).to belong_to(:order) }
... |
namespace ExampleBrowser
{
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Imaging;
public class Example
{
public string Title { get; private set; }
public string Description { get; set; }
... |
#pragma interface "accessbase.h"
#endif
// ----------------------------------------------------------------------------
// headers we have to include here
// ----------------------------------------------------------------------------
#include "wx/variant.h"
typedef enum
{
wxACC_FAIL,
wxACC_FALSE,
wx... |
if [ ! -e catkin/src ]; then
mkdir -p catkin/src
fi
if [ ! -e catkin/src/command_handler ]; then
ln -s ~+/ catkin/src/command_handler
fi
|
from swgpy.object import *
def create(kernel):
result = Tangible()
result.template = "object/tangible/space/content_infrastructure/shared_basic_patrol_point.iff"
result.attribute_template_id = -1
result.stfName("item_n","patrol_point")
#### BEGIN MODIFICATIONS ####
#### END MODIFICATIONS ####
return r... |
<?php
namespace Oro\Bundle\ApiBundle\Tests\Functional\RestJsonApi;
use Extend\Entity\TestApiE1 as Entity;
use Oro\Bundle\ApiBundle\Tests\Functional\DataFixtures\LoadEnumsData;
use Oro\Bundle\ApiBundle\Tests\Functional\RestJsonApiTestCase;
class SortersByAssociationTest extends RestJsonApiTestCase
{
/**
* {@... |
package com.intellij.codeInsight.lookup.impl;
import com.intellij.codeInsight.lookup.LookupElement;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.editor.RangeMarker;
import com.intellij.openapi.editor.event.DocumentAdapter;
import com.intellij.openapi.editor.event.DocumentEvent;
import com.in... |
<!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 (version 1.7.0_25) on Thu Jan 01 17:43:59 PST 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.f... |
package org.springframework.core.type.classreading;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;
import org.springframework.asm.Opcodes;
import org.springframework.core.annotation.MergedAnnotations;
import org.springframework.core.type.AnnotationMetadata;
import org.springfram... |
package de.jtem.riemann.surface;
import java.io.Serializable;
import de.jtem.mfc.field.Complex;
public final class SingularPoint extends SurfacePoint implements Serializable, Cloneable {
private static final long serialVersionUID = 1L;
public SingularPoint( RamifiedCovering aSurface, double x, double ... |
'use strict';
// MODULES //
var EventEmitter = require( 'events' ).EventEmitter;
var logger = require( 'debug' );
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
var inherit = require( '@stdlib/utils/inherit' );
var instanceOf = require( '@stdlib/assert/instance-of' );
var rend... |
.adminHeader {
min-height:200px;
background-color:#DB4886;
color:#FFF;
padding-right:30px;
padding-left:30px;
padding-top:30px;
}
.adminHeader a,
.adminHeader a:link,
.adminHeader a:visited,
.adminHeader a:hover {
display:block;
color:white;
text-decoration:none;
line-height:1.... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const chalk_1 = require("chalk");
const namespace_1 = require("@ionic/cli-utils/lib/namespace");
class CordovaNamespace extends namespace_1.Namespace {
constructor() {
super(...arguments);
... |
var crypto = require('crypto');
var deepcopy = require('deepcopy');
var rack = require('hat').rack();
var Auth = require('./Auth');
var cache = require('./cache');
var Config = require('./Config');
var passwordCrypto = require('./password');
var facebook = require('./facebook');
var Parse = require('parse/node');
var ... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
using ND.MCJ.AOP.Logging;
using System;
using System.Configuration;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace NC.MCJ.WebApi
{
// 注意: 有关启用 IIS6 或 IIS7 经典模式的说明,
// 请访问 http://go.microsoft.com/?LinkId=9394801
... |
package br.com.trein.bachelor.job.validation;
public class EANValidator {
private static final int EAN_LENGTH = 13;
public void validate(String ean) throws InvalidEANException {
validateLength(ean);
validateFormat(ean);
}
private void validateLength(String ean) throws InvalidEANExcepti... |
function _repoactions_usage() {
echo "repoactions v0.3.3"
echo "https://github.com/chaimleib/repoactions"
echo "repoactions - run script on entering a git repo"
echo "Usage: $_repoactions_script_name -[cdehsSwWvz]"
echo ""
echo "Options:"
echo " c Create config files, if not present"
... |
- time limit per test: 10 seconds
- memory limit per test: 64 megabytes
- input: standard input
- output: standard output
In the popular spreadsheets systems (for example, in Excel) the following numeration of columns is used. The first column has number A, the second — number B, etc. till column 26 that is marked... |
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "logtacts.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
|
FROM balenalib/isg-503-ubuntu:bionic-build
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver keyserver.ubuntu.com --re... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>presburger: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.... |
exports.defineTags = function(dictionary) {
dictionary.defineTag('ngdoc', {
mustHaveValue: true,
onTagged : function(doclet, tag) {
if (tag.value == "method") {
doclet.addTag('kind', 'function');
} else {
doclet.addTag('kind', 'class');
}
doclet.ngdoc = tag.value;
}... |
// ***************************************************************************
// * Copyright 2015 Joseph Molnar
// *
// * 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
// *
//... |
package com.adamin.android.qdbus.thirdparty.avloading.indicator;
import android.graphics.Canvas;
import android.graphics.Paint;
import com.nineoldandroids.animation.Animator;
import com.nineoldandroids.animation.ValueAnimator;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Jack on 2015/10/20.
... |
//
// BaseRefreshPageCustomTableViewController.h
// mgame648
//
// Created by yaowang on 16/1/18.
// Copyright © 2016年 yaowang. All rights reserved.
//
#import "BaseRefreshListCustomTableViewController.h"
#import "LoadMoreView.h"
@interface BaseRefreshPageCustomTableViewController : BaseRefreshListCustomTableViewC... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ctltctl: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" r... |
Besides being serializable, Marten's only other requirement for a .Net type to be a document is the existence of an identifier field or property that Marten can use as the primary key for the document type. The `Id` can be either a public field or property, and the name must be either `id` or `Id` or `ID`. As of this t... |
declare var require;
import {Http, Headers} from '@angular/http';
import {Injectable} from '@angular/core';
import {Storage, LocalStorage, NavController} from 'ionic-angular';
import 'rxjs/add/operator/toPromise';
import {OvhRequestService} from '../../services/ovh-request/ovh-request.service';
import {AnalyticsServic... |
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="./testcase.xsl"?>
<test_definition>
<suite category="W3C/HTML5 APIs" name="tct-xmlhttprequest-w3c-tests">
<set name="XMLHttpRequest1" type="js">
<testcase component="WebAPI/Communication/XMLHttpRequest Level 2 (Partial)" execution... |
package com.fireflysource.net.http.common.v2.frame;
public class ResetFrame extends Frame {
public static final int RESET_LENGTH = 4;
private final int streamId;
private final int error;
public ResetFrame(int streamId, int error) {
super(FrameType.RST_STREAM);
this.streamId = streamId... |
class Account < ActiveRecord::Base
has_many :users
has_one :account_history
end
class AccountHistory < ActiveRecord::Base
belongs_to :account
end
class Supplier < ActiveRecord::Base
has_one :account_history, through: :account
end
class User < ActiveRecord::Base
belongs_to :account
end
class Employee < Act... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
Leptosphaeria pseudodiaporthe Oudem., 1892
### Remarks
null |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
@implementation UITabBarItem (QMUI)
- (UIControl *)qmui_barButton {
return [self valueForKey:@"view"];
}
- (UIImageView *)qmui_imageView {
UIControl *barButton = [self qmui_barButton];
if (!barButton) {
return nil;
}
for (UIView *subview in barButton.subviews) {
// iOS10及... |
On the VM hosting the ownCloud instance connect to the Docker container where the instance is actually running:
```
docker exec -it owncloud bash
```
https://doc.owncloud.org/server/latest/developer_manual/core/theming.html
|
// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.jps.incremental;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.util.*;
import com.intellij.openapi.util.io.FileUtil;
import com... |
package com.sciul.recurly.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
impo... |
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.DataContracts;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.Azure;
using Microsoft.Owin.Hosting;
using Microsoft.Practices.Unity;
using Microsoft.WindowsAzure.ServiceRuntime;
using Owin;
using System;
using System.Collections... |
try:
from string import lowercase
except:
from string import ascii_lowercase as lowercase
from copy import deepcopy
from operator import not_
"""
Provides models and tools for converting a nested list AST
into a tree model (given by Expression) and vice versa.
"""
class Term:
"""
Models a term (in a... |
namespace gfx {
class Rect;
}
namespace app_list {
class AppsGridView;
class ApplicationDragAndDropHost;
class AppListFolderItem;
class AppListFolderView;
class AppListMainView;
class AppListModel;
class FolderBackgroundView;
// AppsContainerView contains a root level AppsGridView to render the root level
// app ite... |
package org.elasticsearch.xpack.core.ml.inference.trainedmodel.inference;
import org.apache.lucene.util.RamUsageEstimator;
import org.elasticsearch.common.xcontent.ObjectParser;
import org.elasticsearch.common.xcontent.XContentParser;
import org.elasticsearch.xpack.core.ml.inference.preprocessing.LenientlyParsedPreP... |
/* ========================================================================
* B-JUI: bjui-navtab.js v1.2
* @author K'naan (xknaan@163.com)
* -- Modified from dwz.navTab.js (author:ZhangHuihua@msn.com)
* http://git.oschina.net/xknaan/B-JUI/blob/master/BJUI/js/bjui-navtab.js
* =============================... |
package org.apache.sis.image;
import java.util.Map;
import java.awt.Shape;
import java.awt.image.BufferedImage;
import java.awt.image.RenderedImage;
import org.apache.sis.internal.processing.isoline.IsolinesTest;
import org.apache.sis.test.DependsOn;
import org.opengis.referencing.operation.MathTransform;
import org.... |
<!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_66) on Mon Dec 14 15:58:40 CST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>play.classloading.hash (Play... |
FROM balenalib/jetson-xavier-nx-devkit-ubuntu:impish-run
ENV NODE_VERSION 12.22.9
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv... |
<!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_91) on Mon Jun 06 14:51:21 EDT 2016 -->
<title>Uses of Class org.apache.cassandra.hadoop.ConfigHelper (apache-cassandra API)</title>
<meta name... |
<html>
<head>
<title>User agent detail - MOT-XT530/Mozilla/5.0 (Linux; U; Android 2.3.5; xx; XT530 Build/V4.460) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">... |
package com.github.axet.vget.info;
import java.net.URL;
import java.util.Comparator;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import com.github.axet.vget.info.VideoInfo.VideoQuality;
public abstract class VGetParser {
static public class VideoDownload {
public VideoQualit... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
"use strict";
var TodoList = Cape.createComponentClass({
render: function(m) {
m.ul(function(m) {
this.items.forEach(function(item) {
this.renderItem(m, item);
}.bind(this))
});
this.renderForm(m);
},
renderItem: function(m, item) {
m.li(function(m) {
m.label({ class: {... |
- [FIX] Stop the stripes animation when hidden #13
### Version 3.1.0
- [FIX] Gloss effect on the stripes
- [ADD] `indicatorTextLabel` property to display the value inside the progress
- [ADD] `indicatorTextDisplayMode` property to change the indicator text display
- [ADD] `type` property to display the progress as fl... |
package net
import (
"runtime"
"syscall"
)
func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
ip, err := interfaceToIPv4Addr(ifi)
if err != nil {
return wrapSyscallError("setsockopt", err)
}
var a [4]byte
copy(a[:], ip.To4())
err = fd.pfd.SetsockoptInet4Addr(syscall.IPPROTO_IP, syscall.IP_MUL... |
<html>
<body>
<h2> Problem Set 1</h2>
Download the starter code from https://drive.google.com/open?id=0BzC6J7ShkT0QX0tNSnJYWmJCa0k There is a directory starter_code. Copy this directory to a directory with your name. You will always operate on this copy. Inside you will find a run.html file
and an exercise... |
#include "StringParameterType.h"
#include "StringParameter.h"
#include "Utility.h"
#define base CTypeElement
using std::string;
CStringParameterType::CStringParameterType(const string& strName) : base(strName), _uiMaxLength(0)
{
}
// CElement
string CStringParameterType::getKind() const
{
return "StringParamet... |
<h5>Dificuldades 😢</h5>
<ul>
<li class="fragment">A sociabilização
<ul>
<li class="fragment">Trabalhar remotamente é legal...</li>
<li class="fragment">...mas sociabilizar também é, e além de tudo necessário</li>
<li class="fragment">
Falta do ambiente físico:
<ul>
<l... |
namespace v8 {
namespace internal {
namespace compiler {
// The abstract execution environment simulates the content of the interpreter
// register file. The environment performs SSA-renaming of all tracked nodes at
// split and merge points in the control flow.
class BytecodeGraphBuilder::Environment : public ZoneObj... |
@class CrTrackingArea;
@class HoverImageButton;
@class MouseDragController;
@class PanelWindowControllerCocoa;
// A class that works as a custom titlebar for Panels. It is placed on top of
// the regular Cocoa titlebar. We paint theme image on it, and it's
// the place for the close button, page favicon, title label a... |
package shike.app.presenter;
import android.app.Activity;
import android.content.Context;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
import shike.app.R;
import shike.app.model.service.VirtualTrackService;
import shike.app.model.session.track.VirtualTrack;
import shike.app.view.ho... |
<?xml version="1.0" encoding="UTF-8"?>
<archetype-descriptor
xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0 http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
name="minimal-bundle"
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/a... |
<?php
namespace App\Backend\Submodules\Qyweixin\Models\ReplyMsg;
class Type extends \App\Common\Models\Qyweixin\ReplyMsg\Type
{
use \App\Backend\Models\Base;
/**
* 获取所有列表
*
* @return array
*/
public function getAll()
{
$query = $this->getQuery();
$sort = array('_i... |
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("05... |
using System.IO;
using System.Reflection;
namespace Dserv.Server
{
class Resource
{
public Assembly Assembly { get; }
public string ResourceName { get; }
public string UrlPath { get; }
public Stream Stream => Assembly.GetManifestResourceStream(ResourceName);
pu... |
package com.intellij.openapi.fileChooser.impl;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.application.PathMacros;
import com.intellij.openapi.fileChooser.*;
import com.intellij.openapi.fileChooser.ex.FileChooserDialogImpl;
import com... |
package de.zh32.teleportsigns.server.status;
import lombok.Data;
import java.util.List;
/**
* @author zh32 <zh32 at zh32.de>
*/
@Data
public class StatusResponse17 implements StatusResponse {
private String description;
private Players players;
private Version version;
private String favicon;
private int tim... |
<?php
class Api
{
/**
* Auto routed method which maps to POST api/method/{param1}
*
* @param int $param1 map to url
* @param array $param2 map to request body
* @param string $param3 map to query string
*
* @return string
*/
public function post... |
using System;
using System.Xml.Serialization;
namespace HoloXPLOR.Data.DataForge
{
[XmlRoot(ElementName = "BTInput_ExactMove_Stance_Var")]
public partial class BTInput_ExactMove_Stance_Var : BTInput_ExactMove_Stance
{
[XmlAttribute(AttributeName = "variableName")]
public String VariableName... |
struct timespec
{
long int tv_sec;
long int tv_nsec;
};
struct itimerspec
{
struct timespec it_interval;
struct timespec it_value;
};
# 6 "fesd-none.c" 2
struct timespec base_var8;
struct itimerspec *base_var9;
#include "fesd-none.h"
struct gstruct_head_ordy_defn_var_base base_var1;
struct ... |
<?php
namespace app\models\forms;
use Yii;
use yii\base\Model;
/**
* LoginForm is the model behind the login form.
*/
class BehavioralSettingsForm extends Model {
public $behavorial_observation_time;
public $novel_object_observation_time;
public $xml_behavors;
public $alopecia_option_0;
public... |
namespace chromeos {
namespace system {
namespace {
void ErrorCallbackFunction(const std::string& error_name,
const std::string& error_message) {
LOG(ERROR) << "Shill Error: " << error_name << " : " << error_message;
}
} // namespace
class DeviceDisablingTest
: public OobeBaseTest,... |
using System;
using System.Collections.Generic;
using System.Collections.Concurrent;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading.Tasks;
using System.Threading;
using System.Diagnostics;
using Job = System.Collections.Generic.KeyValuePair<string, byte[]>;
//using JobResult = System.Tup... |
#include <dp/fx/inc/Snippet.h>
#include <sstream>
namespace dp
{
namespace fx
{
bool Snippet::addRequiredEnumSpec( const EnumSpecSharedPtr & enumSpec )
{
return( m_requiredEnumSpecs.insert( enumSpec ).second );
}
const std::set<EnumSpecSharedPtr> & Snippet::getRequiredEnumSpe... |
class ApplicationController < ActionController::Base
protect_from_forgery
layout "layouts/common/application"
end
|
package org.callimachusproject.engine;
import static org.callimachusproject.engine.helpers.SPARQLWriter.toSPARQL;
import static org.openrdf.query.QueryLanguage.SPARQL;
import java.io.IOException;
import java.io.StringWriter;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import jav... |
package com.amazonaws.services.simplesystemsmanagement.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
* <p>
* Describes the parameters for a document.
* </p>
*
* @see <a href="http://docs... |
<?php
/**
* content module configuration.
*
* @package sf_sandbox
* @subpackage content
* @author Your name here
* @version SVN: $Id: configuration.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class contentGeneratorConfiguration extends BaseContentGeneratorConfiguration
{
}
|
<?php
namespace EntityManager53e7ead24e9e4_546a8d27f194334ee012bfe64f629947b07e4919\__CG__\Doctrine\ORM;
/**
* CG library enhanced proxy class.
*
* This code was generated automatically by the CG library, manual changes to it
* will be lost upon next generation.
*/
class EntityManager extends \Doctrine\ORM\Entit... |
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("Ut... |
package org.araymond.joal.core.ttorrent.client.announcer.response;
import com.turn.ttorrent.common.protocol.TrackerMessage.AnnounceRequestMessage.RequestEvent;
import org.araymond.joal.core.torrent.torrent.MockedTorrent;
import org.araymond.joal.core.ttorrent.client.announcer.Announcer;
import org.araymond.joal.c... |
<dc:language>en-US</dc:language>
<dc:creator opf:file-as="Supreme Court of the United States" opf:role="aut">Supreme Court of the United States</dc:creator>
<dc:publisher>Supreme Court of the United States republished via Cornell Internet Law</dc:publisher>
<dc:rights>Creative Commons</dc:rights>
<dc:title>GLOBAL CROSS... |
<?xml version="1.0" encoding="utf-8"?>
<com.zhy.autolayout.AutoLinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<View
android:layout_width="match_parent"
a... |
layout: model
title: English pipeline_image_classifier_vit_dog_races ViTForImageClassification from roschmid
author: John Snow Labs
name: pipeline_image_classifier_vit_dog_races
date: 2022-10-12
tags: [vit, en, images, open_source, pipeline]
task: Image Classification
language: en
edition: Spark NLP 4.2.1
spark_version... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ThinkPHP 5.0 Guide</title>
<link href="libs/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link href="libs/dpatch/dist/css/general-cn.css" rel="stylesheet"/>
... |
#import "DVTViewController.h"
#import "NSTextViewDelegate-Protocol.h"
@class IDEQuickHelpController, NSTextField;
@interface IDEQuickHelpCompletionInfoViewController : DVTViewController <NSTextViewDelegate>
{
IDEQuickHelpController *_quickHelpController;
NSTextField *_textField;
struct CGSize _rendered... |
using UnityEngine;
using UnityEngine.Networking;
public class Asteroid : NetworkBehaviour
{
[SerializeField]
GameObject remainsPrefab;
GameObject asteroid;
SpriteRenderer sprite;
void Start()
{
sprite = GetComponent<SpriteRenderer>();
asteroid = this.gameObject;
if ... |
<?php
namespace EventStore;
use EventStore\Exception\InvalidWritableEventObjectException;
/**
* Class WritableEventCollection.
*/
final class WritableEventCollection implements WritableToStream
{
/**
* @var WritableEvent[]
*/
private $events = [];
/**
* @param array $events
*/
p... |
package org.apache.struts.webapp.tiles.test;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
i... |
<?php
/**
* Created by PhpStorm.
* User: jeen
* Date: 2017/10/19
* Time: 21:54
*/
namespace common\core;
use common\model\Module;
use yii\helpers\Json;
class ModuleManager extends PackageManager
{
public $paths = [
'@common/module'
];
public $namespace = 'common\\module\\';
public $i... |
namespace Visqol {
AMatrix<std::complex<double>> FastFourierTransform::Forward1d(
const std::unique_ptr<FftManager>& fft_manager,
const AMatrix<double>& in_matrix) {
// Populate the time channel.
auto input_itr = in_matrix.cbegin();
fft_manager->GetTimeChannel().Clear();
for (size_t i = 0; i < fft_mana... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Philipp. J. Sci. , C, Bot. 9(2): 164 (1914)
#### Original name
Didymella pandanicola Syd. & P. Syd., 1914
### Remarks
null |
<?php
namespace Doctrine\DBAL\Driver\API\SQLite;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\Deprecations\Deprecation;
use function array_merge;
use function strpos;
/**
* User-defined SQLite functions.
*
* @internal
*/
final class UserDefinedFunctions
... |
/*
* Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
* Use is subject to license terms.
*
* Copyright (c) 2011, 2015, Intel Corporation.
*/
/*
* This file is part of Lustre, http://www.lustre.org/
* Lustre is a trademark of Sun Microsystems, Inc.
*/
#define DEBUG_SUBSYSTEM S_CLASS
... |
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class ToolStripDockPanel
Inherits WeifenLuo.WinFormsUI.Docking.DockContent
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing ... |
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "XnServerSession.h"
#include "XnSensorClientServer.h"
#include <XnDDK/XnStreamDataInternal.h>
#include <XnMacros.h>
//--------------... |
<?php namespace October\Rain\Parse\Syntax;
use October\Rain\Parse\Bracket as TextParser;
/**
* Dynamic Syntax parser
*/
class Parser
{
const CHAR_OPEN = '{';
const CHAR_CLOSE = '}';
/**
* @var \October\Rain\Parse\Syntax\FieldParser Field parser instance.
*/
protected $fieldParser;
/*... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="cs">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed May 11 18:12:32 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>txml.xpath.model (T... |
.class final Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionExtra$1;
.super Ljava/lang/Object;
.source "SoundTrigger.java"
# interfaces
.implements Landroid/os/Parcelable$Creator;
# annotations
.annotation system Ldalvik/annotation/EnclosingClass;
value = Landroid/hardware/soundtrigger/SoundTrig... |
import requests
import json
import time
from collections import OrderedDict
from test_framework.test_framework import OpenBazaarTestFramework, TestFailure
class EscrowTimeoutRelease(OpenBazaarTestFramework):
def __init__(self):
super().__init__()
self.num_nodes = 3
def run_test(self):
... |