text stringlengths 3 1.05M |
|---|
#include "common.h"
#include "camera.h"
#include <QColor>
#include <QCoreApplication>
namespace {
QByteArray drawTextureVertexSrc =
"attribute highp vec4 vertexAttr;\n"
"attribute highp vec2 texCoordAttr;\n"
"varying highp vec2 texCoord;\n"
"void main(void)\n"
"{\n"
... |
package wang.conge.springbase.service;
import org.springframework.stereotype.Component;
import lombok.extern.slf4j.Slf4j;
import wang.conge.springbase.domain.TaskDO;
@Slf4j
@Component
public class TaskService {
public TaskDO createTask(String title,String content){
log.info("create task:" + title);
TaskDO ta... |
fetcher.scrappers.t4p_tv = function(genre, keywords, page, callback){
if(genre=='all')
genre = !1;
var url = 'http://time4popcorn.eu/shows?sort=seeds';
if (keywords) {
url += '&keywords=' + keywords;
}
if (genre) {
url += '&genre=' + genre;
}
... |
<p>Ajax content Test</p> |
package orc.lib.math
import orc.values.sites.{ FunctionalSite, IllegalArgumentInvoker, LocalSingletonSite, OverloadedDirectInvokerMethod1 }
object Abs extends OverloadedDirectInvokerMethod1[Number] with FunctionalSite with Serializable with LocalSingletonSite {
def getInvokerSpecialized(arg1: Number) = {
arg1 m... |
package com.android.shelter.helper;
import android.graphics.Bitmap;
import android.net.Uri;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
/**
* Model for proeprty image.
* Created by rishi on 5/6/16.
*/
public class PropertyImage {
private UUID mId;
private Bitmap mImageBitMap;... |
module DocusignTransactionRooms
class RoomApproval < BaseModel
attribute :comment
attribute :sendToLoneWolf
end
end
# {
# "comment": "string",
# "sendToLoneWolf": true
# }
|
<?php
namespace Oro\Bundle\ApiBundle\Processor\Subresource\Shared;
use Oro\Bundle\ApiBundle\Processor\FormContext;
use Oro\Bundle\ApiBundle\Processor\Shared\CollectFormErrors as BaseCollectFormErrors;
use Oro\Bundle\ApiBundle\Processor\Subresource\SubresourceContext;
use Oro\Bundle\ApiBundle\Util\ConfigUtil;
/**
* ... |
module CsvViewer.Core where
import Data.List
import Data.List.Split
import CsvViewer.Types
import System.Console.Terminal.Size
splitIntoRows :: String -> [Row]
splitIntoRows = map (splitOn ";") . lines
longest:: [[a]] -> Int
longest = (foldr (\item init -> max init $ length item) 0)
centerInRange :: ... |
object OOPSITest {
abstract class OOPS { // OOP Stupid
def test(x: BigInt) = x
def check: Unit = {
assert(test(3) == 3)
}
}
case class OOPSI() extends OOPS { // OOP Stupid Indeed
override def test(x: BigInt): BigInt = 0
}
def runme = OOPSI().check
}
|
package org.apache.flink.table.calcite
import org.apache.flink.table.api.TableConfig
class FlinkContextImpl(
tableConfig: TableConfig)
extends FlinkContext {
override def getTableConfig: TableConfig = tableConfig
}
|
/**
* @module ol/util
*/
/**
* @return {?} Any return.
*/
export function abstract() {
return /** @type {?} */ ((function () {
throw new Error('Unimplemented abstract method.');
})());
}
/**
* Counter for getUid.
* @type {number}
* @private
*/
var uidCounter_ = 0;
/**
* Gets a unique ID for an ... |
\Pyrus\ScriptFrontend\Commands::upgrade(), --force test, plugin
--FILE--
<?php
require __DIR__ . '/setup.php.inc';
$c = getTestConfig();
ob_start();
$cli = new \Pyrus\ScriptFrontend\Commands(true);
$cli->run($args = array (TESTDIR, 'install', '-p',
__DIR__.'/Pyrus_Developer/package.xml'));
$c... |
import * as AnalyticsQueryStore from 'lib/stores/AnalyticsQueryStore';
import * as SchemaStore from 'lib/stores/SchemaStore';
import Button from 'components/Button/Button.react';
import DashboardView from 'dashboard/DashboardView.react';
import DateRange from 'compon... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class Program
{
static void Main(string[] args)
{
var story = new InStory();
// Create a room
var room1 = story.Cell();
var room2 = story.Cell();
room2.shortDescription="anteroom";
// room2 ... |
import pygame
import zmq
import sys
import time
import datetime
import orwell.proxy_simulator.version1_pb2 as pb_messages
class BaseEventHandler(object):
"""
Base class which defines the default behaviour of the different
event handler.
"""
def handle_events(self, events):
"""
Disp... |
package macbury.forge.systems;
import com.badlogic.ashley.core.ComponentMapper;
import com.badlogic.ashley.core.Entity;
import com.badlogic.ashley.core.Family;
import com.badlogic.ashley.systems.IteratingSystem;
import com.badlogic.gdx.utils.Array;
import macbury.forge.components.PositionComponent;
import macbury.forg... |
import { expect } from '@integration/testing-tools';
import { FileSystemLocation, Path } from '@serenity-js/core/lib/io';
import { Category, Name, ScenarioDetails } from '@serenity-js/core/lib/model';
import { describe, it } from 'mocha';
import { MochaTestMapper } from '../../src/mappers';
import { exampleTest } from... |
//
// AppDelegate.m
// kxsmb project
// https://github.com/kolyvan/kxsmb/
//
// Created by Kolyvan on 27.03.13.
//
#import "AppDelegate.h"
#import "TreeViewController.h"
#import "SmbAuthViewController.h"
#import "KxSMBProvider.h"
@interface AppDelegate() <KxSMBProviderDelegate, SmbAuthViewControllerDelegate>
@... |
package org.bdgenomics.cannoli
import java.io.FileNotFoundException
import org.apache.spark.SparkContext
import org.bdgenomics.adam.ds.ADAMContext._
import org.bdgenomics.adam.ds.fragment.{ FragmentDataset, InterleavedFASTQInFormatter }
import org.bdgenomics.adam.ds.read.{ AlignmentDataset, AnySAMOutFormatter }
impor... |
// tslint:disable-next-line:no-namespace
declare namespace BalenaEventLog {
type IdentityProviderKeys = 'analyticsClient' | 'ga' | 'gs';
interface Context {
organizationId?: number;
memberId?: number;
teamId?: number;
applicationId?: number;
deviceId?: number;
deviceUuid?: string;
}
type TrackFunction... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html401/sgml/loosedtd.html">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Why are the text fields blank?</title>
<meta name="author" content="Wincent Colaiuta">
<meta name="author-email" cont... |
<!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_72) on Wed Nov 05 20:55:13 EST 2014 -->
<title>SessionCompleteEventCompositeData (apache-cassandra API)</title>
<meta name="date" conte... |
<legend>
Manutenção de Produtos - {ACAO}
<div class="pull-right">
<a href="{URLLISTAR}" title="Listar produtos" class="btn">Voltar</a>
</div>
</legend>
<form action="{ACAOFORM}" method="post" class="form-horizontal">
<div class="row-fluid">
<div class="span8">
<input type="hidden" name="codproduto" id="codpr... |
// RobotBuilder Version: 1.5
//
// This file was generated by RobotBuilder. It contains sections of
// code that are automatically generated and assigned by robotbuilder.
// These sections will be updated in the future when you export to
// Java from RobotBuilder. Do not put any code or make any change in
// the ... |
FactoryGirl.define do
factory :shipment_item, class: Comable::ShipmentItem do
stock
trait :with_shipment do
shpiment
end
end
end
|
package kbchat
import (
"bytes"
"encoding/json"
"fmt"
"strings"
"github.com/keybase/go-keybase-chat-bot/kbchat/types/stellar1"
)
type WalletOutput struct {
Result stellar1.PaymentCLILocal `json:"result"`
}
func (a *API) GetWalletTxDetails(txID string) (wOut WalletOutput, err error) {
a.Lock()
defer a.Unlock... |
require.config({
baseUrl: 'js',
paths: {
app: 'app',
merchant: 'merchant',
shop: 'shop',
jquery: 'libs/jquery/dist/jquery',
underscore: 'libs/underscore/underscore',
backbone: 'libs/backbone/backbone',
backboneLS: 'libs/Backbone.localStorage/backbone.loc... |
namespace sync_pb {
class BookmarkSpecifics;
class NigoriSpecifics;
class EntitySpecifics;
} // namespace sync_pb
namespace syncer {
class Cryptographer;
struct KeyParamsForTesting {
KeyDerivationParams derivation_params;
std::string password;
};
// Creates KeyParamsForTesting, where |derivation_params| is P... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `SIGPOLL` constant in crate `libc`.">
<meta name="keywords"... |
'use strict';
angular.module('publisherApp')
.factory('DateUtils', ['$filter', function ($filter) {
return {
convertDateTimeFromServer : function convertDateTimeFromServer(date) {
if (date) {
return new Date(date);
} else {
return null;
... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>buchberger: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.... |
package net.arccode.wechat.pay.api.common.util;
import net.arccode.wechat.pay.api.common.annotation.ApiListField;
import net.arccode.wechat.pay.api.common.constant.WXPayConstants;
import net.arccode.wechat.pay.api.common.exception.WXPayApiException;
import net.arccode.wechat.pay.api.protocol.base.WXPayResponse;
import... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Threading.Tasks;
using Spect.Net.SpectrumEmu.Abstraction.Configuration;
using Spect.Net.SpectrumEmu.Abstraction.Devices.Screen;
using Spect.Net.SpectrumEmu.Abstraction.Machine;
using Spect.Net.SpectrumEmu.Abstraction.Providers;
u... |
package com.framework.input;
import java.util.ArrayList;
import java.util.List;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
public class InputManager implements OnTouchListener {
private static final String TAG = "INPUTMANAGER";
pr... |
import React, { Component } from 'react';
import { Navigator } from 'react-native';
import Calendar from './Calendar';
import Profile from '../profile/Profile';
import Conversation from '../messages/Conversation';
import Event from '../groups/Event';
import { API, DEV } from '../../config';
import { extend } from 'und... |
// The MIT License(MIT)
//
// Copyright(c) 2015 Venugopalan Sreedharan
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"),
// to deal in the Software without restriction, including without limitation the rights to use, ... |
<?xml version="1.0"?>
<ruleset name="ForkCMS">
<description>The coding standard for Fork CMS</description>
<rule ref="PSR1"/>
<rule ref="PSR12"/>
<rule ref="Generic.Files.LineLength">
<exclude name="Generic.Files.LineLength"/>
</rule>
<!-- directories to check -->
<file>src</file>
<exclude-pattern... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `_SC_NPROCESSORS_ONLN` constant in crate `libc`.">
<meta na... |
package com.github.vooolll.config
import com.typesafe.config._
import com.typesafe.scalalogging.LazyLogging
import com.github.vooolll.domain._
import com.github.vooolll.domain.oauth.{FacebookAppSecret, FacebookClientId, FacebookRedirectUri}
import scala.util._
/**
* Helper object that loads configuration
* @thro... |
namespace Azure.ResourceManager.SqlVirtualMachine.Models
{
/// <summary> Set disk storage settings for SQL Server. </summary>
public partial class SqlStorageUpdateSettings
{
/// <summary> Initializes a new instance of SqlStorageUpdateSettings. </summary>
public SqlStorageUpdateSettings()
... |
package io.quarkus.it.spring.boot;
import io.quarkus.test.junit.QuarkusIntegrationTest;
@QuarkusIntegrationTest
class ClassPropertiesIT extends ClassPropertiesTest {
}
|
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Sp. pl. 1:521. 1753
#### Original name
null
### Remarks
null |
package prototype.pa55nyaps.core;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.List;
import java.util.Map;
import prototype.pa55nyaps.crypto.AESRandom;
import prototype.pa55ny... |
package org.opendatakit.briefcase.util;
interface ITransferToDestAction {
/**
*
* @return true if successful, false if there were one or more problems
*/
boolean doAction();
} |
package demoapp.dom.types.javaawt.images.jdo;
import java.awt.image.BufferedImage;
import javax.inject.Named;
import javax.jdo.annotations.Column;
import javax.jdo.annotations.DatastoreIdentity;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
import javax.jdo.annotations.... |
<!DOCTYPE html>
<html>
<head>
<title>Jana - Header 7</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="assets/style/style.css" />
</head>
<body data-spy="scroll" data-target="#scrollSpyMenu">
<!--========== START COMPONENT BO... |
package me.nithanim.gw2api.v2.api.traits.facttypes;
import me.nithanim.gw2api.v2.api.traits.FactBase;
@lombok.NoArgsConstructor
@lombok.Getter
@lombok.EqualsAndHashCode(callSuper = true)
@lombok.ToString
public class NumberFact extends FactBase {
private int value = -1;
}
|
package ru.job4j.servlets;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
/**
* //TODO add comments.
*
* @author Petr Arsentev (parsent... |
uint64_t Time::frequency = 0;
Time::Time()
{
if (frequency == 0)
frequency = SDL_GetPerformanceFrequency();
started_at = SDL_GetPerformanceCounter();
frame_started_at = started_at;
SetMaxFPS(max_fps);
}
Time::~Time()
{}
void Time::UpdateFrame()
{
real_delta_time = (float)((double(SDL_GetPerformanceCounter() -... |
from pipetree.stage import LocalFilePipelineStage,\
LocalDirectoryPipelineStage, ExecutorPipelineStage,\
ParameterPipelineStage, IdentityPipelineStage
__version__ = '0.1.0'
STAGES = {
"LocalDirectoryPipelineStage": LocalDirectoryPipelineStage,
"LocalFilePipelineStage": LocalFilePipelineStage,
"Exe... |
using System;
using NakedFramework.Architecture.Adapter;
using NakedFramework.Architecture.Facet;
using NakedFramework.Architecture.Interactions;
using NakedFramework.Core.Error;
namespace NakedFramework.Metamodel.Facet;
[Serializable]
public abstract class DisabledFacetAbstract : SingleWhenValueFacetAbstract, IDisab... |
//
// NBPopMenu.h
// weibo
//
// Created by yoga on 15/8/26.
// Copyright (c) 2015年 ioslearning. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef enum {
NBPopMenuArrowPositionCenter = 0,
NBPopMenuArrowPositionLeft = 1,
NBPopMenuArrowPositionRight = 2
} NBPopMenuArrowPosition;
@class NBPopMenu;... |
> Various utilities aimed at making common day-to-day operations in PHP easier.
<img align="right" src="https://s29.postimg.org/wg17yp5lj/rsz_logo_l_300.png" alt="Nyx's logo" />
[](https://packagist.org/packages/nyx/utils)
[ => Promise<ExecResult>,
execSy... |
import React, { Component } from 'react';
class FileUpload extends Component {
constructor() {
super();
this.state = {
};
}
componentDidMount() {
const Dropzone = window.Dropzone;
const dropzone = new Dropzone('#dropzone', { url: 'http://localhost:3003/api/media' });
dropzone.on('succes... |
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Elements Framework</title>
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon... |
import os
import sys
import re
import logging
import MySQLdb
class MySqlConfig:
def __init__(self, host = 'localhost', port=3306, user='root', password = '', dbname = 'mysql', mysql_sock = '', defaults_file = '', tags = None, options={}):
self.host = host
self.port = port
self.user = user
self.password = pas... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
const LOVEBIRDS_STORE_VERSION = '0.99.0'; // lovebird.pacificio.com
const CODEIGNITER_SYSTEM_VERSION = '3.1.6'; // codeigniter.com
/*
------------------
*/
if ((PHP_OS !== "Darwin") && (PHP_OS !== "Windows") && (PHP_OS !== "WIN32") && (PHP_OS ... |
/**
*/
package CIM.IEC61970.OperationalLimits;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Active Power Limit</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link CIM.IEC61970.OperationalLimits.ActivePowerLimit#getVa... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Voy. Barbarie 2:241. 1789
#### Original name
null
### Remarks
null |
ln -s $HOME/dotfiles/bash/.aliases $HOME/.aliases
ln -s $HOME/dotfiles/colors/.Xresources $HOME/.Xresources
ln -s $HOME/dotfiles/colors/.dircolors $HOME/.dircolors
ln -s $HOME/dotfiles/tmux/.tmux.conf $HOME/.tmux.conf
ln -s $HOME/dotfiles/vim/.vimrc $HOME/.vimrc
ln -s $HOME/dotfiles/xmodmap/.Xmodmap ... |
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE EmptyDataDecls #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE TypeSynonymInstances #-}
{-# LANGUAGE Undecida... |
<?php namespace Ammonkc\Basket;
use Illuminate\Support\ServiceProvider;
class BasketServiceProvider extends ServiceProvider {
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* Bootstrap the application services.
*
... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile Docs - Responsive Layout Helpers</title>
<link rel="stylesheet" href="../../css/themes/default/jquery.mobile.css" />
<link rel="stylesheet" href="../_assets/css/jqm-d... |
using Cnblogs.Droid.Model;
namespace Cnblogs.Droid.UI.Views
{
public interface ILoginView
{
void LoginFail(string msg);
void LoginSuccess(AccessToken token, UserModel user);
}
} |
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this data, including any software or models in source or binary
// form, as well as any drawings, specifications, and documentation
// (collectively "the Data"), to deal in the Data without restriction,
// including without limi... |
from __future__ import print_function
from distutils.core import setup
from distutils.extension import Extension
# Complain on 32-bit systems. See README for more details
import struct
if struct.calcsize("P") < 8:
raise RuntimeError("Simhash-py does not work on 32-bit systems. See README.md")
ext_files = ["simh... |
layout: slides
title: "On representing time and change"
category: hidden
type: course
semester: Fall 2018
college: Wellesley College
permalink: /cognition/time/
---
# On representing time and change.
<img src="https://images.unsplash.com/photo-1499377193864-82682aefed04" width="55%" />
???
---
class: center, middle... |
Generic Backend API
=================
This will be a project that intends to work like a personal Firebase.
A Generic Firebase backgorund to avoid paying for projects that do not have
budget, of course the effort is translated to another point: the administration of the server and this system.
Phoenix is the perfec... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- IE Specific to remove tap highlight -->
<meta name="msapplication-tap-highlight" content="no"/>
<title>Web Essential: States Example</title>
<link href='http://... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace PhimHang
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API configuration and services
// Web API routes
... |
<!DOCTYPE html>
<html lang="en" class="">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Material Design Bootstrap Templat... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>error-handlers: 18 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" r... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
package search
import (
"time"
"github.com/blevesearch/bleve/index"
"golang.org/x/net/context"
)
type Collector interface {
Collect(ctx context.Context, searcher Searcher, reader index.IndexReader) error
Results() DocumentMatchCollection
Total() uint64
MaxScore() float64
Took() time.Duration
SetFacetsBuild... |
"""
Background worker for latex
"""
import subprocess
import os, sys
import shutil
import signal
import sqlite3
import time
import syslog
import multiprocessing
from flasktex.config import ft_getconfig
# CONFIG
DEFAULT_RENDERER = ft_getconfig("DEFAULTRENDERER")
DEFAULT_TIMEOUT = ft_getconfig("WORKERTIMEOUT")
DATABASE_... |
@Echo off
Title %CD% - Compile Clangbuilder UI
PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -File "%~dp0launcher_test.ps1" %* |
@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... |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { Comp2922Component } from './comp-2922.component';
describe('Comp2922Component', () => {
let component: Comp2922Component;
let fixture: ComponentFixture<Comp2922Component>;
beforeEach(async(() => {
TestBed.configureTestingM... |
<!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... |
import React from 'react';
import { Route, IndexRoute } from 'react-router';
import { load as loadUser } from './modules/user';
import Layout from './containers/Layout';
import Home from './containers/Home';
import Counter from './containers/Counter';
import Login from './containers/Login';
import Signup from './cont... |
package com.infospace.sdk.cards.matchers;
import com.infospace.sdk.models.ResultNode;
public class CatchAllResultMatcher implements ResultMatcher {
@Override
public boolean matches(ResultNode result) {
return true;
}
}
|
@interface Xcode3LocalizationIssueNavigableItem : IDEKeyDrivenNavigableItem
{
}
- (id)subtitle;
@end
|
// .NAME vtkImplicitWindowFunction - implicit function maps another implicit function to lie within a specified range
// .SECTION Description
// vtkImplicitWindowFunction is used to modify the output of another
// implicit function to lie within a specified "window", or function
// range. This can be used to add "thic... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
default['php']['directives']['post_max_size'] = '16M'
default['php']['directives']['max_execution_time'] = '300'
default['php']['directives']['max_input_time'] = '300'
default['php']['directives']['date.timezone'] = 'Europe/Rome'
|
Public Class PLCDataConversion
'****************************************************************
'* Convert an array of words into a string as AB PLC's represent
'* Can be used when reading a string from an Integer file
'****************************************************************
''' <summary>... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ptsf: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" r... |
<style shim-shadowdom="">
.topbar-theme {
display: flex;
flex-direction: column;
height: 100%;
}
.topbar-theme__top {
display: flex;
align-items: center;
flex: 0 0 auto;
justify-content: space-between;
z-index: 100;
font-size: 28px;
... |
#include "murmur_pch.h"
#include "Meta.h"
#include "Connection.h"
#include "Net.h"
#include "ServerDB.h"
#include "Server.h"
#include "OSInfo.h"
#include "Version.h"
MetaParams Meta::mp;
#ifdef Q_OS_WIN
HANDLE Meta::hQoS = NULL;
#endif
MetaParams::MetaParams() {
qsPassword = QString();
usPort = DEFAULT_MUMBLE_... |
<?php
class C_siswa extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->model('model_user');
}
public function index() {
$this->load->view('siswa/index');
}
public function logout() {
$this->session->unset_userdata('username');
session_destroy();
$this->load->view... |
package org.elasticsearch.upgrades;
import org.elasticsearch.Version;
import org.elasticsearch.common.Booleans;
import org.elasticsearch.test.rest.ESRestTestCase;
public abstract class AbstractFullClusterRestartTestCase extends ESRestTestCase {
private final boolean runningAgainstOldCluster = Booleans.parseBoo... |
typedef std::vector<unsigned char> valtype;
bool fAcceptDatacarrier = DEFAULT_ACCEPT_DATACARRIER;
unsigned nMaxDatacarrierBytes = MAX_OP_RETURN_RELAY;
CScriptID::CScriptID(const CScript& in) : uint160(Hash160(in.begin(), in.end())) {}
const char* GetTxnOutputType(txnouttype t)
{
switch (t)
{
case TX_NONS... |
import React from 'react';
import { Link } from 'react-router';
import Navbar from '../../src/Navbar';
import NavBrand from '../../src/NavBrand';
import Nav from '../../src/Nav';
import Affix from '../../src/Affix';
const NAV_LINKS = {
'introduction': {
link: '/introduction.html',
title: 'Lojas'
},
'comp... |
package org.joinfaces.autoconfigure.scopemapping;
import org.joinfaces.autoconfigure.viewscope.ViewScope;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.AnnotatedGenericBeanDefinition;
import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframe... |
class UsersController < ApplicationController
before_action :authenticate_user!, only:[:index]
before_action :get_counts, only:[:index]
before_action :set_user, only: [:show]
def show
@posts = @user.posts.order(created_at: :desc)
@activities = PublicActivity::Activity.where(owner: @user).order(created_at:... |
package acceptance;
import java.nio.file.Files;
import java.nio.file.Path;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import static java.nio.charset.StandardCharsets.UTF_8;
import static org.hamcrest.Matchers.is;
import static... |
Mamba is a simple dynamic typed, programming language
### Installation requirements ###
* Python3
* ply
* py2exe
### Features ###
* Variables (duh)
* Functions
* Flow control statements
* Loops (for in, for, inf loop, while)
* Loop exit statement
* Compound operators
* Pythonic sequence (array, string) slicing
##... |
package contexts
func init() {
resourceContextMap["bigqueryjob"] = ResourceContext{
ResourceKind: "BigQueryJob",
SkipUpdate: true,
}
}
|