text
stringlengths
27
775k
--- title: SharingItem.CreationTime Property (Outlook) keywords: vbaol11.chm605 f1_keywords: - vbaol11.chm605 ms.prod: outlook api_name: - Outlook.SharingItem.CreationTime ms.assetid: 787436e0-d3a0-b86b-6eeb-ac392b32e4c0 ms.date: 06/08/2017 --- # SharingItem.CreationTime Property (Outlook) Returns a **Date** indica...
from target.debug.klass import Class klass = Class() print(klass.greet("Smith"))
// Services import { Component, Input } from 'angular2/core'; // Sub components import { NgFor, NgIf } from 'angular2/common'; // Style import './character-details-stats.less'; @Component({ selector: 'character-details-stats', directives: [NgFor, NgIf], template: require('./character-details-stats.html')...
-- UNION -- O operador UNION combina dois ou mais resultados de um select em um -- resultado apenas -- Tira tan=mbem dados duplicados /* SELECT coluna1, coluna2 FROM tabela1 UNION SELECT coluna1, coluna2 FROM tabela2; */ -- UNION ALL continua com dados duplicados /* SELECT coluna1, coluna2 FROM tabela1 UNION ALL SELE...
use crate::*; use libplacebo_sys::*; use std::ffi::c_void; use std::ptr::null_mut; create_enum!( LogLevel, pl_log_level, (LOG_NONE, LOG_FATAL, LOG_ERR, LOG_WARN, LOG_INFO, LOG_DEBUG, LOG_TRACE) ); #[derive(Clone, Copy, Debug)] pub enum LogFunction { LogColor, LogSimple, NoLog, } pub struct C...
<?php namespace Stratedge\Toolbox; class StringUtils { /** * Given a string that is snake-cased, will convert the string to camelcase, * optionally with the first character capitalized * * @param string $str * @param bool $capitalize_first * @return string */ public st...
#pragma once #include "token.hpp" #include <fstream> #include <string> #include <vector> #include <unordered_map> // one lexer for each file class Lexer { public: Lexer(std::string_view file_name, bool const main_file); public: Token eat(bool const go_to_next_line); Token peek(bool const go_to_next_line); Toke...
var express = require("express"); var mongoose = require("mongoose"); var ejs = require("ejs"); var bodyParser = require("body-parser"); var req = require("request"); var path = require("path"); var app = express(); var resultTask = []; const expressLayouts = require("express-ejs-layouts"); const request = require("req...
<?php /** * Created by IntelliJ IDEA. * User: Nikolay Chervyakov * Date: 28.01.2015 * Time: 16:41 */ namespace AmfphpModule; use App\Pixie; use VulnModule\Config\Context; use VulnModule\Config\FieldDescriptor; /** * Base class for services, which accepts a pixie instance and the current vul...
#!/bin/bash # # Copyright 2016 IBM Corp. 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applic...
/* * Deterministic.scala * Elements with no randomness. * * Created By: Avi Pfeffer (apfeffer@cra.com) * Creation Date: Jan 1, 2009 * * Copyright 2017 Avrom J. Pfeffer and Charles River Analytics, Inc. * See http://www.cra.com or email figaro@cra.com for information. * * See http://www.github.com/p2...
import { GetServerSideProps } from 'next' import { getSession } from 'next-auth/react' import { Center } from '../components/Center' import { Player } from '../components/Player' import { Sidebar } from '../components/Sidebar' const Home = () => { return ( <div className="bg-black h-screen overflow-hidden"> ...
namespace OpenRasta.Text.Parsers { public static class Abnf5234 { public static bool IsAlpha(char c) { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); } public static bool IsDigit(char c) { return c >= '0' && c <= '9'; } } }
package config import ( "bytes" json2 "encoding/json" "errors" "fmt" "io" "os" "path" "strconv" "strings" ) type IoFile struct { Name string Path string Custom bool } func NewIoFile(fileName, filePath string, customCase bool) IoFile { return IoFile{ Name: fileName, Path: filePath, Custom: ...
$:.unshift File.expand_path("../lib", __FILE__) require "github-backup/version" Gem::Specification.new do |s| s.name = "github-backup" s.version = GithubBackup::VERSION s.author = "David Dollar" s.email = "david@dollar.io" s.summary = "Backup your Github repositories" s.descript...
# frozen_string_literal: true actions :install_ubuntu, :install_centos, :install_os_x, :remove_centos, :remove_ubuntu, :remove_os_x, :install_amazon, :remove_amazon default_action :install_linux attribute :version, kind_of: String, name_attribute: true attribute :upgrade, kind_of: [TrueClass, FalseClass]
<?php date_default_timezone_set("Europe/Oslo"); require $_SERVER['DOCUMENT_ROOT'] . '/minfamilie/inc/db.inc.php'; $status = $_GET['s']; $id = $_GET['id']; if($status != 0){ $sql = "UPDATE todo SET time = NOW(), status = $status WHERE id = $id";} else{ $sql = "UPDATE todo SET tim...
(defpackage "BASIC-BINARY-IPC.OVERLAPPED-IO" (:use "COMMON-LISP") (:import-from "BASIC-BINARY-IPC" #:system-function-error #:define-check-system-call #:define-system-call) ;; Requests (:export #:request #:descriptor #:free-request #:invalidp #:waitingp #:completedp #:succeededp ...
@extends('layouts.frontLayout.front_custom_account') @section('content') @include('front.partials.accountStyle') <main id="main"> <section id="form"> <div class="container"> <header class="section-header wow fadeInUp" style="padding-top: 45px;"> <h3 style="color:#fff;">Login Form</h3>...
# -*- coding: utf-8 -*- # # Copyright 2013 Google Inc. 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 req...
// Copyright 2020 Google LLC // // 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 ...
// eslint-disable-next-line //! This is commonly referred to as "Store.js" */ // eslint-disable-next-line //*? This sends the Context data to "__index.js" */ // eslint-disable-next-line //?* This retrieves data from "useGlobalStateFirst.js" which is now "FirstProvider.js" */ import React from 'react' import first_redu...
package bio.ferlab.datalake.spark3.transformation import org.apache.spark.sql.DataFrame case class Rename(renameMap: Map[String, String]) extends Transformation { override def transform: DataFrame => DataFrame = { df => renameMap.foldLeft(df) { case (d, (existingName, newName)) => d.withColumnRenamed(exis...
#!/usr/bin/env bash VERSION=5.6.4 es_memory='4g' apt-get install openjdk-8-jdk rm /etc/alternatives/java ln -s /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java /etc/alternatives/java export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 export PATH=$JAVA_HOME/bin:$PATH if [ ! -f elasticsearch-$VERSION.deb ]; then wget...
// // PGPCalendarMarkerContainerView.h // Pods // // Created by Paul Pilone on 9/2/15. // // #import <UIKit/UIKit.h> @interface PGPCalendarMarkerContainerView : UIView - (void)removeMarkers; /* */ - (void)setMarkers:(NSArray *)markers; @end
const { Event } = require('klasa'); const MessageUtil = require('../../lib/ws/util/MessageUtil'); const Message = require('../../lib/ws/Message'); const { READY_CLIENT } = require('../../lib/ws/util/constants').types; module.exports = class extends Event { async run() { this.client.manager.ws.send(MessageUtil.enco...
<?php /** * Created by PhpStorm. * User: junying.wei * Date: 17/11/05 * Time: 下午2:09 */ require_once dirname ( __FILE__ ).DIRECTORY_SEPARATOR.'./../../AopSdk.php'; require_once dirname ( __FILE__ ).DIRECTORY_SEPARATOR.'./../entites/ApiParamModel.php'; require_once dirname ( __FILE__ ).DIRECTORY_SEPARATOR.'./../ent...
// Package test provides tests for common low-level types and utilities for all aistore projects /* * Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. */ package tests import ( "reflect" "testing" "github.com/NVIDIA/aistore/cmn" ) func TestMatchRESTItems(t *testing.T) { tests := []struct { n...
import React from "react"; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore import Typewriter from "typewriter-effect"; import { Grid, Typography, makeStyles } from "@material-ui/core"; import CreateBoardDialog from "./CreateBoardDialog"; import LoadBoardDialog from "./LoadBoardDialog"; impo...
{-# LANGUAGE RankNTypes #-} module Web.Handler.PatchCategory ( run , Handle(..) ) where import Control.Monad.Catch import Core.Authentication import Core.Category import qualified Core.Interactor.UpdateCategory as IUpdateCategory import qualified Data.Aeson as A import Data.Aeson ((.:!)) import qualified Data.T...
package com.jesperqvarfordt.listn.domain.usecase import com.jesperqvarfordt.listn.domain.player.MusicPlayer open class TearDownPlayerUseCase(private val player: MusicPlayer) { open fun execute() = player.tearDown() }
#!/bin/sh channels_url="http://omahaproxy.appspot.com/all?csv=1"; history_url="http://omahaproxy.appspot.com/history"; bucket_url="http://commondatastorage.googleapis.com/chromium-browser-official/"; base_path="$(cd "$(dirname "$0")" && pwd)/source"; source "$(nix-build --no-out-link "$base_path/update.nix" -A update...
using System; using System.Web; using FrontEnd.Models; using FrontEnd.Services; using System.Web.Mvc; using System.Web.Security; namespace FrontEnd.Controllers { public class LoginController : Controller { private readonly AutenticarService _autenticar; public LoginController(AutenticarService...
package org.sathyabodh.actuator.web.documentation; import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; import static org.springframework.restdocs.payload.PayloadDocumentation.responseFields; import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; im...
# frozen_string_literal: true require 'spec_helper' describe Ci::DailyReportResultService, '#execute' do let!(:pipeline) { create(:ci_pipeline, created_at: '2020-02-06 00:01:10') } let!(:rspec_job) { create(:ci_build, pipeline: pipeline, name: '3/3 rspec', coverage: 80) } let!(:karma_job) { create(:ci_build, pi...
--- title: 'Trendmagasin #1' date: 2018-05-30T14:31:33.204Z image: /img/trend01-framsida.jpg pdf_file: /img/trend01.pdf --- <div data-configid="31181722/68088490" style="width:100%; height:517px;" class="issuuembed"></div> <script type="text/javascript" src="//e.issuu.com/embed.js" async="true"></script>
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JesterClient { public class EventQueue { protected List<Event> functionList = new List<Event>(); public EventQueue() { } public void addFunction(Event method) { ...
package main import ( "flag" "fmt" "go/ast" "go/parser" "go/scanner" "go/token" "log" "os" "strings" "sync" "github.com/gordonklaus/ineffassign/pkg/ineffassign" "golang.org/x/tools/go/analysis" "golang.org/x/tools/go/packages" ) func main() { log.SetFlags(0) log.SetPrefix(ineffassign.Analyzer.Name + "...
class GoCardlessError(Exception): pass class ClientError(GoCardlessError): """Thrown when there was an error processing the request""" def __init__(self, message, errors=None): self.message = message if errors is not None: self.message += self._stringify_errors(errors) ...
using MSR.CVE.BackMaker.ImagePipeline; using System; namespace MSR.CVE.BackMaker { internal class NothingLayerViewManager : IViewManager { private ViewControlIfc viewControl; public NothingLayerViewManager(ViewControlIfc viewControl) { this.viewControl = viewControl; } public void Activate() ...
--- title: 【Azure AD B2C】ユーザーフローでメールアドレスログインを行う date: "2020-09-13" template: "post" draft: false slug: "tech-aadb2c-userflow-localaccount" category: "AzureADB2C" tags: - "プログラミング学習" - "プログラミング初心者" description: "本記事では、Azure AD B2Cのユーザーフローを使い方を解説します" # socialImage: "./media/image-2.jpg" thumbnail: ./thumbnail.jpg ---...
package main import ( "encoding/gob" "fmt" "github.com/gorilla/websocket" "io" "io/ioutil" "log" "net/http" "os" "strconv" "strings" "time" ) var ( upgrader = websocket.Upgrader{ ReadBufferSize: 1024, WriteBufferSize: 1024, } ) const uploadSessionName = "upload" // TogglePermCodeHandler either tur...
import com.rsupport.download.FileDownloader import com.rsupport.google.GoogleCredentials import com.rsupport.google.sheet.SheetUrlParser import com.rsupport.stringtable.StringTableGenerator import org.junit.Assert import org.junit.Test import java.io.File import java.nio.file.Files import java.nio.file.Path import java...
const JWT = require('jsonwebtoken'); const ResponseHelper = require('helpers/ResponseHelper'); const Authentication = (config) => (req, res, next) => { const excluded = [ '/authentication' ]; if (excluded.some((url) => req.path.startsWith(url))) { next(); } else { const token = req.headers['authori...
package subcommands import ( "strings" "reflect" "testing" ) func TestParseRemoveArgs(t *testing.T) { tests := []struct { name string args string wantAliases []string wantErr bool }{ {"happy path", "da sn", []string{"da", "sn"}, false}, } for _, tt := range tests { t.Run(tt.name, ...
import 'package:locally/domain/redux/appstate.dart'; import 'package:locally/features/Filter&SearchBar/Searchbar/domain/action.dart'; AppState searchInputReducer(AppState newState, action) { if (action is SearchInputAction) { newState.searchBarState.searchBarState = newState.filterState.contacts.toList(...
<html> <title> Find pokemon movies divided in small parts here! </title> </html>
use { crate::cli_output::CliSignatureVerificationStatus, chrono::{DateTime, Local, NaiveDateTime, SecondsFormat, TimeZone, Utc}, console::style, indicatif::{ProgressBar, ProgressStyle}, solana_sdk::{ clock::UnixTimestamp, hash::Hash, instruction::CompiledInstruction, ...
namespace ZetaAsync; /// <summary> /// Interface for items that have an order position. /// </summary> [PublicAPI] public interface IOrderPosition { int OrderPosition { get; set; } /// <summary> /// Persist the new order position to database. /// </summary> void StoreOrderPosition( object ...
main(){ registro(ano:1998,dia:13,mes:02);//nomeados; } registro({ano: 1970, dia: 1, mes: 1}){//esses sao os parametros nomeados , com valores basicos cas nao informado; print("$dia/ $mes/ $ano."); }
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using System.Linq; public class AutoWriteText : Text { private IEnumerator coroutine; public void Clear() { text = string.Empty; } public void Type (string input) { Clear(); ...
package digger import akka.actor.ActorSystem import akka.http.scaladsl.Http import akka.http.scaladsl.server.Directives.concat import com.typesafe.config.{Config, ConfigFactory} import digger.elasticsearch.EsClient import digger.web._ import scala.io.StdIn object WebServerApp extends App { implicit val system = Ac...
#include <stdio.h> void sleep(int s) { printf("I am not sleeping!\n"); }
require 'test_helper' require 'generators/batman/model_generator' class ModelGeneratorTest < Rails::Generators::TestCase tests Batman::Generators::ModelGenerator test "simple model" do run_generator %w(Task title:string created_at:date) assert_file "#{javascripts_path}/batman/models/task.js.coffee" do |m...
/* GrinPointer.h */ /* Portions copyright (c) 2007 Stanford University and Christopher M. Bruns. * Contributors: * * 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, i...
import 'dart:async'; import 'package:cbl_ffi/cbl_ffi.dart'; import '../database/database.dart'; import '../database/database_configuration.dart'; import '../database/ffi_database.dart'; import '../document/document.dart'; import '../document/ffi_document.dart'; import '../document/proxy_document.dart'; import '../que...
package arc.scene.event; import arc.*; import arc.Graphics.Cursor.*; import arc.func.*; import arc.scene.*; import arc.scene.utils.*; public class HandCursorListener extends ClickListener{ public Boolp enabled = () -> true; public boolean checkEnabled = true; public HandCursorListener(Boolp enabled, bool...
require "sinatra" set :public_folder, "public" if ENV["PREDICTION_API"] != nil @@hostname = ENV["PREDICTION_API"] else @@hostname = "http://number-predictor-testing.local.pcfdev.io" end get "/" do erb :index end
import Ember from 'ember'; import HighchartsMixinMixin from 'ember-highcharts-mixin/mixins/highcharts-mixin'; import { module, test } from 'qunit'; let subject; module('Unit | Mixin | highcharts mixin', { beforeEach() { let SampleHighchartsComponent = Ember.Component.extend(HighchartsMixinMixin, { series:...
using BTCParser using Test using Ripemd using SHA using Base58 files = readdir(".") # use only files that are named test_*.jl and start with the newest filter!(x -> occursin(r"^test_.*\.jl$", x), files) sort!(files, by = x -> stat(x).mtime, rev = true) for f in files include(f) end
import * as React from 'react'; import { Text, Icon, Button } from '@deriv/components'; import { localize } from '@deriv/translations'; import Divider from 'Components/elements/divider'; import { TStringTranslation } from 'Types'; const GetSection: React.FC<TGetSection> = ({ icon, title, subtitle, trad...
<?php /* @var $this Controller */ ?> <?php $this->beginContent('//layouts/main'); ?> <div class="span9"> <div> <?php if(Yii::app()->user->hasFlash('warning')): ?> <div class="alert"> <button type="button" class="close" data-dismiss="alert">×</button> <?php echo Yii::app()->user->getFlash('warning');...
#!/bin/sh set -e PWD=$(dirname $(readlink -f "$0")) if [ -d "${SETUP_ENV:=${PWD}/setup-env.d}" ]; then for SCRIPT in $(ls "${SETUP_ENV}/"[0-9]*.sh | sort); do source ${SCRIPT} done fi # 安装 KubeSphere (端口 30880 默认密码 admin/P@88w0rd) install_kubephere() { info "install_kubephere..." if ! comman...
{-# LANGUAGE TemplateHaskell #-} module NewTTRS.Outcome where import Control.Lens import Data.Monoid data Outcome = Outcome { _outcomeWins, _outcomeLosses :: !Int } deriving (Eq, Show) makeLenses ''Outcome instance Monoid Outcome where mappend (Outcome w1 l1) (Outcome w2 l2) = Outcome (w1+w2) (l1+l2) mempty ...
## Pull request for release ``` - [ ] Bump version of `package.json` and `manifest.json` - `Bump version to X.Y.Z` - [ ] Update `package-lock.json` - `Update package-lock.json` - [ ] Update `CHANGELOG.md` - `Update CHANGELOG.md` ```
using System.Collections; using UnityEngine; public class CoinGeneration : MonoBehaviour { #region Variables [SerializeField] private float timer_cp; public float timer; private bool shouldApplyDebuff = false; public GameObject[] coinGroups; public Transform topPosition; [SerializeField] private RuntimeAnim...
<?php namespace Concrete\Tests; trait CreateClassMockTrait { /** * The method we use to create mocks. * * @var string */ private static $mockCreateMethod; /** * Returns a mock object for the specified class. * * @param string $className * * @return \PHPUnit_Fra...
package collectionsframework; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; import java.util.TreeMap; /** * Created by manishgiri on 4/15/17. */ public class MapTypes { private static void testMap(Map<Integer, String> map) { // add items to map map.put(3, "thr...
/** * replace icon fonts and clean map files * @param options */ export declare const clean: (options: any) => void; export declare const deleteFiles: (globFile?: string) => void; /** * generate * @param generator generator name * @param plopCfg plopCfg */ export declare const generate: (generator?: string, plop...
import test1 from 'src/assets/img/1.png' import test2 from 'src/assets/img/2.png' import test3 from 'src/assets/img/3.png' import test4 from 'src/assets/img/4.png' import test5 from 'src/assets/img/5.png' import test6 from 'src/assets/img/6.png' import anvil_base from 'src/assets/img/blocks/anvil_base.png' import anvil...
package zio.rocksdb import org.{ rocksdb => jrocks } import zio._ package object transaction { type Bytes = Array[Byte] type Transaction = Has[TransactionDB.TransactionService] type TransactionDB = Has[TransactionDB.Service] object TransactionDB { trait TransactionService { /** * ...
# Blocking-based Neighbor Sampling for Large-scale Graph Neural Networks ``` @inproceedings{bns_ijcai21, title = {Blocking-based Neighbor Sampling for Large-scale Graph Neural Networks}, author = {Yao, Kai-Lang and Li, Wu-Jun}, booktitle = {Proceedings of the Thirtieth International Joint Conference on Artificial Inte...
#pragma once #include "../valve_sdk/sdk.hpp" #include <DirectXMath.h> #define RAD2DEG(x) DirectX::XMConvertToDegrees(x) #define DEG2RAD(x) DirectX::XMConvertToRadians(x) namespace Math { int TIME_TO_TICKS(int dt); int TICKS_TO_TIME(int t); void CorrectMovement(QAngle vOldAngles, CUserCmd* pCmd, float fOldForwar...
[CmdletBinding()] Param( [Parameter(Mandatory=$true)] [string]$Alias, [string]$Path = "keystore.keystore" ) keytool -genkeypair -v -keystore "$Path" -alias "$Alias" -keyalg RSA -keysize 2048 -validity 10000
# 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 not u...
import PropTypes from 'prop-types'; export const languages = [ { languageId: 1, name: 'English' }, { languageId: 2, name: 'Turkish' }, { languageId: 3, name: 'Italian' } ]; export const nameToLanguage = (() => { const lanToIdMap = languages.reduce((acc, language) => ({ ...acc, [language.name]: language }), {}...
{- From https://codingbat.com/prob/p121193 Given a string, return the sum of the numbers appearing in the string, ignoring all other characters. A number is a series of 1 or more digit chars in a row. (Note: Character.isDigit(char) tests if a char is one of the chars '0', '1', .. '9'. Integer.parseInt(string) convert...
--- '@backstage/plugin-tech-radar': patch --- Fix mapping RadarEntry and Entry for moved and url attributes Fix clicking of links in the radar legend
Raspberry Pi ============ Presentation on cool projects to do with your Raspberry Pi: * Raspberry Weather * Hacking a Mitsubishi heatpump * Garage door opener
<?php namespace App\Models; use App\Traits\Taggable; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Tag extends Model { use HasFactory, Taggable; public function blogPosts() { return $this->morphedByMany(\App\Models\BlogPost::class, 'taggable...
// // WXBase.h // OutWork // // Created by 王鑫 on 2019/3/14. // Copyright © 2019年 王鑫. All rights reserved. // #ifndef WXBase_h #define WXBase_h #import "WXMacro.h" #import "WXBaseObject.h" #endif /* WXBase_h */
/* * Copyright 2018 Comcast Cable Communications Management, LLC * * 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 require...
{-# language ViewPatterns #-} import System.IO import Control.Monad import Data.Array import Data.List import Data.Maybe import Control.Applicative type P = (Int,Int) type A = Array P Char data D = S | E | N | W deriving (Eq, Show) move S (i,j) = (i,j+1) move N (i,j) = (i,j-1) move W (i,j) = (i-1,j) move E (i,j) = (i...
using System; using System.Collections; using System.Collections.Generic; using System.Text; using TMPro; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; public class Chat : MonoBehaviour { const string CHATBOX_PREFIX = "<font=\"Minecraft Regular SDF\"><mark=#00000065>"; /// <summary> ///...
rootProject.name = "k9-rapid" include("behov","losning","river") include("overfore-omsorgsdager") include("overfore-korona-omsorgsdager") include("fordele-omsorgsdager") include("midlertidig-alene")
class OrfModel < ActiveRecord::Base attr_accessible :aaseq, :description, :name, :naseq, :transcript_model_id belongs_to :transcript_model has_one :expression_level has_one :orthodb7_hit # has_one :inparanoid_hf_hc_group has_one :b2g_annotation has_one :rnaseq_set1_exp_level has_many :blast_nr_results...
<?php class Admin extends CI_Controller { public function __construct() { parent::__construct(); $this->load->model(''); if ($this->session->statut=='c') // c : statut visiteur {// pour utiliser redirect redirect('/client/connexion.php'); // pas les droits : redirection vers c...
# -*- coding: utf-8 -*- __author__ = 'ooo' __date__ = '2018/12/15 12:17' import time import argparse import shutil import os import random from datetime import datetime from collections import namedtuple from PIL import Image import warnings import torch from torch import nn from torch.utils import data import torchv...
export { default as Swatches } from './components/Swatches' export { default as Swatch } from './components/Swatch' export { default as SwatchToken } from './components/SwatchToken' export { default as SwatchValue } from './components/SwatchValue' export { default as ColorSwatch } from './components/ColorSwatch' export...
import '../widgets/TravelInfo.dart'; import '../widgets/reviewInfo.dart'; import 'package:flutter/material.dart'; class BuyTourInfoScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Stack( children: [ Image.asset('assets/canyon.jpg', ...
module BABYLON { // We're mainly based on the logic defined into the FreeCamera code export class VirtualJoysticksCamera extends FreeCamera { private _leftjoystick: VirtualJoystick; private _rightjoystick: VirtualJoystick; constructor(name: string, position: Vector3, scene: Scene) { ...
/* * Copyright 2019 The gRPC 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 applicable law or agree...
## 关于gohome ## go_http 有关http相关包的体验 ## go_mysql 有关mysql使用相关的体验 ## go_orm 有关go语言的orm使用相关的体验 ## go_restful/go_rest_json 有关go语言的restful框架使用相关的体验 ## go_template 有关go语言的template使用相关的体验 ## iris 有关go语言web框架iris使用相关的体验
package com.carrotgarden.sjs.junit import scala.collection.JavaConverters.asScalaBufferConverter import org.junit.{ BeforeClass, Test } import org.junit.runner.{ RunWith, Result, Runner, Description } import org.junit.runners.{ Suite => JUnit4Suite, ParentRunner } import org.junit.runners.model.{ RunnerBuilder, Stat...
package ru.spbau.jvm.scala.lecture07.model final class Module(val name: String) (implicit val project: Project)
import ivm from 'isolated-vm'; import { isolate } from './runtime'; declare const processInfo: any; const { lib } = ivm as any; export const { arch, platform, version } = processInfo; export const cwd = () => '.'; export const cpuUsage = () => ({ user: isolate.cpuTime, system: 0 }); export const hrtime = { bigint: () ...
package Paws::CodeGuruReviewer::AssociateRepository; use Moose; has ClientRequestToken => (is => 'ro', isa => 'Str'); has KMSKeyDetails => (is => 'ro', isa => 'Paws::CodeGuruReviewer::KMSKeyDetails'); has Repository => (is => 'ro', isa => 'Paws::CodeGuruReviewer::Repository', required => 1); has Tags => (is ...
import React, { createContext, useContext, useState } from 'react'; import type { AuthContextData, User, WithChildren } from './interfaces'; import { getStorageItem, removeStorageItem } from '../storage'; const AuthContext = createContext<AuthContextData>({} as AuthContextData); export function AuthProvider({ childre...
package com.softicar.sqml.generator.sqml; import com.softicar.platform.db.core.table.DbTableName; import com.softicar.sqml.generator.common.ISqmlFileSystemAccess; import java.util.Collection; /** * Configuration for the generation of a set of SQML files. * * @see SqmlFilesGenerator * @author Oliver Richers */ pu...
var Client = function() { var clientList = function() { $('.dataTables-example').DataTable({ pageLength: 25, responsive: true, dom: '<"html5buttons"B>lTfgitp', buttons: [ {extend: 'copy'}, {extend: 'csv'}, {ext...