text stringlengths 3 1.05M |
|---|
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Drawing;
using System.Windows.Forms;
namespace BePoE.Utils
{
internal static class Text
{
private static string[] _numberToName_ones = new string[] { "", "one", "two", "three", "fo... |
package com.neoranga55.cleanguitestarchitecture.cucumber.runner;
import android.os.Bundle;
import com.neoranga55.cleanguitestarchitecture.BuildConfig;
import cucumber.api.android.CucumberInstrumentationCore;
/**
* Used in build.gradle/testInstrumentationRunner to run Cucumber tests
*/
public class CucumberTestRun... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package SpaceGame.Objects;
import Physics2D.Vector2;
import SpaceGame.SolarSystem;
/**
*
* @author bowen
*/
public class SpaceArt... |
FROM awesto/fedora-uwsgi-python:5
LABEL Description="Run django-angular demo" Maintainer="Jacob Rief <jacob.rief@gmail.com>"
# install and configure Redis
RUN dnf install -y redis
RUN mkdir -p /web/redis
COPY docker-files/redis.ini /etc/uwsgi.d/redis.ini
COPY docker-files/redis.conf /etc/redis.conf
RUN chown redis.re... |
/*jshint node:true */
/*global describe:false, it:false */
"use strict";
var Orchestrator = require('../');
var should = require('chai').should();
describe('orchestrator', function () {
describe('_resetSpecificTasks()', function () {
it('should set done = false on specified done tasks', function (done) {
... |
require 'gulp/pipeline/rails/assets'
module Gulp
module Pipeline
module Rails
module Patches
module MetaRequestMiddlewaresHeaders
def asset?(path)
@app_config.respond_to?(:assets) && Assets.path_starts_with?(path)
end
end
end
end
end
end
|
\begin{tikzpicture}
\begin{loglogaxis}[
xlabel = {runtime},
ylabel = {distance to optimum/best},
xlabel style={name=xlabel},
mark size=1pt,
every axis/.append style={font=\tiny},
width = 0.95\columnwidth,
height= 0.95\columnwidth,
legend style = { at={(xlabel.south)}, yshift=-1ex, a... |
package com.openshift.jenkins.plugins.pipeline;
import com.openshift.jenkins.plugins.util.ClientCommandBuilder;
import com.openshift.jenkins.plugins.util.ClientCommandRunner;
import hudson.*;
import hudson.model.TaskListener;
import hudson.util.QuotedStringTokenizer;
import org.jenkinsci.plugins.workflow.steps.Abstrac... |
<button class="btn btn-primary {css_extras}" type="submit" title="{title}">{label}</button>
|
<!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_40) on Wed Apr 13 18:09:39 UTC 2016 -->
<title>org.apache.cassandra.io.sstable.format.big (apache-cassandra API)</title>
<meta name="date" cont... |
package com.redhat.ceylon.ide.web;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import net.minidev.json.JSONObject;
import net.minidev.json.JSONValue;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Par... |
GAE-tweet-hook
==============
Web service for tweeting my blog posts
|
/** @jsx h */
import h from '../../helpers/h'
export default function(value) {
return value
.change()
.insertText('t')
.value.change()
.insertText('w')
.value.change()
.insertText('o')
.value.change()
.undo().value
}
export const input = (
<value>
<document>
<paragraph>
... |
using UnityEngine;
using System;
using LuaInterface;
using SLua;
using System.Collections.Generic;
public class Lua_UnityEngine_NavMeshHit : LuaObject {
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static public int constructor(IntPtr l) {
try {
UnityEngine.NavMeshHit o;
o=new UnityEngine.NavMeshHit... |
Match a string against a list of patterns.
[](http://travis-ci.org/watson/patterns)
[](https://github.com/feross/standard)
*The name of this module was pr... |
package org.sirix.access.trx.node.json.objectvalue;
import org.sirix.node.NodeKind;
import static com.google.common.base.Preconditions.checkNotNull;
public final class StringValue implements ObjectRecordValue<String> {
private final String value;
public StringValue(final String value) {
this.value = check... |
from sqlalchemy import Column, Integer, MetaData, Table
def upgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
quotas = Table('quotas', meta, autoload=True)
# Add a new column allocated to save allocated quota
allocated = Column('allocated', Integer, default=0)
quotas.creat... |
<?php
namespace AppBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Class MinMaxValidator
*
* @category SymfonyBundle
* @package AppBundle\Validator\Constraints
* @author Jesús Flores <jesusfloressanjose@gmail.com>
* @licen... |
<?xml version="1.0"?>
<!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd">
<tsung loglevel="notice" version="1.0">
<!-- Client side setup -->
<clients>
<client host="localhost" use_controller_vm="true"/>
</clients>
<!-- Server side setup -->
<servers>
<server host="localhost"... |
import { GET_COMMENTS, ADD_COMMENTS, DELETE_COMMENT, EDIT_COMMENT, GET_MORE_COMMENTS } from '../actions/globalActions';
function commentsReducer(state=[], action) {
switch (action.type) {
case GET_COMMENTS: {
return [action.comments];
}
case ADD_COMMENTS: {
return state.concat(action.comment);
}
case D... |
package me.geniusburger.turntracker.nfc;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.nfc.FormatException;
import android.nfc.NdefMessage;
import android.nfc.NdefRecord;
import android.nfc.NfcAdapter;
import android.nfc.... |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" native2AsciiForPropertiesFiles="true" defaultCharsetForPropertiesFiles="UTF-8">
<file url="file://$PROJECT_DIR$/latte-annotations/src/main/java/com/compiler/annotations/AppRegisterGenerator.java" charset="UTF-8" />
<file u... |
package org.docksidestage.postgresql.dbflute.exbhv.pmbean;
import org.docksidestage.postgresql.dbflute.bsbhv.pmbean.BsSpTransactionInheritPmb;
/**
* <!-- df:beginClassDescription -->
* The typed parameter-bean of SpTransactionInherit. <br>
* This is related to "<span style="color: #AD4747">sp_transaction_inherit</... |
Rails.application.config.session_store :cookie_store, key: '_vinetage_session'
|
namespace fpgui { namespace ui {
App_Settings_Advanced::App_Settings_Advanced(fpgui::settings::App_Configuration &app_config, QWidget *parent):
QDialog(parent),
ui(new Ui::App_Settings_Advanced),
app_config_(app_config)
{
ui->setupUi(this);
ui->edit_batch_size->setValidator(new QIntValidator(1, 10000, this));
... |
<html>
<head>
<title>User agent detail - Mozilla/5.0 (Linux; Android 4.1.2; SO-03E Build/10.1.E.0.305) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 YaBrowser/15.2.2214.3581.01 Safari/537.36</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css... |
import pymp4parse
import widevine_pssh_pb2
class WvPsshExtractor(object):
@classmethod
def extract(cls, mp4_file):
"""
Parameters
----------
mp4_file : str
MP4 file with a PSSH header
Returns
-------
WidevinePsshData
"""
... |
package com.creatubbles.api.service;
/**
* @author Pawel Szymanski
*/
public enum UserSortMode {
DISPLAY_NAME_ASC("display_name"),
DISPLAY_NAME_DESC("-display_name"),
AGE_ASC("age"),
AGE_DESC("-age"),
CREATION_DATE_ASC("created_at"),
CREATION_DATE_DESC("-created_at");
private String para... |
// Copyright 2022 Google LLC. All Rights Reserved.
//
// 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 applica... |
<header class="banner" role="banner">
<div class="container">
<div class="brand-header">
<div class="logo">
<a href="<?php echo esc_url(home_url('/')); ?>" title="<?php bloginfo('name'); ?>">
<?php
if (function_exists('theme_logo')){
theme_logo();
... |
<!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_151) on Thu Dec 05 05:02:06 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.config.ej... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
//
// file : raw_data.hpp
// in : file:///home/tim/projects/persistence/persistence/raw_data.hpp
//
// created by : Timothée Feuillet on linux.site
// date: 22/09/2014 09:13:10
//
//
// Copyright (c) 2014-2016 Timothée Feuillet
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of thi... |
package main
import "github.com/ederavilaprado/kubetools/cmd"
func main() {
cmd.Execute()
}
|
SRC_DIR=.
MAIN_DIR=../..
COMPONENT_DIR="."
OBJ_DIR=obj
BIN_DIR=bin
SRC=$(SRC_DIR)/*.cpp
COMPONENTS=lexer
CPP=g++
CPPFLAGS="-g"
TARGET=asm
all:
$(foreach COMPONENT, $(COMPONENTS), (cd $(COMPONENT); make))
.PHONY: test
test:
$(foreach COMPONENT, $(COMPONENTS), (cd $(COMPONENT); make test))
|
using System;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin.Security;
using BlogIT.Web.Models;
namespace BlogIT.Web.Controllers
{
[Authorize]
public class ManageController : C... |
package com.uesocc.sicmec.model.repository;
import java.util.Date;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
import com.uesocc.s... |
// Copyright (c) to owners found in https://github.com/AArnott/pinvoke/blob/master/COPYRIGHT.md. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
namespace PInvoke
{
using System.Collections.Generic;
using System.Runtime.InteropServ... |
'use strict';
exports.description = 'Basic templates & structure for WordPress sites';
exports.notes = '';
exports.after = "Don't forget to run `npm update --save-dev` & `npm install`!";
exports.warnOn = '*';
exports.template = function(grunt, init, done) {
init.process({type: 'ntz-wp'}, [
init.prompt('name')... |
package edu.searchahouse.leadrouter.endpoints;
import java.net.URI;
import java.net.URISyntaxException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springf... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
Cistus longifolius Hort. ex Steud.
### Remarks
null |
extern "C" {
// Temporarily disable possible loss of data warning.
// TODO(scherkus): fix and upstream the compiler warnings.
MSVC_PUSH_DISABLE_WARNING(4244);
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavformat/avio.h>
#include <libavutil/audioconvert.h>
#include <libavutil/avutil.h>... |
export declare class BaseInt64 {
protected buffer: Uint32Array;
constructor(buffer: Uint32Array);
high(): number;
low(): number;
protected _times(other: BaseInt64): this;
protected _plus(other: BaseInt64): void;
lessThan(other: BaseInt64): boolean;
equals(other: BaseInt64): boolean;
... |
id: 5900f3a51000cf542c50feb8
title: 'Problema 57: Convergentes da raiz quadrada'
challengeType: 5
forumTopicId: 302168
dashedName: problem-57-square-root-convergents
---
# --description--
É possível mostrar que a raiz quadrada de dois pode ser expressa como uma fração que se repete infinitamente.
<div style='text-al... |
using System;
using System.Reflection;
namespace VulkanCore.Samples.ClearScreen
{
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
public static void Main()
{
using (var window = new ... |
void
test01()
{
bool test __attribute__((unused)) = true;
std::regex_iterator<char*> it;
std::cregex_iterator cit;
std::sregex_iterator sit;
}
|
"""
SoftLayer.object_storage
~~~~~~~~~~~~~~~~~~~~~~~~
Object Storage Manager/helpers
:license: MIT, see LICENSE for more details.
"""
LIST_ACCOUNTS_MASK = '''mask(SoftLayer_Network_Storage_Hub_Swift)[
id,username,notes
]'''
ENDPOINT_MASK = '''mask(SoftLayer_Network_Storage_Hub_Swift)[
id,stor... |
"""Tests for the Open-Meteo config flow."""
from unittest.mock import MagicMock
from homeassistant.components.open_meteo.const import DOMAIN
from homeassistant.components.zone import ENTITY_ID_HOME
from homeassistant.config_entries import SOURCE_USER
from homeassistant.const import CONF_ZONE
from homeassistant.core i... |
describe ResultPolicy do
let(:context) { { user: user } }
describe_rule :view? do
succeed 'user is an admin' do
let(:user) { create(:admin) }
end
succeed 'user is a ta' do
let(:user) { create(:ta) }
end
succeed 'user is a student' do
let(:user) { create(:student) }
end
e... |
/**
* @author mrdoob / http://mrdoob.com/
*/
THREE.PointerLockControls = function ( camera ) {
var scope = this;
this.enabled = false;
//reset camera
camera.rotation.set( 0, 0, 0 );
//From negative to positive
//x-axis is left to right, y axis is bottom to top, z axis is back to front
// pitch is rotations... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
"""generalnyOgarniacz URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.9/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home'... |
Kyle
====
Kyle, the Python module.
Install
~~~~~~~
.. code-block:: bash
pip install kyle
Use
~~~
.. code-block:: python
import kyle
|
#ifndef PerformanceResourceTiming_h
#define PerformanceResourceTiming_h
#if ENABLE(WEB_TIMING)
#include "PerformanceEntry.h"
#include "ResourceLoadTiming.h"
#include <wtf/PassRefPtr.h>
#include <wtf/RefPtr.h>
#include <wtf/text/WTFString.h>
namespace WebCore {
class Document;
class URL;
class ResourceLoadTiming;
... |
layout: default
title: Customize and download
slug: customize
lead: Customize Bootstrap's components, Less variables, and jQuery plugins to get your very own version.
---
<!-- less.js isn't IE8-compatible and throws an exception during initialization, so our Blob compatibility check and error messaging code never get... |
import React from 'react';
import { Direction } from 'matrix-js-sdk/src/models/event-timeline';
import { logger } from "matrix-js-sdk/src/logger";
import { _t } from '../../../languageHandler';
import { formatFullDateNoTime } from '../../../DateUtils';
import { MatrixClientPeg } from '../../../MatrixClientPeg';
impo... |
Python 2 high / low score table support library.
|
package com.cit.eugene.service.dao;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.contex... |
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on answer1991</title>
<link>https://answer1991.github.io/categories/</link>
<description>Recent content in Categories on answer1991</description>
<generator... |
<!DOCTYPE html>
<html>
<head>
<title>525</title>
<meta charset="utf-8">
<link href="styles/styles.css" media="screen" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id= "canvas">
<div id= "twothirdsrow">
<div id= "onethirdbytwothirdsbox" class= "red right"></div>
<div id= "vertlinetwothirdsthick" cl... |
NCM\::Component\::openstack - messaging
#######################################
Types
-----
- **/software/components/openstack/openstack_messaging_config**
- Description: Type to define OpenStack messaging services
- */software/components/openstack/openstack_messaging_config/rabbitmq*
- Optional
... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="https://fonts.googleapis.com/css?family=Lato%3A400%2C300%2C100%2C700" rel="stylesheet" type="text/css">
<link hr... |
<div id='SR6WE'>
<input class="sheet_type" name="attr_sheet_type" type="hidden" value="pc"/>
<input class="character-type" name="attr_flag_special" type="hidden" value="mundane"/>
<div class="pc">
<img class="shadowrun-logo" alt="Shadowrun sixth edition logo" src="https://s3.amazonaws.com/files.d20.io/images/20480253... |
using Core.Tracing;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Core.WebApi.Tracing;
// Inspired by great Steve Gordon's work: https://github.com/stevejgordon/CorrelationId
public class TracingMidd... |
% ------------ LOAD CONFIG AND SET UP ENVIRONMENT ----------------------
%Andrew is here
clear; close all;
workingDir = pwd;
% Connect to folders that contain scripts I need
path(path, fullfile(workingDir, 'functions'));
% Add Freesurfer files to path
path(path, '/Applications/freesurfer')
path(path, '/Applications... |
/*
* 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
* distribut... |
using System;
namespace Tweek.Publishing.Service.Validation
{
public class PolicyValidationException : Exception
{
public PolicyValidationException(Exception originalException) : base("policy is invalid")
{
this.Data["Original Exception"] = originalException;
}
}
} |
<?php namespace Fisharebest\Localization\Locale;
use Fisharebest\Localization\Language\LanguageNqo;
class LocaleNqo extends AbstractLocale implements LocaleInterface {
public function endonym() {
return 'ߒߞߏ';
}
public function language() {
return new LanguageNqo;
}
}
|
package Calculatrice;
/**
* Calculatrice/ServeurCalculatriceOperations.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from Calculatrice.idl
* vendredi 28 mars 2014 16 h 47 CET
*/
public interface ServeurCalculatriceOperations
{
double add (double a, double b);
double sub (double a, d... |
#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
#include <opencv2/opencv.hpp>
#include "../src/algorithms/algorithms.h"
#if CV_MAJOR_VERSION >= 4
#define CV_CAP_PROP_POS_FRAMES cv::CAP_PROP_POS_FRAMES
#define CV_CAP_PROP_FRAME_COUNT cv::CAP_PROP_FRAME_COUNT
#endif
int main(int argc, ch... |
package org.projectfloodlight.openflow.protocol.ver13;
import org.projectfloodlight.openflow.protocol.*;
import org.projectfloodlight.openflow.protocol.action.*;
import org.projectfloodlight.openflow.protocol.actionid.*;
import org.projectfloodlight.openflow.protocol.bsntlv.*;
import org.projectfloodlight.openflow.pro... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_07) on Tue Sep 01 20:57:02 UTC 2009 -->
<TITLE>
Uses of Class org.apache.hadoop.util.ToolRunner (Hadoop 0.20.1 API)
</TITLE>
<META NAME="date" CONTE... |
<div id="user-{{user.id}}" class="col-xs-12 col-sm-6 col-md-4">
<h3>{{ user.username }}</h3>
<user-profile-pic user="user"></user-profile-pic>
<p>
<span ng-if="isAdmin">
<span class="label label-primary"><i class="fa fa-user fa-fw"></i> Admin</span>
</span>
</p>
<form id="user-edit-form" ... |
package com.eddiesheffield.restlet.server.data;
public class User {
private String name;
private int age;
private String favoriteFood;
private int id;
public User(int id, String name, int age, String favoriteFood) {
this.id = id;
this.name = name;
this.age = age;
this.favoriteFood = favoriteFood;
}
pu... |
using Telerik.Data.Core;
namespace Telerik.Data.Core
{
/// <summary>
/// Represents an <see cref="AggregateDescriptorBase"/> that is associated with a particular property in the underlying ViewModel.
/// </summary>
public class PropertyAggregateDescriptor : AggregateDescriptorBase, IPropertyDescriptor... |
import { MongoObservable } from 'meteor-rxjs';
import { Meteor } from 'meteor/meteor';
import { UploadFS } from 'meteor/jalik:ufs';
import { Thumb, Image } from "../models/image.model";
export const Images = new MongoObservable.Collection<Image>('images');
export const Thumbs = new MongoObservable.Collection<Thumb>('t... |
/*
* Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a>
*/
#include "conf_usb.h"
#include "udd.h"
#include "udc_desc.h"
#include "udi_hid.h"
#include "udi_hid_generic.h"
/**
* \ingroup udi_hid_generic_group
* \defgroup udi_hid_generic_group_single_desc USB device descriptors ... |
from users.models import *
from datetime import datetime, timedelta
import os
from HexOmega.settings import BASE_DIR
def setup():
# Create role. - abhi
r = Role()
r.title = 'Security Coordinator'
r.save()
# Create admin - abhi
adm = AdminUser(username='admin_man', first_name='admin', last_na... |
package android.net.http;
@com.francetelecom.rd.stubs.annotation.ClassDone(0)
public class HttpAuthHeader
{
// Fields
public static final java.lang.String BASIC_TOKEN = "Basic";
public static final java.lang.String DIGEST_TOKEN = "Digest";
public static final int UNKNOWN = 0;
public static final int B... |
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.flightcapture"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="16" />
<uses-permiss... |
Hello World intro to GitHub project.
Hi, I'm adding changes to this file!
|
var id = "c8";
var reason = document.getElementById("reason");
var body = document.body;
var verdict = document.getElementById("verdict");
function hook(id, result, message){};
function pass(message)
{
hook(id, "pass", reason);
document.title = "PASS";
body.style.background = "green";
verdict... |
class ABISysV_x86_64 : public lldb_private::ABI {
public:
~ABISysV_x86_64() override = default;
size_t GetRedZoneSize() const override;
bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddr... |
ACCEPTED
#### According to
IRMNG Homonym List
#### Published in
null
#### Original name
null
### Remarks
null |
//
// The contents of this file are subject to the Mozilla Public
// License Version 1.1 (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.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an
// "AS I... |
package uk.gov.hmrc.ct.ct600a.v2
import uk.gov.hmrc.ct.box.{CtBoxIdentifier, CtOptionalBoolean, Input}
case class LPQ08(value: Option[Boolean]) extends CtBoxIdentifier(name = "Were any loans written off or released after the end of this period?") with CtOptionalBoolean with Input
|
/*
* ompt-internal.h - header of OMPT internal data structures
*/
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifie... |
module MiqDevUtil
VERSION = '1.0.0'.freeze
end
|
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
var js_cols = process.env.JS_COLS_COVERAGE ? require("../dist-cov/js_cols") : require("../dist/js_cols");
var assert = require('assert');
var arrayRemove = function(arr, obj) {
var i = arr.indexOf(obj);
var rv;
if ((rv = i >= 0)) {
arr.splice(i, 1)
}
return rv;
};
function stringifyQueue(q) {
var values = q... |
using UnityEngine;
namespace HoloToolkit.Sharing.Utilities
{
/// <summary>
/// Utility class for automatically joining shared sessions without needing to go through a lobby.
/// </summary>
public class AutoJoinSession : MonoBehaviour
{
/// <summary>
/// Name of the session to join.... |
//-----------------------------------------------
//
// This file is part of the Siv3D Engine.
//
// Copyright (c) 2008-2019 Ryo Suzuki
// Copyright (c) 2016-2019 OpenSiv3D Project
//
// Licensed under the MIT License.
//
//-----------------------------------------------
# include <Siv3D/Script.hpp>
# include <Siv3D/... |
//
// LDTPuckControl.h
// Puckster
//
// Created by Shane Zatezalo on 4/19/15.
// Copyright (c) 2015-2018 Lottadot LLC. All rights reserved.
//
@import Foundation;
@import UIKit;
@class LDTPuckView;
typedef enum : NSUInteger {
LDTPuckViewLocationTopLeft,
LDTPuckViewLocationTopRight,
LDTPuckViewLocati... |
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions... |
namespace paddle {
namespace distributed {
REGISTER_PSCORE_CLASS(PSServer, BrpcPsServer);
REGISTER_PSCORE_CLASS(PSServer, PsLocalServer);
REGISTER_PSCORE_CLASS(PsBaseService, BrpcPsService);
REGISTER_PSCORE_CLASS(PSServer, GraphBrpcServer);
REGISTER_PSCORE_CLASS(PsBaseService, GraphBrpcService);
PSServer *PSServerFac... |
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("Si... |
package org.apache.pinot.common.response.broker;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.io.Serializable;
import java.util.List;
/**
* This class models the aggregation and aggr... |
using UnityEngine;
namespace ProjectSpacer.Database
{
[System.Serializable]
public class InfoDatabaseEntry
{
public Sprite Icon;
public string Name;
public string Description;
public InfoDatabaseEntry(string name, string description, Sprite icon)
{
... |
// Copyright Dirk Lemstra https://github.com/dlemstra/Magick.NET.
// Licensed under the Apache License, Version 2.0.
using ImageMagick;
using Xunit;
namespace Magick.NET.Tests
{
public partial class MagickImageTests
{
public class TheKuwaharaMethod
{
[Fact]
public void... |
FROM balenalib/artik530-ubuntu:focal-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-keys "$key" || ... |