repo_name stringlengths 4 116 | path stringlengths 3 942 | size stringlengths 1 7 | content stringlengths 3 1.05M | license stringclasses 15
values |
|---|---|---|---|---|
EngineerBetter/concourse-up | util/bincache/bincache.go | 1871 | 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... | apache-2.0 |
STRiDGE/dozer | core/src/test/java/org/dozer/DozerInitializerTest.java | 2608 | /*
* 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... | apache-2.0 |
songshu198907/LeetPractise | src/main/java/algorithm/leet_76_90/Subsets_78.java | 1032 | 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... | apache-2.0 |
OpeningDesign/SketchSpace | etherpad/src/plugins/openingDesign/main.js | 437 | 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... | apache-2.0 |
lordelph/phrekyll | Phrekyll/Processor/Markdown.php | 4255 | <?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
... | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Hieracium/Hieracium amplexicaule/ Syn. Hieracium speluncarum/README.md | 189 | # Hieracium speluncarum Arv.-Touv. SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
stdlib-js/stdlib | lib/node_modules/@stdlib/stats/incr/mmpe/lib/main.js | 2139 | /**
* @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... | apache-2.0 |
hingstarne/origin | pkg/project/api/v1/types.go | 1629 | 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... | apache-2.0 |
MBoustani/climate | ocw/esgf/main.py | 3986 | #
# 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... | apache-2.0 |
omindra/schema_org_java_api | core_with_extensions/src/main/java/org/schema/api/model/thing/creativeWork/article/newsArticle/ReviewNewsArticle.java | 124 | package org.schema.api.model.thing.creativeWork.article.newsArticle;
public class ReviewNewsArticle extends NewsArticle
{
} | apache-2.0 |
DarkRebel/myrobotlab | src/org/myrobotlab/control/ProxyGUI.java | 2022 | /**
*
* @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... | apache-2.0 |
masukomi/mobtvse | vendor/bundle/gems/timecop-0.4.5/lib/timecop/time_stack_item.rb | 3600 |
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].... | apache-2.0 |
cackharot/fbeazt | src/foodbeazt/service/SettingsService.py | 491 | 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... | apache-2.0 |
gureronder/midpoint | gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/resources/PageAdminResources.java | 7479 | /*
* 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... | apache-2.0 |
BVier/Taskana | web/src/app/guards/domain.guard.ts | 907 | 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... | apache-2.0 |
UniversalDependencies/universaldependencies.github.io | treebanks/eu_bdt/eu_bdt-pos-INTJ.html | 15006 | <!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... | apache-2.0 |
giorno/tui | src/model/float.rb | 656 |
# 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
... | apache-2.0 |
jeffyu/blogging | ims-web/src/main/java/net/java/dev/blog/action/BlogManagerController.java | 2522 | /**
*
*/
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.... | apache-2.0 |
nghiant2710/base-images | balena-base-images/python/beaglebone-green-gateway/alpine/3.13/3.6.12/run/Dockerfile | 4146 | # 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... | apache-2.0 |
nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/debian/jessie/14.16.1/build/Dockerfile | 2801 | # 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 "... | apache-2.0 |
mareklibra/userportal | src/components/VmDialog/index.js | 28260 | 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... | apache-2.0 |
vdmeer/skb-java-interfaces | src/main/java/de/vandermeer/skb/interfaces/coin/TailsErrorWithErrors.java | 2493 | /* 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... | apache-2.0 |
cliffroot/prom.by | project/src/com/prom/by/model/Order.java | 6736 | 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... | apache-2.0 |
lijunguan/AlbumSelector | imageseletor/src/main/java/io/github/lijunguan/imgselector/model/entity/AlbumFolder.java | 2209 | 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 {
/**
* 相册... | apache-2.0 |
src-code/amphtml | extensions/amp-analytics/0.1/analytics-root.js | 15094 | /**
* 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... | apache-2.0 |
gudnam/bringluck | bringluck/src/com/gudnam/bringluck/common/BLFragmentActivity.java | 282 | 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>();
}
| apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Fabales/Fabaceae/Vicia/Vicia bicolor/README.md | 170 | # Vicia bicolor Willd. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Viruses/Baculoviridae/Nucleopolyhedrovirus/Euproctis bipunctapex/README.md | 191 | # Euproctis bipunctapex Npv SPECIES
#### Status
ACCEPTED
#### According to
Interim Register of Marine and Nonmarine Genera
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Lachemilla/Lachemilla rupestris/README.md | 185 | # Lachemilla rupestris (Kunth) Rothm. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Ayapana turbacensis/ Syn. Eupatorium turbacense/README.md | 186 | # Eupatorium turbacense Hieron. SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Malpighiales/Violaceae/Viola/Viola suavis/Viola suavis catalonica/README.md | 219 | # 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 | apache-2.0 |
mdoering/backbone | life/Plantae/Chlorophyta/Charophyceae/Charales/Clavatoraceae/Dictyoclavator/README.md | 176 | # Dictyoclavator L.J.Grambast GENUS
#### Status
ACCEPTED
#### According to
World Register of Marine Species
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Moraceae/Pharmacosycea/Pharmacosycea hernandezii/README.md | 182 | # Pharmacosycea hernandezii Liebm. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Spiraea/Spiraea bodinieri/Spiraea bodinieri concolor/README.md | 189 | # Spiraea bodinieri var. concolor VARIETY
#### Status
DOUBTFUL
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
coderFun/RadarView | library/src/androidTest/java/com/coderfun/library/ApplicationTest.java | 351 | 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... | apache-2.0 |
xiviwo/config_track | db/migrate/20111013080753_addindex.rb | 260 | 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
| apache-2.0 |
dudochkin-victor/handset-video | src/xdgpath.cpp | 1217 | /*
* 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... | apache-2.0 |
alefherrera/sisalud | SiSaludSRL/src/main/java/ar/edu/ungs/commons/exception/JdbcBatchException.java | 2039 | 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... | apache-2.0 |
Esri/InteractiveFilter | js/nls/zh-CN/resources.js | 1195 | define({
"map": {
"error": "无法创建地图",
"licenseError": {
"message": "您的帐户无权使用非公共的可配置应用程序。 请联系您的组织管理员为您分配包含基本应用程序或附加基本应用程序许可的用户类型。",
"title": "未经许可"
}
},
"viewer": {
"content_title": "过滤器",
"button_text": "应用",
"filterInstructions": "通过指定值来过滤图层。",
"filterOr": "以下任意表达式必须为 true。... | apache-2.0 |
lhong375/aura | auradocs-integration-test/src/test/java/org/auraframework/components/auradocs/AuradocsExampleUITest.java | 8515 | /*
* 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 ... | apache-2.0 |
litsec/eidas-opensaml | docs/javadoc/opensaml3/1.4.0/se/litsec/eidas/opensaml/metadata/class-use/MetadataServiceListSignatureValidator.html | 5074 | <!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... | apache-2.0 |
yaolihui129/Xinda | Apps/Report/Controller/ApiController.class.php | 1723 | <?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... | apache-2.0 |
BigBlueHat/atmailopen | html/japanese/help/newmbox.html | 1677 | <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... | apache-2.0 |
Zlate87/sample-transport-app | app/src/androidTest/java/com/zlate87/sample_transport_app/CustomMatchers.java | 5643 | 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... | apache-2.0 |
bowenli86/flink | flink-table/flink-table-planner-blink/src/main/scala/org/apache/flink/table/planner/plan/utils/AggregateUtil.scala | 29858 | /*
* 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 ... | apache-2.0 |
JoyIfBam5/aws-sdk-cpp | aws-cpp-sdk-ssm/include/aws/ssm/model/GetMaintenanceWindowTaskResult.h | 29007 | /*
* 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... | apache-2.0 |
gosu-lang/old-gosu-repo | gosu-test-api/src/main/java/gw/test/servlet/RemoteTestServlet.java | 20725 | /*
* 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... | apache-2.0 |
adammurdoch/native-platform | native-platform/src/main/java/net/rubygrapefruit/platform/terminal/TerminalInputListener.java | 723 | 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,
... | apache-2.0 |
filip26/api-machine | src/test/java/org/sprintapi/api/http/servlet/todo/action/TodoReadItemAction.java | 1529 | /*
* 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... | apache-2.0 |
miguelaferreira/ratpoison | recipes/default.rb | 702 | #
# 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
#
#... | apache-2.0 |
jonny-novikov/google-gdata | src/contentforshopping/managedaccountsquery.cs | 1341 | 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.
... | apache-2.0 |
marcus-nl/flowable-engine | modules/flowable-cmmn-json-converter/src/main/java/org/flowable/cmmn/editor/json/converter/CaseTaskJsonConverter.java | 3292 | /* 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... | apache-2.0 |
GPUOpen-Drivers/llvm | lib/CodeGen/MIRVRegNamerUtils.cpp | 11427 | //===---------- 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
//
//===---------------------------... | apache-2.0 |
gudnam/bringluck | google_play_services/docs/reference/com/google/android/gms/maps/model/StreetViewPanoramaOrientation.Builder.html | 48054 | <!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... | apache-2.0 |
leads-project/multicloud-mr | common/src/main/java/eu/leads/processor/common/infinispan/ClearCompletedRunnable.java | 1476 | 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... | apache-2.0 |
mdoering/backbone | life/Plantae/Chlorophyta/Chlorophyceae/Chlorococcales/Oocystaceae/Oocystis/Oocystis asymmetrica/README.md | 198 | # 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 | apache-2.0 |
l81893521/spring-example | src/test/java/com/babylove/www/spring/ioc/demo4/Demo4Test.java | 403 | 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... | apache-2.0 |
eneim/smooth-app-bar-layout | sample/src/main/java/me/henrytao/smoothappbarlayoutdemo/fragment/DummyNestedScrollViewFragment.java | 3280 | /*
* 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 ... | apache-2.0 |
temper55/icc_vasu | README.md | 11 | # icc_vasu
| apache-2.0 |
dice-project/DICE-Chef-Repository | cookbooks/scylla/test/integration/config/serverspec/config_spec.rb | 1055 | 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... | apache-2.0 |
bkoelman/TestableFileSystem | src/Fakes.Tests/Specs/DiskSpace/InsufficientSpaceSpecs.cs | 11685 | 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 ... | apache-2.0 |
FasterXML/jackson-jr | docs/javadoc/jr-objects/2.7/com/fasterxml/jackson/jr/ob/comp/class-use/SequenceComposer.html | 9688 | <!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... | apache-2.0 |
zandero/rest.vertx | src/test/java/com/zandero/rest/RouteRegistrationTest.java | 2744 | 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;
... | apache-2.0 |
MicrosoftResearch/SHS | ASP/ASP.cs | 5581 | /*
* 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... | apache-2.0 |
dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_15_testAbaNumberCheck_34022_bad_1a.html | 10978 | <!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... | apache-2.0 |
dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_09_testAbaNumberCheck_18430_bad_8q0.html | 10987 | <!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... | apache-2.0 |
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 | 4627 | <!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... | apache-2.0 |
bjornna/hapi-fhir | hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java | 25340 | 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
* ... | apache-2.0 |
janzoner/cw-omnibus | MapsV2/Popups/app/src/main/java/com/commonsware/android/mapsv2/popups/AbstractMapActivity.java | 5111 | /***
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... | apache-2.0 |
apixandru/intellij-community | java/java-impl/src/com/intellij/refactoring/extractMethod/ExtractMethodProcessor.java | 90417 | /*
* 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... | apache-2.0 |
Tpo76/centreon-plugins | hardware/devices/polycom/trio/restapi/mode/callsrt.pm | 6715 | #
# 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... | apache-2.0 |
wooga/airflow | airflow/ti_deps/deps/trigger_rule_dep.py | 10691 | #
# 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... | apache-2.0 |
rafd123/aws-sdk-net | sdk/src/Services/EC2/Generated/Model/RouteTableAssociation.cs | 3312 | /*
* 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... | apache-2.0 |
CodeArcsInc/candlestack | src/main/java/io/codearcs/candlestack/aws/rds/RDSCloudWatchMetric.java | 5836 | 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... | apache-2.0 |
stackforge/python-openstacksdk | openstack/baremetal_introspection/v1/_proxy.py | 7038 | # 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... | apache-2.0 |
indashnet/InDashNet.Open.UN2000 | android/frameworks/base/services/java/com/android/server/accessibility/TouchExplorer.java | 81944 | /*
** 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... | apache-2.0 |
jentfoo/aws-sdk-java | aws-java-sdk-redshift/src/main/java/com/amazonaws/services/redshift/model/VpcSecurityGroupMembership.java | 5374 | /*
* 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... | apache-2.0 |
mdoering/backbone | life/Fungi/Basidiomycota/Agaricomycetes/Agaricales/Marasmiaceae/Marasmius/Marasmius olneii/README.md | 201 | # 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 | apache-2.0 |
mdoering/backbone | life/Fungi/Ascomycota/Pezizomycetes/Pezizales/Pyronemataceae/Trichophaea/Trichophaea sublivida/ Syn. Humaria sublivida/README.md | 252 | # 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 | apache-2.0 |
mdoering/backbone | life/Fungi/Ascomycota/Leotiomycetes/Helotiales/Helotiaceae/Crocicreas/Crocicreas culmicola/ Syn. Hymenoscyphus culmicola/README.md | 236 | # 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 | apache-2.0 |
mdoering/backbone | life/Fungi/Ascomycota/Spiropes/Spiropes palmetto/ Syn. Helmisporium palmetto/README.md | 194 | # Helmisporium palmetto W.R. Gerard SPECIES
#### Status
SYNONYM
#### According to
Index Fungorum
#### Published in
null
#### Original name
Helmisporium palmetto W.R. Gerard
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Goodeniaceae/Lechenaultia/Lechenaultia glauca/README.md | 176 | # Lechenaultia glauca Lindl. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Chlorophyta/Chlorophyceae/Donezellidae/README.md | 151 | # Donezellidae FAMILY
#### Status
ACCEPTED
#### According to
Paleobiology Database
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Caryophyllales/Amaranthaceae/Trichinium/Trichinium holosericeum/README.md | 178 | # Trichinium holosericeum Moq. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Asparagales/Orchidaceae/Cattleya/Cattleya devoniana/README.md | 185 | # Cattleya ×devoniana Hort. ex Will. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Dioscoreales/Dioscoreaceae/Dioscorea/Dioscorea mundtii/README.md | 173 | # Dioscorea mundtii Baker SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | apache-2.0 |
DenverArtMuseum/OctoberFriends | api/resources/RatingResource.php | 12864 | <?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... | apache-2.0 |
cloudfoundry-community/java-nats | client/src/main/java/nats/codec/ServerFrameEncoder.java | 3415 | /*
* 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... | apache-2.0 |
PRImA-Research-Lab/semantic-labelling | doc/org/primaresearch/clc/phd/repository/search/matching/gui/model/class-use/ActivityMatchValueTreeItem.html | 5199 | <!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... | apache-2.0 |
cassinius/AnonymizationJS | src/config/SaNGreeAConfig_house.ts | 1589 | 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':... | apache-2.0 |
realbite/blix | lib/blix/core/json_rpc_parser.rb | 6698 | 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_... | apache-2.0 |
seattlepublicrecords/seattlepublicrecords.github.io | information/agencies/city_of_seattle/seattle_police_department/copbook/7401/index.md | 196 | ---
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
| apache-2.0 |
dbflute-example/dbflute-example-with-non-rdb | src/main/java/org/docksidestage/app/web/es/product/EsProductAddForm.java | 298 | 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;
}
| apache-2.0 |
Guityyo/minerparty | Assets/_Scripts/AIWandering/Wander.cs | 1056 | 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 ()
{
... | apache-2.0 |
aws/aws-sdk-java | aws-java-sdk-inspector2/src/main/java/com/amazonaws/services/inspector2/model/GetMemberResult.java | 3656 | /*
* 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... | apache-2.0 |
tranquang9a1/ECRM | App/ECRM/src/main/java/com/ecrm/DAO/ScheduleConfigDAO.java | 177 | package com.ecrm.DAO;
import org.springframework.stereotype.Repository;
/**
* Created by Htang on 7/10/2015.
*/
@Repository
public interface ScheduleConfigDAO {
}
| apache-2.0 |
mpmlj/clarifai-client-go | response.go | 667 | 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 ... | apache-2.0 |
ChinaQuants/Strata | modules/calc/src/test/java/com/opengamma/strata/calc/runner/CalculationTaskTest.java | 31891 | /**
* 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... | apache-2.0 |
rzagabe/bazel | src/main/java/com/google/devtools/build/lib/actions/MutableActionGraph.java | 6415 | // 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 ... | apache-2.0 |
tallycheck/general | general-solution/src/main/java/com/taoswork/tallycheck/general/solution/threading/ThreadLocalHelper.java | 1473 | 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... | apache-2.0 |