text stringlengths 31 1.04M |
|---|
// Automatically generated - do not modify!
@file:JsModule("@mui/icons-material/SentimentNeutralRounded")
@file:JsNonModule
package mui.icons.material
@JsName("default")
external val SentimentNeutralRounded: SvgIconComponent
|
data vengeance;
set modstat.vengeance;
tcat=t;
run;
/* Régression linéaire avec structure autorégressive d'ordre 1 hétérogène pour les erreurs */
proc mixed data=vengeance method=reml;
class id tcat;
model vengeance = sexe age vc wom t / solution;
repeated tcat / subject=id type=arh(1) r=1 rcorr=1;
run;
/* Régress... |
Class {
#name : #FLStandardFileStreamSerializationTest,
#superclass : #FLBasicSerializationTest,
#category : #FuelTests
}
{ #category : #running }
FLStandardFileStreamSerializationTest >> setUp [
super setUp.
self useStandardFileStream
]
|
-- Copyright (c) 2018 Brendan Fennell <bfennell@skynet.ie>
--
-- 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, copy, ... |
{
"name": "rm_title",
"id": "72e42a9d-6d80-451c-90c1-c952e213fcd0",
"creationCodeFile": "",
"inheritCode": false,
"inheritCreationOrder": false,
"inheritLayers": false,
"instanceCreationOrderIDs": [
"71a4209c-6bd2-444d-a837-c9c45f2915d5"
],
"IsDnD": true,
"layers": [
... |
module Issue478c where
record Ko (Q : Set) : Set₁ where
field
T : Set
foo : (Q : Set)(ko : Ko Q) → Ko.T ko
foo Q ko = Set
-- We should make sure not to destroy printing
-- outside the record module. Type should be
-- printed as it's given: Ko.T ko |
/*
* Copyright (C) 2017-2019 Dremio Corporation
*
* 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 l... |
defmodule Hopper.Accounts do
@moduledoc """
The Accounts context.
"""
alias Hopper.Repo
alias Hopper.Rides
alias Hopper.Accounts.User
@doc """
Returns the list of users.
## Examples
iex> list_users()
[%{}, ...]
"""
def list_users do
{:ok, result} =
Repo.query("""
... |
CREATE DATABASE bitrix;
CREATE USER 'bitrix'@'localhost' IDENTIFIED BY 'Bitrix-123';
GRANT ALL PRIVILEGES ON *.* TO 'bitrix'@'localhost' WITH GRANT OPTION;
CREATE USER 'bitrix'@'%' IDENTIFIED BY 'Bitrix-123';
GRANT ALL PRIVILEGES ON *.* TO 'bitrix'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
|
pragma solidity ^0.4.23;
import ;
import ;
import ;
import ;
import ;
import ;
contract estateregistry is migratable, erc721token, ownable, metadataholderbase, iestateregistry, estatestorage {
modifier cantransfer(uint256 estateid) {
require(isapprovedorowner(msg.sender, estateid), );
_;... |
;;; vc-darcs-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil nil ("vc-darcs.el") (22995 1690 885331 241000))
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
... |
#!/bin/bash
export dashboard_json=$(cat dashboard.json|tr "\n" " ")
dashboard_json='{"dashboard":'"$dashboard_json"'}'
curl http://admin:admin@localhost:3000/api/dashboards/db -X POST -H 'Content-Type: application/json;charset=UTF8' --data-binary ''"$dashboard_json"''
|
<?php
namespace App\Http\Controllers\Auth;
use App\User;
use Validator;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller
{
/*
|-------------------------------------------... |
---
title: "TP Transcriptome : Analyse de données de puces à ADN"
author: "Vincent Guillemot, Cathy Philippe, Marie-Anne Debily"
date: "23 octobre 2015"
output: pdf_document
---
# Problématique Biologique : la différenciation des kératinocytes
Les kératinocytes subissent en permanence une évolution morphologique tém... |
import-module au
. $PSScriptRoot\..\_scripts\all.ps1
$releases = 'https://github.com/extrawurst/gitui/releases'
function global:au_SearchReplace {
@{
".\tools\chocolateyInstall.ps1" = @{
"(^\s*\`$url\s*=\s*)('.*')"= "`$1'$($Latest.URL32)'"
"(^\s*checksum\s*=\s*)('.*')" = "`$1'$... |
#lang scribble/acmart @acmsmall @10pt @screen
@(require "main.rkt" "bib.rkt" scriblib/footnote)
@title[#:tag "sec:related"]{Related Work}
Thorn@~cite{wzlov-popl-2010} and StrongScript@~cite{rzv-ecoop-2015} support
a combination of sound concrete types and erased @emph{like} types.
Thorn is a scalable scripting langua... |
with Ada.Finalization; use Ada.Finalization;
package Noreturn4_Pkg is
type Priv is private;
function It return Priv;
function Value (Obj : Priv) return Integer;
function OK (Obj : Priv) return Boolean;
private
type Priv is new Controlled with record
Value : Integer := 15;
end record;
procedure Ad... |
# This file must be used with "source bin/activate.csh" *from csh*.
# You cannot run it directly.
# Created by Davide Di Blasi <davidedb@gmail.com>.
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD... |
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'comic_downloader/version'
Gem::Specification.new do |spec|
spec.name = "comic_downloader"
spec.version = ComicDownloader::VERSION
spec.authors = ["bomb"]
spec.email ... |
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "./IAccessControlClient.sol";
interface IAccessControlManagerProxy is IAccessControlClient {
function initializeRole(bytes32 adminRole, string calldata description)
external
returns (bytes32 role);
function initializeAndGrantRoles(... |
# filename: ex301.rq
PREFIX d: <http://learningsparql.com/ns/data#>
PREFIX t: <http://purl.org/tio/ns#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?timezoneTest ?tzTest
WHERE
{
?mtg t:starts ?startTime .
BIND (timezone(?startTime) AS ?timezoneTest)
BIND (tz(?startTime) AS ?tzTest)
}
|
set BERT_BASE_DIR=C:\Users\michaels\Projects\bert\uncased_L-12_H-768_A-12
set SQUAD_DIR=C:\Users\michaels\Projects\bert\squad11
python run_squad.py ^
--vocab_file=%BERT_BASE_DIR%\vocab.txt ^
--bert_config_file=%BERT_BASE_DIR%\bert_config.json ^
--init_checkpoint=%BERT_BASE_DIR%\bert_model.ckpt ^
--do_train=Tru... |
struct Struct0 {
1: map<double, float> field1
2: binary field2
3: i64 field3
4: float field4
5: string field5
6: i64 field6
7: set<binary> field7
8: i16 field8
9: i16 field9
10: list<double> field10
11: map<float, list<binary>> field11
12: map<i32, float> field12
13: list<list<binary>> field13... |
KERNAL_PRINTCHR EQU $e716
KERNAL_GETIN EQU $ffe4
INPUT_MAXCHARS EQU $06
RESERVED_STACK_POINTER DC.B 0
; setup default mem layout for xprom runtime environment
STDLIB_MEMSETUP SUBROUTINE
lda #$36
sta $01
rts
; print null-terminated petscii string
STDLIB_PRINT SUBROUTINE
sta $6f ; store string start low b... |
if application "Sonos" is not running then
tell application "Sonos" to activate
tell application "System Events"
repeat until visible of process "Sonos" is true
delay 0.1
end repeat
delay 1 -- After app becomes visible, wait for it to render its buttons
end tell
end if
tell application "System Events"
te... |
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability war... |
::
:: Copyright (c) 2008-2017 the Urho3D project.
::
:: 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, copy, modify, m... |
/-
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
-/
prelude
import init.data.fin.basic init.data.fin.ops
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="billStatus/bill/canonicalname"/></title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-s... |
-- This droplet processes folders dropped onto the applet
on open these_items
repeat with i from 1 to the count of these_items
set this_item to item i of these_items
set the item_info to info for this_item
if (alias of the item_info is false) and (folder of the item_info is true) then
process_item(this_item)... |
#!/bin/csh
#
# DART software - Copyright UCAR. This open source software is provided
# by UCAR, "as is", without charge, subject to all terms of use at
# http://www.image.ucar.edu/DAReS/DART/DART_download
# diagnostics_obs.csh - shell script that computes observation
# specific diagnostics.
#
# $... |
unit CustomAction.FileMaker.FM7DevPath;
interface
uses
SysUtils,
Classes,
routines_msi,
Msi,
MsiDefs, CustomAction.FileMaker ,
MsiQuery;
function FM7DevPath(hInstall: MSIHANDLE): UINT; stdcall;
function FM7DevBinPath(hInstall: MSIHANDLE): UINT; stdcall;
implementation
uses
Youseful.exceptions,CustomAct... |
open main
pred idk2ffMRLWGotQAmtZo_prop20 {
always all f : File | f in Trash since f not in Protected
}
pred __repair { idk2ffMRLWGotQAmtZo_prop20 }
check __repair { idk2ffMRLWGotQAmtZo_prop20 <=> prop20o } |
using MetacommunityDynamics
using DynamicGrids
using Plots
using Distributions
# Spatially explicit levins model
rs = SpatiallyExplicitLevinsColonization{:O}(probability=0.3) +
AbioticExtinction{:O}(:A, baseprobability=0.1);
pops = pointstogrid(generate(PoissonProcess, 20), gridsize=100)
areas = generate(St... |
%% @author Lee Barney
%% @copyright 2021 Lee Barney licensed under the <a>
%% rel="license"
%% href="http://creativecommons.org/licenses/by/4.0/"
%% target="_blank">
%% Creative Commons Attribution 4.0 International License</a>
%%
%%
%% These solutions are not intended to be ideal solutions.... |
\hypertarget{dir_04ed82fa347894d51633089936838d70}{}\doxysection{examples/003-\/json-\/call Directory Reference}
\label{dir_04ed82fa347894d51633089936838d70}\index{examples/003-\/json-\/call Directory Reference@{examples/003-\/json-\/call Directory Reference}}
\doxysubsection*{Files}
\begin{DoxyCompactItemize}
\item
f... |
onerror {resume}
quietly WaveActivateNextPane {} 0
add wave -noupdate /prueba_snbits/A
add wave -noupdate /prueba_snbits/B
add wave -noupdate /prueba_snbits/cen
add wave -noupdate /prueba_snbits/SUM
add wave -noupdate /prueba_snbits/SUMref
add wave -noupdate /prueba_snbits/csal
add wave -noupdate /prueba_snbits/csalref... |
<?php
include'config/connect.php';
if (isset($_POST['update'])) {
$nis = $_POST['nis'];
$nama = $_POST['nama'];
$kelas = $_POST['kelas'];
$tahun = $_POST['tahun'];
$que = mysqli_query($koneksi,"UPDATE imports SET nama='$nama',id_kelass='$kelas',tahun_ajaran='$tahun' WHERE nis='$nis'") or die(mysql_error());
if... |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
%% coding: latin-1
%%------------------------------------------------------------
%%
%% Erlang header file
%%
%% Target: CosTransactions_Coordinator
%% Source: /net/isildur/ldisk/daily_build/19_prebuild_master-opu_o.2016-06-21_20/otp_src_19/lib/cosTransactions/src/CosTransactions.idl
%% IC vsn: 4.4.1
%%
%% This file... |
' Visual Basic .NET Document
Option Strict On
' <Snippet1>
Imports System.Text.RegularExpressions
Module RegexSplit
Public Sub Main()
Dim regex As Regex = New Regex("-") ' Split on hyphens.
Dim substrings() As String = regex.Split("plum--pear")
For Each match As String In subst... |
> {-# OPTIONS_HADDOCK show-extensions #-}
> {-|
> Module : LTK.Learn.TSL
> Copyright : (c) 2020 Dakotah Lambert
> License : MIT
> A learner for tier-based strictly local stringsets.
> Different types are available via LTK.Learn.TSL.*,
> and this module selects a reasonable default.
>
> @since 0.3
> -}
> module L... |
package Slim::Utils::Light;
# $Id: $
# Logitech Media Server Copyright 2001-2011 Logitech.
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License,
# version 2.
# This module provides some functions compatible with functions
# from the core Logi... |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 applic... |
/- Basic pi congruence -/
import logic.connectives logic.quantifiers
namespace pi_congr1
constants (p1 q1 p2 q2 p3 q3 : Prop) (H1 : p1 ↔ q1) (H2 : p2 ↔ q2) (H3 : p3 ↔ q3)
attribute forall_congr [congr]
attribute imp_congr [congr]
attribute H1 [simp]
attribute H2 [simp]
attribute H3 [simp]
#simplify iff env 1 p1 -... |
@article{ISI:000408747900002,
article-number = {384003},
author = {Giavazzi, Fabio and Malinverno, Chiara and Corallino, Salvatore and
Ginelli, Francesco and Scita, Giorgio and Cerbino, Roberto},
doi = {10.1088/1361-6463/aa7f8e},
eissn = {1361-6463},
issn = {0022-3727},
journal = {JOURNAL OF PHYSICS D-APPLIED PHY... |
PREFIX hpc: <https://github.com/HPC-FAIR/HPC-Ontology#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
CONSTRUCT {
?URI a hpc:DecisionTreeNode;
hpc:hasIDType ?IDTypestr;
hpc:name ?namestr;
hpc:alternateName ?alternateNamestr;
hpc:description ?descriptionstr;
hpc:url ?URLuri;
hpc:license ?Lic... |
# Copyright (C) 2020 The Project U-Ray Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
source "$::env(URAY_DIR)/utils/utils.tcl"
create_project -force -part $::env(URAY_PART) d... |
package fi.riissanen.gwent.game;
import fi.riissanen.gwent.game.cards.UnitCard;
import fi.riissanen.gwent.game.combat.Unit;
import fi.riissanen.gwent.game.combat.UnitType;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.Rule;
import org.j... |
//Address: 0x828539d6d54ac9b3d427113e878ae8357d1f928a
//Contract name: BAIRON
//Balance: 0 Ether
//Verification Date: 6/8/2018
//Transacion Count: 165
// CODE STARTS HERE
pragma solidity ^0.4.16;
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) pub... |
%% -*- coding: utf-8 -*-
-module(naviapi_systems_command).
-author('Denis Batrak <baden.i.ua@gmail.com>').
-export([
init/2,
get/2,
post/3,
patch/3,
delete/2
]).
init(Req, Opts) ->
{naviapi_rest, Req, Opts#{auth => true}}. % Для доступа к ресурс... |
begin_version
3.FOND
end_version
begin_metric
0
end_metric
9
begin_variable
var0
-1
2
Atom fire(l1)
Atom nfire(l1)
end_variable
begin_variable
var1
-1
2
Atom have-victim-in-unit(v1, m1)
Atom victim-at(v1, l2)
end_variable
begin_variable
var2
-1
2
Atom have-victim-in-unit(v2, m2)
Atom victim-at(v2, l1)
end_variable
begi... |
syntax = "proto3";
package tensorflow;
// option cc_enable_arenas = true;
option java_outer_classname = "DeviceAttributesProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";
// BusAdjacency identifies the ability of a device to participate in
// maximally efficient DMA operati... |
name: natural-funpow-thm
version: 1.8
description: Properties of function power
author: Joe Leslie-Hurd <joe@gilith.com>
license: MIT
provenance: HOL Light theory extracted on 2014-11-01
requires: bool
requires: function
requires: natural-add
requires: natural-def
requires: natural-funpow-def
requires: natural-mult
req... |
<?php
declare(strict_types=1);
namespace App\Exceptions;
use App\Exceptions\Blocks\ErrorCode;
use App\Exceptions\Blocks\ErrorSource;
use Illuminate\Contracts\Support\Arrayable;
/**
* Class InvalidRequestBodyException
* @package App\Exceptions
*/
class InvalidRequestBodyException extends \Exception implements Arr... |
--model_name_or_path="maxidl/wav2vec2-large-xlsr-german"
--dataset_config_name="de"
--output_dir="/share/w2v/wav2vec2-large-xlsr-german-sm"
--preprocessing_num_workers="8"
--overwrite_output_dir
--num_train_epochs="1"
--per_device_train_batch_size="4"
--per_device_eval_batch_size="4"
--learning_rate="1e-6"
--warmup_ste... |
<?php
/**
* DO NOT EDIT THIS FILE!
*
* This file was automatically generated from external sources.
*
* Any manual change here will be lost the next time the SDK
* is updated. You've been warned!
*/
namespace Rankfoundry\eBaySDK\Trading\Types;
/**
*
*/
class PayPalBuyerProtectionEnabledDefinitionType extends... |
defmodule RF69.MixProject do
use Mix.Project
def project do
[
app: :rf69,
version: "0.1.0",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps()
]
end
def elixirc_paths(:test) do
["./lib", "test/support"]
... |
<?xml version="1.0" encoding="utf-8" ?>
<dataset Transactions="1"><dataset_header DisableRI="yes" DatasetObj="1004928896.09" DateFormat="mdy" FullHeader="no" SCMManaged="yes" YearOffset="1950" DatasetCode="RYCSO" NumericFormat="AMERICAN" NumericDecimal="." OriginatingSite="91" NumericSeparator=","/>
<dataset_records><d... |
package org.wsy.mqendpoint.core;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
public class Config {
private static Properties properties;
private static InputStream is;
private static final String propertie... |
#lang scribble/manual
@require[@for-label[racket/base]]
@title{Vulkan API Integration}
@author[(author+email "Sage L. Gerard" "sage@sagegerard.com" #:obfuscate? #t)]
This collection integrates Racket and the Vulkan API, with a focus on
low overhead and C code equivalency. With this collection, it is
possible to use R... |
#Signature file v4.1
#Version 1.73
CLSS public abstract interface java.io.Serializable
CLSS public abstract interface java.lang.Comparable<%0 extends java.lang.Object>
meth public abstract int compareTo({java.lang.Comparable%0})
CLSS public abstract java.lang.Enum<%0 extends java.lang.Enum<{java.lang.Enum%0}>>
cons ... |
open Format
let (registry : (string, unit -> unit) Hashtbl.t) = Hashtbl.create 32
|
; $Id: kLdrExeStub-os2A.asm 29 2009-07-01 20:30:29Z bird $
;; @file
; kLdr - OS/2 Loader Stub, entry point thingy...
;
;
; Copyright (c) 2006-2007 Knut St. Osmundsen <bird-kStuff-spamix@anduin.net>
;
; Permission is hereby granted, free of charge, to any person
; obtaining a copy of this software and associated docume... |
# Please increment version number on EVERY change
# Major.Minor represents LoxBerry version (e.g. 2.0.3.2 = LoxBerry V2.0.3 the 2nd change)
################################################################
# LoxBerry::Update
# THIS LIBRARY IS EXCLUSIVELY USED BY LoxBerry Update AND
# SHOULD NOT BE USED IN PLUGINS
####... |
-- ----------------------------------------------------------- [ Lightyear.idr ]
-- Module : Lightyear
--
-- License : This code is distributed under the BSD 2-clause license. See the
-- file LICENSE in the root directory for its full text.
-- -----------------------------------------------------------------... |
/*
* @author : Alexis Chretienne
* @email : alexis.chretienne@fr.ibm.com
*
* Sample code allowing to understand how to code API in Javascript
*
*/
//The API Developer Portal URL
var url_api_devloper_portal = "https://api.us.apiconnect.ibmcloud.com/spbodieusibmcom-prod/developer-contest/mplbank";
... |
--
-- Copyright 2008 Google Inc.
--
-- 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 agree... |
/* eslint-disable @typescript-eslint/explicit-function-return-type */
import { Body, Controller, HttpCode, Post, UseGuards } from '@nestjs/common';
import { ApiTags, ApiOkResponse, ApiOperation, ApiBody, ApiQuery } from '@nestjs/swagger';
import { Constraint, QueryStatement, Timezone } from 'aurora-ts-core';
import { I... |
> import System.Environment
> import Data.List
> import Text.Show.Pretty
> import Database.HsSqlPpp.Parse
> import Database.HsSqlPpp.TypeCheck
> import Database.HsSqlPpp.Catalog
> --import Database.HsSqlPpp.Dialect
> import qualified Data.Text.Lazy.IO as LT
> main :: IO ()
> main = do
> [f] <- getArgs
> src <- ... |
## Building
New Relic does not distribute the jar(s) required to build this instrumentation module nor are they available from a public repository such as Maven Central or jcenter.
To build this instrumentation module you must provide the jar(s) and place them into the `/lib` subdirectory as follows:
```groovy
instr... |
// Copyright © 2021 Alibaba Group Holding Ltd.
//
// 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... |
package tenants
import "fmt"
// InvalidListFilter is returned by the ToUserListQuery method when validation of
// a filter does not pass
type InvalidListFilter struct {
FilterName string
}
func (e InvalidListFilter) Error() string {
s := fmt.Sprintf(
"Invalid filter name [%s]: it must be in format of NAME__COMPA... |
namespace java com.lighting.rpc.webmetaserver.model
enum WMSWebsiteType {
WMS_WEBSITE_ZH_CN = 0,
}
enum WMSWebsiteCrawlerType {
WMS_WEBSITE_CRAWLER_STAND_ALONE = 0,
WMS_WEBSITE_CRALWER_DISTRIBUTED = 1
}
enum WMSWebsiteUrlRuleType {
WMS_WEBSITE_URL_RULE_HIT = 0
}
enum WMSWebsiteContentRuleType {
WMS_WEBSITE_C... |
// Copyright 2018 The OpenPitrix Authors. All rights reserved.
// Use of this source code is governed by a Apache license
// that can be found in the LICENSE file.
// openpitrix frontgate service
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"regexp"
"strconv"
"github.com/chai2010/json... |
using DrWatson
@quickactivate "StatReth"
# %%
using DataFrames
using CSV
using Turing
using StatsBase
using StatsPlots
include(srcdir("quap.jl"))
include(srcdir("tools.jl"))
# %% 5.1, 5.2
d = CSV.read(datadir("exp_raw/WaffleDivorce.csv"), DataFrame)
d.D = zscore(d.Divorce)
d.M = zscore(d.Marriage)
d.A = zscore(d.Med... |
/*
* Copyright 2016 the original author or authors.
*
* 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... |
#!/usr/bin/perl
use strict;
use warnings;
use Text::CSV;
use JSON;
my $csv = Text::CSV->new ({ binary => 1, sep_char=>';'});
open my $FH, "<", "test.csv" or die "cannot open test.csv: $!";
my @data; #here we will put the end result, i.e. something which we will convert to json
#parse first line to get the adresses
... |
local Signal = {}
Signal.__index = Signal
function Signal.new()
return setmetatable({
Bindable = Instance.new("BindableEvent");
}, Signal)
end
function Signal:Connect(Callback)
return self.Bindable.Event:Connect(function(GetArgumentStack)
Callback(GetArgumentStack())
end)
end
function Signal:Fire(...)
local... |
inherited FrmUsuarios: TFrmUsuarios
Caption = 'FrmUsuarios'
ClientWidth = 751
ExplicitTop = 2
ExplicitWidth = 757
PixelsPerInch = 96
TextHeight = 13
inherited PnlTitulo: TPanel
Width = 751
end
inherited PnlFormulario: TPanel
Width = 751
Height = 62
ExplicitWidth = 751
ExplicitHeigh... |
; A152733: a(n) + a(n+1) + a(n+2) = 3^n.
; 0,0,3,6,18,57,168,504,1515,4542,13626,40881,122640,367920,1103763,3311286,9933858,29801577,89404728,268214184,804642555,2413927662,7241782986,21725348961,65176046880,195528140640,586584421923,1759753265766,5279259797298,15837779391897,47513338175688,142540014527064,42762004358... |
> {-# LANGUAGE TemplateHaskell, EmptyDataDecls, TypeFamilies, TypeOperators #-}
>
> module Example where
>
> import Generics.Regular
> import Generics.Regular.Views
> import Generics.Regular.Formlets
> import Generics.Regular.JSON
> import Text.JSON
> import Data.Record.Label
> import Control.Monad.Identity
> import C... |
vlib work
vmap -c
vcom untitled_pkg.vhd
vcom nfp_uminus_double.vhd
vcom nfp_convert_single2double.vhd
vcom nfp_mul_double.vhd
vcom nfp_add_double.vhd
vcom Decoupling.vhd
vcom IdController.vhd
vcom nfp_add_single.vhd
vcom nfp_mul_single.vhd
vcom IqController.vhd
vcom nfp_sub_single.vhd
vcom nfp_sub_double.vh... |
{
"id": "6d9809c3-16f2-479e-b256-3581f9a1f5dd",
"modelName": "GMFolder",
"mvc": "1.1",
"name": "6d9809c3-16f2-479e-b256-3581f9a1f5dd",
"children": [
"e2fee881-de6e-4c29-91fe-9c65a9b6039b",
"bc880165-5d6b-4e8d-8190-d8f710848e2e",
"7f0ea178-d857-4309-ad04-1531e0bd57d6",
... |
! -------------------------------------------------------------
!
! Copyright (C) 2021 The Simons Foundation
!
! Author: Jason Kaye
!
! -------------------------------------------------------------
!
! libdlr is licensed under the Apache License, Version 2.0 (the... |
test-nav_msgs/
testnav_msgs_MapMetaData
| definition |
definition := browser type: 'nav_msgs/MapMetaData'.
self assert: definition typeName = 'nav_msgs/MapMetaData'.
self assert: definition md5Sum = '10cfc8a2818024d3248802c00c95f11b'.
|
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12;
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import './utils/HomoraMath.sol';
interface IbETHRouterV2IbETHv2 is IERC20 {
... |
/*
* LaunchDarkly REST API
*
* Build custom integrations with the LaunchDarkly REST API
*
* API version: 2.0.26
* Contact: support@launchdarkly.com
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package ldapi
type Webhook struct {
Links *Links `json:"_links,omitempty"... |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX Gene: <http://purl.obolibrary.org/obo/SO_0000704>
CONSTRUCT {
?term rdfs:subClassOf Gene: .
}
WHERE {
?s ?p ?term .
FILTER (STRSTARTS(STR(?term), "http://identifiers.org/ncbigene"))
FILTER (isIRI(?term... |
CREATE TABLE club (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name varchar(50) NOT NULL,
abb varchar(10) ,
addr_line_1 varchar(200) ,
addr_line_2 varchar(200) ,
city varchar(50) ,
state varchar(50) ,
country varchar(50)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
--TEST--
swoole_client_coro: (length protocol) wrong packet
--SKIPIF--
<?php require __DIR__ . '/../include/skipif.inc'; ?>
--FILE--
<?php
require __DIR__ . '/../include/bootstrap.php';
$pm = new ProcessManager;
$port = get_one_free_port();
$pm->parentFunc = function ($pid) use ($pm, $port)
{
go(function () use (... |
#!/usr/bin/bash
#SBATCH --time 12:00:00 -p batch --ntasks 2 --mem 1G
module load sratoolkit
module load aspera
ASCP=$(which ascp)
for acc in $(cat accessions.txt)
do
prefetch -a "$ASCP|$ASPERAKEY" --ascp-options "-Q -l 200000 -m 100 -k 2" $acc
done
|
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.smoketest
import static java.util.stream.Collectors.toSet
import io.grpc.ManagedChannelBuilder
import io.opentelemetry.proto.collector.trace.v1.ExportTraceServiceRequest
import io.opentelemetry.proto.collect... |
/* mbl.widget.Heading */
.dj_tablet .mblHeading {
background-image: url(compat/ipad-heading-bg.png);
}
.dj_gecko.dj_tablet .mblHeading {
background-image: -moz-linear-gradient(top, #f3f4f6 0%, #a7abb8 100%);
}
/* dojox.mobile.ToolBarButton */
.dj_ie.dj_tablet .mblToolBarButtonHasLeftArrow .mblToolBarButtonLeftArrow ... |
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { TextInputAutocompleteModule } from '../src';
import { DemoComponent } from './demo.component';
@NgModule({
declarations: [DemoComponent],
imports: [BrowserModu... |
(* ::Package:: *)
(* Copyright 2019 lsp-wl Authors *)
(* SPDX-License-Identifier: MIT *)
(* Wolfram Language Server TextDocument Test *)
BeginPackage["WolframLanguageServer`TextDocumentTest`"]
ClearAll[Evaluate[Context[] <> "*"]]
Begin["`Private`"]
ClearAll[Evaluate[Context[] <> "*"]]
TestingContext = "Wolfram... |
module.exports = {
name: "XTemplate"
namespace: "xtemplate"
fallback: ['html','mustache']
###
Supported Grammars
###
grammars: [
"XTemplate"
]
###
Supported extensions
###
extensions: [
"xtemplate"
]
defaultBeautifier: "Pretty Diff"
options: []
}
|
pragma solidity ^0.4.24;
import "../math/SafeMath.sol";
/**
* @title SplitPayment
* @dev Base contract that supports multiple payees claiming funds sent to this contract
* according to the proportion they own.
*/
contract SplitPayment {
using SafeMath for uint256;
uint256 public totalShares = 0;
uint256 p... |
// Copyright 2019 PingCAP, Inc.
//
// 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 i... |
{-# language DeriveAnyClass #-}
{-# language DeriveGeneric #-}
{-# language DuplicateRecordFields #-}
{-# language OverloadedLabels #-}
{-# language OverloadedStrings #-}
module Types where
import Activity
import Node
import DearImGui ( ImVec2(..) )
import Data.Aeson
import ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.