code stringlengths 3 1.05M | repo_name stringlengths 4 116 | path stringlengths 3 942 | language stringclasses 30
values | license stringclasses 15
values | size int32 3 1.05M |
|---|---|---|---|---|---|
package bincache
import (
"archive/zip"
"bytes"
"crypto/sha256"
"encoding/hex"
"io"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"strings"
)
// Download a file from url and check with a sha1
func Download(url string) (string, error) {
path, err := os.UserCacheDir()
if err != nil {
return "", err
}
path... | EngineerBetter/concourse-up | util/bincache/bincache.go | GO | apache-2.0 | 1,871 |
/*
* Copyright 2005-2017 Dozer Project
*
* 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 ag... | STRiDGE/dozer | core/src/test/java/org/dozer/DozerInitializerTest.java | Java | apache-2.0 | 2,608 |
package algorithm.leet_76_90;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Created by songheng on 4/18/16.
*/
public class Subsets_78 {
public List<List<Integer>> subsets(int[] nums) {
List<List<Integer>> res = new ArrayList<>();
Arrays.sort(nums);
if... | songshu198907/LeetPractise | src/main/java/algorithm/leet_76_90/Subsets_78.java | Java | apache-2.0 | 1,032 |
import("etherpad.log");
import("plugins.openingDesign.hooks");
function openingDesignInit() {
this.hooks = ['modals', 'docbarItemsPad'];
this.description = 'openingDesign';
this.docbarItemsPad = hooks.docbarItemsPad;
this.modals = hooks.modals;
this.install = install;
this.uninstall = uninstall;
}
function inst... | OpeningDesign/SketchSpace | etherpad/src/plugins/openingDesign/main.js | JavaScript | apache-2.0 | 437 |
<?php
/**
* 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
... | lordelph/phrekyll | Phrekyll/Processor/Markdown.php | PHP | apache-2.0 | 4,255 |
# Hieracium speluncarum Arv.-Touv. SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Hieracium/Hieracium amplexicaule/ Syn. Hieracium speluncarum/README.md | Markdown | apache-2.0 | 189 |
/**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib 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 a... | stdlib-js/stdlib | lib/node_modules/@stdlib/stats/incr/mmpe/lib/main.js | JavaScript | apache-2.0 | 2,139 |
package v1
import (
kapi "github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1"
)
// ProjectList is a list of Project objects.
type ProjectList struct {
kapi.TypeMeta `json:",inline"`
kapi.ListMeta `json:"metadata,omitempty"`
Items []Project `json:"items"`
}
// These are internal finalizer values to Orig... | hingstarne/origin | pkg/project/api/v1/types.go | GO | apache-2.0 | 1,629 |
#
# 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... | MBoustani/climate | ocw/esgf/main.py | Python | apache-2.0 | 3,986 |
package org.schema.api.model.thing.creativeWork.article.newsArticle;
public class ReviewNewsArticle extends NewsArticle
{
} | omindra/schema_org_java_api | core_with_extensions/src/main/java/org/schema/api/model/thing/creativeWork/article/newsArticle/ReviewNewsArticle.java | Java | apache-2.0 | 124 |
/**
*
* @author greg (at) myrobotlab.org
*
* This file is part of MyRobotLab (http://myrobotlab.org).
*
* MyRobotLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version... | DarkRebel/myrobotlab | src/org/myrobotlab/control/ProxyGUI.java | Java | apache-2.0 | 2,022 |
class Timecop
# A data class for carrying around "time movement" objects. Makes it easy to keep track of the time
# movements on a simple stack.
class TimeStackItem #:nodoc:
attr_reader :mock_type
def initialize(mock_type, *args)
raise "Unknown mock_type #{mock_type}" unless [:freeze, :travel].... | masukomi/mobtvse | vendor/bundle/gems/timecop-0.4.5/lib/timecop/time_stack_item.rb | Ruby | apache-2.0 | 3,600 |
from datetime import datetime
from bson import ObjectId
class SettingsService(object):
def __init__(self, db):
self.db = db
self.settings = db.settings_collection
self._id = ObjectId("5bbbaee7bacf833c1203d7b3")
def save(self, item):
item['_id'] = self._id
item['create... | cackharot/fbeazt | src/foodbeazt/service/SettingsService.py | Python | apache-2.0 | 491 |
/*
* Copyright (c) 2010-2015 Evolveum
*
* 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 agre... | gureronder/midpoint | gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/resources/PageAdminResources.java | Java | apache-2.0 | 7,479 |
import { of } from 'rxjs';
import { CanActivate } from '@angular/router';
import { Injectable } from '@angular/core';
import { DomainService } from 'app/services/domain/domain.service';
import { GeneralModalService } from 'app/services/general-modal/general-modal.service';
import { MessageModal } from 'app/models/messa... | BVier/Taskana | web/src/app/guards/domain.guard.ts | TypeScript | apache-2.0 | 907 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Statistics of INTJ in UD_Basque... | UniversalDependencies/universaldependencies.github.io | treebanks/eu_bdt/eu_bdt-pos-INTJ.html | HTML | apache-2.0 | 15,006 |
# vim: et
require_relative 'base'
module Tui module Model
# Model for floating point number objects.
class Float < Base
# Constructor.
public
def initialize ( label, value = 0.0, ro = false )
super( label, value, ro )
if not ro
self.value = value # validation step
end
... | giorno/tui | src/model/float.rb | Ruby | apache-2.0 | 656 |
/**
*
*/
package net.java.dev.blog.action;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.java.dev.blog.security.ui.SecurityContextUtil;
import net.java.dev.blog.service.Blog;
import net.java.dev.blog.service.... | jeffyu/blogging | ims-web/src/main/java/net/java/dev/blog/action/BlogManagerController.java | Java | apache-2.0 | 2,522 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-alpine:3.13-run
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependenci... | nghiant2710/base-images | balena-base-images/python/beaglebone-green-gateway/alpine/3.13/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,146 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-debian:jessie-build
ENV NODE_VERSION 14.16.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "... | nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/debian/jessie/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,801 |
import React from 'react'
import PropTypes from 'prop-types'
import Immutable from 'immutable'
import { connect } from 'react-redux'
import { Link } from 'react-router-dom'
import NavigationPrompt from 'react-router-navigation-prompt'
import Switch from 'react-bootstrap-switch'
import {
generateUnique,
templateN... | mareklibra/userportal | src/components/VmDialog/index.js | JavaScript | apache-2.0 | 28,260 |
/* Copyright 2016 Sven van der Meer <vdmeer.sven@mykolab.com>
*
* 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 r... | vdmeer/skb-java-interfaces | src/main/java/de/vandermeer/skb/interfaces/coin/TailsErrorWithErrors.java | Java | apache-2.0 | 2,493 |
package com.prom.by.model;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import android.os.Parcel;
import android.os.Parcelable;
@Element(name = "order")
publ... | cliffroot/prom.by | project/src/com/prom/by/model/Order.java | Java | apache-2.0 | 6,736 |
package io.github.lijunguan.imgselector.model.entity;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.List;
/**
* Created by lijunguan on 2016/4/8
* email: lijunguan199210@gmail.com
* blog : https://lijunguan.github.io
*/
public class AlbumFolder implements Parcelable {
/**
* 相册... | lijunguan/AlbumSelector | imageseletor/src/main/java/io/github/lijunguan/imgselector/model/entity/AlbumFolder.java | Java | apache-2.0 | 2,209 |
/**
* Copyright 2017 The AMP HTML Authors. 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 require... | src-code/amphtml | extensions/amp-analytics/0.1/analytics-root.js | JavaScript | apache-2.0 | 15,094 |
package com.gudnam.bringluck.common;
import java.util.ArrayList;
import android.support.v4.app.FragmentActivity;
public class BLFragmentActivity extends FragmentActivity{
public static ArrayList<FragmentActivity> frgActList = new ArrayList<FragmentActivity>();
}
| gudnam/bringluck | bringluck/src/com/gudnam/bringluck/common/BLFragmentActivity.java | Java | apache-2.0 | 282 |
# Vicia bicolor Willd. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Fabales/Fabaceae/Vicia/Vicia bicolor/README.md | Markdown | apache-2.0 | 170 |
# Euproctis bipunctapex Npv SPECIES
#### Status
ACCEPTED
#### According to
Interim Register of Marine and Nonmarine Genera
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Viruses/Baculoviridae/Nucleopolyhedrovirus/Euproctis bipunctapex/README.md | Markdown | apache-2.0 | 191 |
# Lachemilla rupestris (Kunth) Rothm. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Lachemilla/Lachemilla rupestris/README.md | Markdown | apache-2.0 | 185 |
# Eupatorium turbacense Hieron. SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Ayapana turbacensis/ Syn. Eupatorium turbacense/README.md | Markdown | apache-2.0 | 186 |
# Viola suavis var. catalonica (W.Becker) M.Espeut VARIETY
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
Viola catalonica W.Becker
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Malpighiales/Violaceae/Viola/Viola suavis/Viola suavis catalonica/README.md | Markdown | apache-2.0 | 219 |
# Dictyoclavator L.J.Grambast GENUS
#### Status
ACCEPTED
#### According to
World Register of Marine Species
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Chlorophyta/Charophyceae/Charales/Clavatoraceae/Dictyoclavator/README.md | Markdown | apache-2.0 | 176 |
# Pharmacosycea hernandezii Liebm. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Moraceae/Pharmacosycea/Pharmacosycea hernandezii/README.md | Markdown | apache-2.0 | 182 |
# Spiraea bodinieri var. concolor VARIETY
#### Status
DOUBTFUL
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Spiraea/Spiraea bodinieri/Spiraea bodinieri concolor/README.md | Markdown | apache-2.0 | 189 |
package com.coderfun.library;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
su... | coderFun/RadarView | library/src/androidTest/java/com/coderfun/library/ApplicationTest.java | Java | apache-2.0 | 351 |
class Addindex < ActiveRecord::Migration
def self.up
add_index :assignments, [:assign_date,:status]
add_index :assignments, :title
end
def self.down
remove_index :assignments, [:assign_date,:status]
remove_index :assignments, :title
end
end
| xiviwo/config_track | db/migrate/20111013080753_addindex.rb | Ruby | apache-2.0 | 260 |
/*
* Meego-handset-video is an video player for MeeGo handset.
* Copyright (C) 2010, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
#include <QProce... | dudochkin-victor/handset-video | src/xdgpath.cpp | C++ | apache-2.0 | 1,217 |
package ar.edu.ungs.commons.exception;
public class JdbcBatchException extends Exception {
private static final long serialVersionUID = 1;
private String codigoDeError;
/**
* Constructor sin Argumentos
*/
public JdbcBatchException() {
super();
}
/**
* Contruct... | alefherrera/sisalud | SiSaludSRL/src/main/java/ar/edu/ungs/commons/exception/JdbcBatchException.java | Java | apache-2.0 | 2,039 |
define({
"map": {
"error": "无法创建地图",
"licenseError": {
"message": "您的帐户无权使用非公共的可配置应用程序。 请联系您的组织管理员为您分配包含基本应用程序或附加基本应用程序许可的用户类型。",
"title": "未经许可"
}
},
"viewer": {
"content_title": "过滤器",
"button_text": "应用",
"filterInstructions": "通过指定值来过滤图层。",
"filterOr": "以下任意表达式必须为 true。... | Esri/InteractiveFilter | js/nls/zh-CN/resources.js | JavaScript | apache-2.0 | 1,195 |
/*
* Copyright (C) 2013 salesforce.com, 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 ... | lhong375/aura | auradocs-integration-test/src/test/java/org/auraframework/components/auradocs/AuradocsExampleUITest.java | Java | apache-2.0 | 8,515 |
<!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_191) on Wed Jun 05 15:47:25 CEST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class se.litsec.ei... | litsec/eidas-opensaml | docs/javadoc/opensaml3/1.4.0/se/litsec/eidas/opensaml/metadata/class-use/MetadataServiceListSignatureValidator.html | HTML | apache-2.0 | 5,074 |
<?php
/**
* Created by PhpStorm.
* User: yaolihui
* Date: 2018/2/11
* Time: 10:46
*/
namespace Report\Controller;
class ApiController extends WebInfoController {
public function index(){
//定义可以查的平台
$branch=['全部','保险服务','安鑫保','车险APP','易鑫车服','微信','第三方'];
//接收传递参数
$_SESSION['branc... | yaolihui129/Xinda | Apps/Report/Controller/ApiController.class.php | PHP | apache-2.0 | 1,723 |
<title>ウェブメールヘルプガイド</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<LINK href="javascript/stylehelp.css" rel=stylesheet type=text/css>
<font face="Verdana, Arial" size="+1">
メールボックスオプション</font> [ <a href="parse.php?file=html/$this->Language/help/file.html">ヘルプインデックス</a> ]
<hr no... | BigBlueHat/atmailopen | html/japanese/help/newmbox.html | HTML | apache-2.0 | 1,677 |
package com.zlate87.sample_transport_app;
import android.annotation.TargetApi;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.support.v7.widget.RecyclerView;
import... | Zlate87/sample-transport-app | app/src/androidTest/java/com/zlate87/sample_transport_app/CustomMatchers.java | Java | apache-2.0 | 5,643 |
/*
* 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 ... | bowenli86/flink | flink-table/flink-table-planner-blink/src/main/scala/org/apache/flink/table/planner/plan/utils/AggregateUtil.scala | Scala | apache-2.0 | 29,858 |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | JoyIfBam5/aws-sdk-cpp | aws-cpp-sdk-ssm/include/aws/ssm/model/GetMaintenanceWindowTaskResult.h | C | apache-2.0 | 29,007 |
/*
* Copyright 2013 Guidewire Software, Inc.
*/
package gw.test.servlet;
import gw.config.CommonServices;
import gw.lang.reflect.IConstructorInfo;
import gw.lang.reflect.IParameterInfo;
import gw.lang.reflect.IType;
import gw.lang.reflect.ITypeInfo;
import gw.lang.reflect.TypeSystem;
import gw.lang.reflect.gs.IGosu... | gosu-lang/old-gosu-repo | gosu-test-api/src/main/java/gw/test/servlet/RemoteTestServlet.java | Java | apache-2.0 | 20,725 |
package net.rubygrapefruit.platform.terminal;
/**
* Receives terminal input.
*/
public interface TerminalInputListener {
enum Key {
// Order is significant, used by Windows native code
Enter,
UpArrow,
DownArrow,
LeftArrow,
RightArrow,
Home,
End,
... | adammurdoch/native-platform | native-platform/src/main/java/net/rubygrapefruit/platform/terminal/TerminalInputListener.java | Java | apache-2.0 | 723 |
/*
* Copyright 2012 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 ap... | filip26/api-machine | src/test/java/org/sprintapi/api/http/servlet/todo/action/TodoReadItemAction.java | Java | apache-2.0 | 1,529 |
#
# Cookbook Name:: ratpoison
# Recipe:: default
#
# Copyright 2014, Shuberg Philis B.V.
#
# 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
#
#... | miguelaferreira/ratpoison | recipes/default.rb | Ruby | apache-2.0 | 702 |
using System.Text;
using Google.GData.Client;
namespace Google.GData.ContentForShopping
{
/// <summary>
/// A subclass of FeedQuery, to create a ContentForShopping managedaccounts
/// query URI. Provides public properties that describe the different
/// aspects of the URI, as well as a composite URI.
... | jonny-novikov/google-gdata | src/contentforshopping/managedaccountsquery.cs | C# | apache-2.0 | 1,341 |
/* 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... | marcus-nl/flowable-engine | modules/flowable-cmmn-json-converter/src/main/java/org/flowable/cmmn/editor/json/converter/CaseTaskJsonConverter.java | Java | apache-2.0 | 3,292 |
//===---------- MIRVRegNamerUtils.cpp - MIR VReg Renaming Utilities -------===//
//
// 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-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | GPUOpen-Drivers/llvm | lib/CodeGen/MIRVRegNamerUtils.cpp | C++ | apache-2.0 | 11,427 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="shortcut icon" type="image/x-icon" href="../../../../../../../favic... | gudnam/bringluck | google_play_services/docs/reference/com/google/android/gms/maps/model/StreetViewPanoramaOrientation.Builder.html | HTML | apache-2.0 | 48,054 |
package eu.leads.processor.common.infinispan;
import org.infinispan.commons.util.concurrent.NotifyingFuture;
import java.util.Iterator;
import java.util.Queue;
import java.util.Set;
import java.util.concurrent.ExecutionException;
/**
* Created by vagvaz on 19/05/15.
*/
public class ClearCompletedRunnable extends T... | leads-project/multicloud-mr | common/src/main/java/eu/leads/processor/common/infinispan/ClearCompletedRunnable.java | Java | apache-2.0 | 1,476 |
# Oocystis asymmetrica W. West & G.S. West SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Chlorophyta/Chlorophyceae/Chlorococcales/Oocystaceae/Oocystis/Oocystis asymmetrica/README.md | Markdown | apache-2.0 | 198 |
package com.babylove.www.spring.ioc.demo4;
import org.junit.Test;
import com.babylove.www.JUnitBase;
public class Demo4Test extends JUnitBase{
public Demo4Test() {
super("classpath:/ioc/demo4.xml");
}
/**
* 直接执行即可,/iocAndAop/demo4.xml里面声明的bean的方法,会在初始化时候执行
*/
@Test
public void applicationContextAwareAn... | l81893521/spring-example | src/test/java/com/babylove/www/spring/ioc/demo4/Demo4Test.java | Java | apache-2.0 | 403 |
/*
* Copyright 2015 "Henry Tao <hi@henrytao.me>"
*
* 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 ... | eneim/smooth-app-bar-layout | sample/src/main/java/me/henrytao/smoothappbarlayoutdemo/fragment/DummyNestedScrollViewFragment.java | Java | apache-2.0 | 3,280 |
# icc_vasu
| temper55/icc_vasu | README.md | Markdown | apache-2.0 | 11 |
require 'spec_helper'
describe file('/etc/scylla/scylla.yaml') do
it { should be_file }
its(:content_as_yaml) do
should include('listen_address' => '123.135.147.159')
end
its(:content_as_yaml) do
should include('rpc_address' => '0.0.0.0')
end
its(:content_as_yaml) do
should include('broadcast_r... | dice-project/DICE-Chef-Repository | cookbooks/scylla/test/integration/config/serverspec/config_spec.rb | Ruby | apache-2.0 | 1,055 |
using System;
using System.IO;
using FluentAssertions;
using JetBrains.Annotations;
using TestableFileSystem.Fakes.Builders;
using TestableFileSystem.Interfaces;
using Xunit;
namespace TestableFileSystem.Fakes.Tests.Specs.DiskSpace
{
public sealed class InsufficientSpaceSpecs
{
[Fact]
private ... | bkoelman/TestableFileSystem | src/Fakes.Tests/Specs/DiskSpace/InsufficientSpaceSpecs.cs | C# | apache-2.0 | 11,685 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Sun Jan 10 17:36:35 PST 2016 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.f... | FasterXML/jackson-jr | docs/javadoc/jr-objects/2.7/com/fasterxml/jackson/jr/ob/comp/class-use/SequenceComposer.html | HTML | apache-2.0 | 9,688 |
package com.zandero.rest;
import com.zandero.rest.test.*;
import com.zandero.rest.test.json.Dummy;
import com.zandero.utils.extra.JsonUtils;
import io.vertx.core.buffer.Buffer;
import io.vertx.ext.web.Router;
import io.vertx.junit5.*;
import org.junit.jupiter.api.*;
import org.junit.jupiter.api.extension.ExtendWith;
... | zandero/rest.vertx | src/test/java/com/zandero/rest/RouteRegistrationTest.java | Java | apache-2.0 | 2,744 |
/*
* SHS -- The Scalable Hyperlink Store
*
* Copyright (c) Microsoft Corporation
* 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... | MicrosoftResearch/SHS | ASP/ASP.cs | C# | apache-2.0 | 5,581 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media... | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_15_testAbaNumberCheck_34022_bad_1a.html | HTML | apache-2.0 | 10,978 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media... | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_09_testAbaNumberCheck_18430_bad_8q0.html | HTML | apache-2.0 | 10,987 |
<!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 May 13 11:47:55 EDT 2015 -->
<title>Uses of Class org.apache.cassandra.thrift.Cassandra.Processor.system_add_keyspace (apach... | anuragkapur/cassandra-2.1.2-ak-skynet | apache-cassandra-2.0.15/javadoc/org/apache/cassandra/thrift/class-use/Cassandra.Processor.system_add_keyspace.html | HTML | apache-2.0 | 4,627 |
package ca.uhn.fhir.rest.server;
/*
* #%L
* HAPI FHIR - Core Library
* %%
* Copyright (C) 2014 - 2015 University Health Network
* %%
* 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
* ... | bjornna/hapi-fhir | hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java | Java | apache-2.0 | 25,340 |
/***
Copyright (c) 2012-2015 CommonsWare, 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 w... | janzoner/cw-omnibus | MapsV2/Popups/app/src/main/java/com/commonsware/android/mapsv2/popups/AbstractMapActivity.java | Java | apache-2.0 | 5,111 |
/*
* Copyright 2000-2017 JetBrains s.r.o.
*
* 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 agre... | apixandru/intellij-community | java/java-impl/src/com/intellij/refactoring/extractMethod/ExtractMethodProcessor.java | Java | apache-2.0 | 90,417 |
#
# Copyright 2021 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in com... | Tpo76/centreon-plugins | hardware/devices/polycom/trio/restapi/mode/callsrt.pm | Perl | apache-2.0 | 6,715 |
#
# 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... | wooga/airflow | airflow/ti_deps/deps/trigger_rule_dep.py | Python | apache-2.0 | 10,691 |
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "l... | rafd123/aws-sdk-net | sdk/src/Services/EC2/Generated/Model/RouteTableAssociation.cs | C# | apache-2.0 | 3,312 |
package io.codearcs.candlestack.aws.rds;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import io.codearcs.candlestack.CandlestackPropertiesException;
import io.codearcs.candlestack.MetricsReaderWriter;
import io.codearcs.candlestack.aws.CloudWatchStatistic;
import io.codearcs.candlestack.aw... | CodeArcsInc/candlestack | src/main/java/io/codearcs/candlestack/aws/rds/RDSCloudWatchMetric.java | Java | apache-2.0 | 5,836 |
# 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
# distributed under t... | stackforge/python-openstacksdk | openstack/baremetal_introspection/v1/_proxy.py | Python | apache-2.0 | 7,038 |
/*
** Copyright 2011, The Android Open Source Project
**
** 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 b... | indashnet/InDashNet.Open.UN2000 | android/frameworks/base/services/java/com/android/server/accessibility/TouchExplorer.java | Java | apache-2.0 | 81,944 |
/*
* Copyright 2014-2019 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... | jentfoo/aws-sdk-java | aws-java-sdk-redshift/src/main/java/com/amazonaws/services/redshift/model/VpcSecurityGroupMembership.java | Java | apache-2.0 | 5,374 |
# Marasmius olneii Berk. & M.A. Curtis SPECIES
#### Status
ACCEPTED
#### According to
Index Fungorum
#### Published in
null
#### Original name
Marasmius olneii Berk. & M.A. Curtis
### Remarks
null | mdoering/backbone | life/Fungi/Basidiomycota/Agaricomycetes/Agaricales/Marasmiaceae/Marasmius/Marasmius olneii/README.md | Markdown | apache-2.0 | 201 |
# Humaria sublivida Sacc. & Speg., 1878 SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Michelia 1(no. 4): 443 (1878)
#### Original name
Humaria sublivida Sacc. & Speg., 1878
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Pezizomycetes/Pezizales/Pyronemataceae/Trichophaea/Trichophaea sublivida/ Syn. Humaria sublivida/README.md | Markdown | apache-2.0 | 252 |
# Hymenoscyphus culmicola (Desm.) Kuntze, 1898 SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Revis. gen. pl. (Leipzig) 3: 485 (1898)
#### Original name
null
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Leotiomycetes/Helotiales/Helotiaceae/Crocicreas/Crocicreas culmicola/ Syn. Hymenoscyphus culmicola/README.md | Markdown | apache-2.0 | 236 |
# Helmisporium palmetto W.R. Gerard SPECIES
#### Status
SYNONYM
#### According to
Index Fungorum
#### Published in
null
#### Original name
Helmisporium palmetto W.R. Gerard
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Spiropes/Spiropes palmetto/ Syn. Helmisporium palmetto/README.md | Markdown | apache-2.0 | 194 |
# Lechenaultia glauca Lindl. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Goodeniaceae/Lechenaultia/Lechenaultia glauca/README.md | Markdown | apache-2.0 | 176 |
# Donezellidae FAMILY
#### Status
ACCEPTED
#### According to
Paleobiology Database
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Chlorophyta/Chlorophyceae/Donezellidae/README.md | Markdown | apache-2.0 | 151 |
# Trichinium holosericeum Moq. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Caryophyllales/Amaranthaceae/Trichinium/Trichinium holosericeum/README.md | Markdown | apache-2.0 | 178 |
# Cattleya ×devoniana Hort. ex Will. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Asparagales/Orchidaceae/Cattleya/Cattleya devoniana/README.md | Markdown | apache-2.0 | 185 |
# Dioscorea mundtii Baker SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Dioscoreales/Dioscoreaceae/Dioscorea/Dioscorea mundtii/README.md | Markdown | apache-2.0 | 173 |
<?php namespace DMA\Friends\API\Resources;
use Response;
use Request;
use Validator;
use DMA\Friends\Models\Rating;
use DMA\Friends\Models\Activity;
use DMA\Friends\Classes\API\BaseResource;
use DMA\Friends\API\Transformers\UserProfileTransformer;
use RainLab\User\Models\User;
class RatingResource extends BaseResourc... | DenverArtMuseum/OctoberFriends | api/resources/RatingResource.php | PHP | apache-2.0 | 12,864 |
/*
* Copyright (c) 2013 Mike Heath. 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 re... | cloudfoundry-community/java-nats | client/src/main/java/nats/codec/ServerFrameEncoder.java | Java | apache-2.0 | 3,415 |
<!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_11) on Mon Jan 26 08:49:14 GMT 2015 -->
<title>Uses of Class org.primaresearch.clc.phd.repository.search.matching.gui.model.ActivityMatchValueT... | PRImA-Research-Lab/semantic-labelling | doc/org/primaresearch/clc/phd/repository/search/matching/gui/model/class-use/ActivityMatchValueTreeItem.html | HTML | apache-2.0 | 5,199 |
var CONFIG = {
// remote URL education target
'REMOTE_URL': 'http://berndmalle.com/anonymization/adults',
// remote target
'REMOTE_TARGET': 'education', //'marital', //'income'
// The path to the input dataset
'INPUT_FILE' : './test/io/test_input/house_data.csv',
// CSV TRIM RegExp, if necessary
'TRIM':... | cassinius/AnonymizationJS | src/config/SaNGreeAConfig_house.ts | TypeScript | apache-2.0 | 1,589 |
require 'crack'
require 'json'
require 'core/make_json'
module Blix
# this is a parser to parse and format json rpc messages.
#
class JsonRpcParser < AbstractParser
def format_request(request)
{"jsonrpc"=>"2.0", "method"=>request.method, "params"=>request.parameters, "id"=>request.id }.to_... | realbite/blix | lib/blix/core/json_rpc_parser.rb | Ruby | apache-2.0 | 6,698 |
---
layout: page
title: Seattle Police Officer 7401 George M. Derezes
permalink: /information/agencies/city_of_seattle/seattle_police_department/copbook/7401/
---
**Age as of Feb. 24, 2016:** 30
| seattlepublicrecords/seattlepublicrecords.github.io | information/agencies/city_of_seattle/seattle_police_department/copbook/7401/index.md | Markdown | apache-2.0 | 196 |
package org.docksidestage.app.web.es.product;
public class EsProductAddForm {
public String productDescription;
public String productCategoryCode;
public String productHandleCode;
public String productName;
public Integer regularPrice;
public String productStatusCode;
}
| dbflute-example/dbflute-example-with-non-rdb | src/main/java/org/docksidestage/app/web/es/product/EsProductAddForm.java | Java | apache-2.0 | 298 |
using UnityEngine;
using System.Collections;
public class Wander : MonoBehaviour
{
private Vector3 tarPos;
public float movementSpeed = 5.0f;
private float rotSpeed = 2.0f;
private float minX, maxX, minZ, maxZ;
public float wanderRadius = 30.0f;
// Use this for initialization
void Start ()
{
... | Guityyo/minerparty | Assets/_Scripts/AIWandering/Wander.cs | C# | apache-2.0 | 1,056 |
/*
* Copyright 2017-2022 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... | aws/aws-sdk-java | aws-java-sdk-inspector2/src/main/java/com/amazonaws/services/inspector2/model/GetMemberResult.java | Java | apache-2.0 | 3,656 |
package com.ecrm.DAO;
import org.springframework.stereotype.Repository;
/**
* Created by Htang on 7/10/2015.
*/
@Repository
public interface ScheduleConfigDAO {
}
| tranquang9a1/ECRM | App/ECRM/src/main/java/com/ecrm/DAO/ScheduleConfigDAO.java | Java | apache-2.0 | 177 |
package clarifai
// Response is a universal Clarifai API response object.
type Response struct {
Status *ServiceStatus `json:"status,omitempty"`
Outputs []*Output `json:"outputs,omitempty"`
Input *Input `json:"input,omitempty"` // Request for one input.
Inputs []*Input ... | mpmlj/clarifai-client-go | response.go | GO | apache-2.0 | 667 |
/**
* Copyright (C) 2015 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.calc.runner;
import static com.opengamma.strata.basics.currency.Currency.EUR;
import static com.opengamma.strata.basics.currency.Currency.GBP;
import st... | ChinaQuants/Strata | modules/calc/src/test/java/com/opengamma/strata/calc/runner/CalculationTaskTest.java | Java | apache-2.0 | 31,891 |
// Copyright 2014 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 required by applicable ... | rzagabe/bazel | src/main/java/com/google/devtools/build/lib/actions/MutableActionGraph.java | Java | apache-2.0 | 6,415 |
package com.taoswork.tallycheck.general.solution.threading;
import com.taoswork.tallycheck.general.solution.quickinterface.IValueMaker;
/**
* Created by Gao Yuan on 2015/8/16.
*/
public class ThreadLocalHelper {
public static <T> ThreadLocal<T> createThreadLocal(final Class<T> type, final IValueMaker<T> valueMa... | tallycheck/general | general-solution/src/main/java/com/taoswork/tallycheck/general/solution/threading/ThreadLocalHelper.java | Java | apache-2.0 | 1,473 |