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 |
|---|---|---|---|---|---|
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-debian:bullseye-run
# remove several traces of debian python
RUN apt-get purge -y 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 pyth... | resin-io-library/base-images | balena-base-images/python/generic-armv7ahf/debian/bullseye/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,101 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-debian:stretch-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu57 \
libssl1.1 \... | resin-io-library/base-images | balena-base-images/dotnet/generic-aarch64/debian/stretch/3.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-debian:sid-build
# remove several traces of debian python
RUN apt-get purge -y 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
# key 63C7CC90: pu... | resin-io-library/base-images | balena-base-images/python/generic-aarch64/debian/sid/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,853 |
#!/usr/bin/env ruby
# INSTALL
# sudo gem install sinatra liquid
# RUN
# ruby examples/sinatra/buzz_api.rb
root_dir = File.expand_path("../../..", __FILE__)
lib_dir = File.expand_path("./lib", root_dir)
$LOAD_PATH.unshift(lib_dir)
$LOAD_PATH.uniq!
require 'rubygems'
begin
gem 'rack', '= 1.2.0'
require 'rack'... | jeroenvandijk/google-api-ruby-client | examples/sinatra/explorer.rb | Ruby | apache-2.0 | 13,332 |
<section id="enroll" class="bg-dark">
<div class="container">
<div class="row lead wow bounceIn">
<div class="col-lg-8 col-lg-offset-2 text-center" style="margin-bottom: 20px;">
<h2 class="section-heading">TUYỂN SINH</h2>
<hr class="primary">
</div>
... | vietanhdev/HUST-ICT-website | _includes/enroll.html | HTML | apache-2.0 | 1,414 |
<?php
class Faq_model extends CI_Model{
public $_table='faq';
public $_topics='faq_topics';
function __construct() {
parent::__construct();
}
public function get_all_admin(){
return $this->db->select('f.*,ft.faqTopics')->from($this->_table.' f')->join($this->_topics.' ft','f.faqTop... | kousik/tidiit | models/faq_model.php | PHP | apache-2.0 | 2,958 |
/*
* Copyright 2014 Kislitsyn Ilya
*
* 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 la... | kilel/DGraphMark | src/generator/GraphGenerator.h | C | apache-2.0 | 1,405 |
package com.earasoft.db.database;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import org.apache.commons.configuration.Configuration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.earasoft.learning1.Settings;
public class M... | earasoft/swing-database-learning1 | src/main/java/com/earasoft/db/database/MySQLDatabase.java | Java | apache-2.0 | 2,134 |
/*
* Copyright (C) 2017-2019 Dremio Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable l... | dremio/dremio-oss | dac/ui/src/components/Aggregate/AggregateContent.js | JavaScript | apache-2.0 | 5,729 |
# Ganoderma albocinctum Pat. & Morot SPECIES
#### Status
ACCEPTED
#### According to
Index Fungorum
#### Published in
J. Bot. Morot 8: 365 (1894)
#### Original name
Ganoderma albocinctum Pat. & Morot
### Remarks
null | mdoering/backbone | life/Fungi/Basidiomycota/Agaricomycetes/Polyporales/Ganodermataceae/Ganoderma/Ganoderma albocinctum/README.md | Markdown | apache-2.0 | 220 |
import { Component } from '@angular/core';
import { Meta, Title } from '@angular/platform-browser';
import { OnInit } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: 'home.component.html',
styleUrls: ['home.component.css'],
})
export class HomeComponent implements OnInit {
constructor(met... | gyuho/etcdlabs | frontend/app/home/home.component.ts | TypeScript | apache-2.0 | 654 |
package tableau
import java.io.File
import org.apache.spark.sql.SparkSession
import org.junit.Assert._
import org.junit._
object TestDataframeToTableau {
var spark: SparkSession = null
/**
* Create Spark context before tests
*/
@BeforeClass
def setUp(): Unit = {
spark = {
SparkSession.bu... | werneckpaiva/spark-to-tableau | src/test/scala/tableau/TestDataframeToTableau.scala | Scala | apache-2.0 | 3,223 |
/*
Copyright IBM Corp. 2016 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 law or agreed to in wri... | mffrench/fabric | protos/utils/proputils.go | GO | apache-2.0 | 19,622 |
package spring.store;
import java.util.List;
/**
* Created by Andrey on 02.02.2018.
*/
public interface Storage <T>{
void add(User user);
List<T> getAll();
}
| AVBaranov/abaranov | chapter_011/src/main/java/spring/store/Storage.java | Java | apache-2.0 | 170 |
# Blepharis longifolia Lindau SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Lamiales/Acanthaceae/Blepharis/Blepharis longifolia/README.md | Markdown | apache-2.0 | 177 |
# Aster flaccidus Bunge SPECIES
#### Status
ACCEPTED
#### According to
Integrated Taxonomic Information System
#### Published in
Mém. Acad. Imp. Sci. St. -Pétersbourg Divers Savans 2:599. 1835
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Aster/Aster flaccidus/README.md | Markdown | apache-2.0 | 240 |
# Psychotria platyphylla var. angustior VARIETY
#### 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/Gentianales/Rubiaceae/Psychotria/Psychotria berteroana/ Syn. Psychotria platyphylla angustior/README.md | Markdown | apache-2.0 | 194 |
# Potamogeton innominatus Tisel. ex Almquist SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Alismatales/Potamogetonaceae/Potamogeton/Potamogeton innominatus/README.md | Markdown | apache-2.0 | 192 |
# Eleutheropetalum sartorii (Liebm.) Oerst. 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/Liliopsida/Arecales/Arecaceae/Chamaedorea/Chamaedorea sartorii/ Syn. Eleutheropetalum sartorii/README.md | Markdown | apache-2.0 | 198 |
# Allium senescens subsp. glaucum SUBSPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
Allium glaucum Schrad. ex Poir.
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Asparagales/Amaryllidaceae/Allium/Allium senescens/Allium senescens glaucum/README.md | Markdown | apache-2.0 | 219 |
# Echinodorus inpai Rataj SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Alismatales/Alismataceae/Echinodorus/Echinodorus inpai/README.md | Markdown | apache-2.0 | 181 |
# Peyssonnelia bicolor (Børgesen) Denizot SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Rhodophyta/Florideophyceae/Gigartinales/Peyssonneliaceae/Peyssonnelia/Peyssonnelia bicolor/README.md | Markdown | apache-2.0 | 198 |
# Conophytum pubescens (Tischer) G.D.Rowley SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Caryophyllales/Aizoaceae/Conophytum/Conophytum pubescens/README.md | Markdown | apache-2.0 | 191 |
# Cleome hirsuta Ruiz & Pav. ex DC. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Brassicales/Cleomaceae/Cleome/Cleome hirsuta/README.md | Markdown | apache-2.0 | 183 |
# Psammothidium reversum (Lange-Bertalot) L. Bukhtiyarova SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Bacillariophyta/Bacillariophyceae/Acnanthales/Achnanthidiaceae/Psammothidium/Psammothidium reversum/README.md | Markdown | apache-2.0 | 213 |
# Palicourea longistipulata subsp. chrysorrhachis SUBSPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Gentianales/Rubiaceae/Palicourea/Palicourea longistipulata/Palicourea longistipulata chrysorrhachis/README.md | Markdown | apache-2.0 | 208 |
# Pachystela cinerea (Engl.) Pierre ex Engl. 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/Ericales/Sapotaceae/Synsepalum/Synsepalum brevipes/ Syn. Pachystela cinerea/README.md | Markdown | apache-2.0 | 199 |
# Rhododendron trichophorum Balf. f. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Ericales/Ericaceae/Rhododendron/Rhododendron trichophorum/README.md | Markdown | apache-2.0 | 184 |
##
# Copyright (c) 2009-2015 Apple 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 l... | red-hood/calendarserver | twistedcaldav/test/test_database.py | Python | apache-2.0 | 7,176 |
#!/bin/sh
set -o errexit
realpath() {
echo "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"
}
DOCKER_DIR=$(dirname $(dirname $(realpath $0)))
PROJECT_DIR=$(dirname $DOCKER_DIR )
SCRATCH_DIR="$HOME/.heron-docker"
cleanup() {
if [ -d $SCRATCH_DIR ]; then
echo "Cleaning up scratch dir"
rm -rf $SCRATCH_DIR
... | streamlio/heron | docker/scripts/ci-docker.sh | Shell | apache-2.0 | 3,729 |
/*
* Java port of Bullet (c) 2008 Martin Dvorak <jezek2@advel.cz>
*
* Bullet Continuous Collision Detection and Physics Library
* Copyright (c) 2003-2008 Erwin Coumans http://www.bulletphysics.com/
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be ... | danke-sra/GearVRf | GVRf/Framework/src/org/gearvrf/bulletphysics/dynamics/constraintsolver/Point2PointConstraint.java | Java | apache-2.0 | 7,029 |
# Tetrapteris latibracteolata Nied. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Malpighiales/Malpighiaceae/Tetrapteris/Tetrapteris latibracteolata/README.md | Markdown | apache-2.0 | 183 |
/**
* JBoss, Home of Professional Open Source
* Copyright 2012, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not u... | aslakknutsen/arquillian-extension-warp | impl/src/main/java/org/jboss/arquillian/warp/client/proxy/ProxyURLProvider.java | Java | apache-2.0 | 2,711 |
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Function Reference: write_config()</title>
<link rel="stylesheet" href="../sample.css" type="text/css">
<link rel="stylesheet" href="../sample-pri... | inputx/code-ref-doc | bonfire/_functions/write_config.html | HTML | apache-2.0 | 5,495 |
/*
* 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 ... | ilantukh/ignite | examples/src/main/java/org/apache/ignite/examples/ml/tutorial/Step_2_Imputing.java | Java | apache-2.0 | 3,986 |
<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\Resource;
class FeedbackResource extends Resource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request
*
* @return array
*/
public function toArray($request)
{
return... | voten-co/voten | app/Http/Resources/FeedbackResource.php | PHP | apache-2.0 | 656 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Thu Mar 26 16:48:27 UTC 2015 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
SizeEstimator (Hazelcast Root 3.4... | akiskip/KoDeMat-Collaboration-Platform-Application | KoDeMat_TouchScreen/lib/hazelcast-3.4.2/hazelcast-3.4.2/docs/javadoc/com/hazelcast/map/impl/SizeEstimator.html | HTML | apache-2.0 | 10,020 |
/*
Copyright ONECHAIN 2017 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 law or agreed to in w... | onechain/fabric-explorer | socket/websocketserver.js | JavaScript | apache-2.0 | 801 |
// This file is part of MLDB. Copyright 2015 mldb.ai inc. All rights reserved.
/* separation_stats.cc
Jeremy Barnes, 14 June 2011
Copyright (c) 2011 mldb.ai inc. All rights reserved.
*/
#include "separation_stats.h"
#include "mldb/arch/exception.h"
#include "mldb/base/exc_assert.h"
#include <boost/utility.hpp... | mldbai/mldb | plugins/jml/separation_stats.cc | C++ | apache-2.0 | 10,625 |
<!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_17b_testAbaNumberCheck_36696_bad_j6u.html | HTML | apache-2.0 | 10,992 |
/*jslint devel: true */
/*global Titanium, module */
(function (Ti) {
"use strict";
var style = {
win: {
backgroundColor: "#FFFFFF",
layout: "vertical"
},
btn: {
top: 44,
title: "Get GeoHash!"
},
label: {
top: ... | ryugoo/TiGeoHash | Resources/style/app.style.js | JavaScript | apache-2.0 | 898 |
package com.junitlet.rule;
import static org.junit.Assert.assertTrue;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Handler;
import java.util.logging.LogRecord;
import java.util.logging.Logger;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.... | alexradzin/JUnitlet | src/test/java/com/junitlet/rule/LoggingRuleTest.java | Java | apache-2.0 | 1,672 |
/*
* Copyright (C) 2017 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | google/caliper | caliper-runner/src/main/java/com/google/caliper/runner/worker/WorkerScoped.java | Java | apache-2.0 | 1,098 |
/*
* Copyright 2020 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... | ejona86/grpc-java | interop-testing/src/main/java/io/grpc/testing/integration/XdsTestServer.java | Java | apache-2.0 | 11,452 |
package org.egorlitvinenko.certification.oca.book1.assessment.Q3;
/**
* Created by Egor Litvinenko on 19.01.17.
*/
public interface HasTail {
int getTailLength();
}
| egorlitvinenko/JavaLearning | src/org/egorlitvinenko/certification/oca/book1/assessment/Q3/HasTail.java | Java | apache-2.0 | 172 |
'''
This module provides some handle-related functions
that are needed across various modules of the
pyhandle library.
'''
from __future__ import absolute_import
import base64
from future.standard_library import install_aliases
install_aliases()
from urllib.parse import quote
from . import handleexceptions
from . impor... | EUDAT-B2SAFE/PYHANDLE | pyhandle/utilhandle.py | Python | apache-2.0 | 5,268 |
/*
* 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-cloudformation/src/main/java/com/amazonaws/services/cloudformation/model/GetTemplateSummaryResult.java | Java | apache-2.0 | 36,945 |
#!/bin/bash
PWD=`pwd`
export LD_LIBRARY_PATH=$PWD/../../../../bin/libiio/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$PWD/../../../../lib:$LD_LIBRARY_PATH
| excess-project/monitoring-agent | src/plugins/c/acme/setenv.sh | Shell | apache-2.0 | 155 |
import sys
def test(suspect):
for i in range(2, suspect):
if suspect % i is 0:
return False
return True
if len(sys.argv) == 1:
print('please call me like "python prime.py range"')
sys.exit(0)
primes = []
for i in range(int(sys.argv[1])):
if test(i) == True:
primes.append... | tomecho/PrimeSpeedTest | prime.py | Python | apache-2.0 | 343 |
/*-
* -\-\-
* Flo Runner
* --
* Copyright (C) 2016 - 2018 Spotify AB
* --
* 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
*
* U... | rouzwawi/flo | flo-runner/src/test/java/com/spotify/flo/context/FloRunnerTest.java | Java | apache-2.0 | 19,567 |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure;
using Microsoft.AspNetCo... | aspnet/AspNetCore | src/Mvc/Mvc.RazorPages/src/MvcRazorPagesDiagnosticListenerExtensions.cs | C# | apache-2.0 | 17,096 |
from __future__ import absolute_import, division, print_function, unicode_literals
from amaascore.market_data.eod_price import EODPrice
from amaascore.market_data.fx_rate import FXRate
from amaascore.market_data.curve import Curve
from amaascore.market_data.corporate_action import CorporateAction
def json_to_eod_pri... | amaas-fintech/amaas-core-sdk-python | amaascore/market_data/utils.py | Python | apache-2.0 | 723 |
/*
* Copyright (c) jiucheng.org
*/
package org.jiucheng.web;
import java.lang.reflect.Method;
public class Ctrl {
private String route;
private Method method;
private RequestType requestType;
private String beanName;
private String handlerBeanName;
public void setRoute(String route... | AnEgg/DragonYun | src/org/jiucheng/web/Ctrl.java | Java | apache-2.0 | 1,114 |
# -------------------------------------------------------------------------- #
# Copyright 2002-2020, OpenNebula Project, OpenNebula Systems #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); you may #
# no... | baby-gnu/one | src/cli/one_helper/onedatastore_helper.rb | Ruby | apache-2.0 | 6,796 |
/*
* Copyright (c) 2008-2017 Haulmont.
*
* 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 agr... | cuba-platform/cuba | modules/core-tests/src/com/haulmont/cuba/testsupport/TestDbUpdateManager.java | Java | apache-2.0 | 883 |
/**
* @license
* Copyright 2018 Google LLC. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | tensorflow/tfjs-examples | jena-weather/ui.js | JavaScript | apache-2.0 | 4,072 |
/**
* Copyright (c) 2005-2012 https://github.com/zhangkaitao
*
* Licensed under the Apache License, Version 2.0 (the "License");
*/
package com.huntering.common.entity.search.utils;
import com.google.common.collect.Lists;
import com.huntering.common.entity.search.SearchOperator;
import com.huntering.common.entity.... | xiuxin/Huntering | common/src/main/java/com/huntering/common/entity/search/utils/SearchableConvertUtils.java | Java | apache-2.0 | 7,912 |
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>path - ScalaTest 2.2.2-SNAPSHOT - org.scalatest.path</title>
<meta name="description" content="path - ScalaTest 2.2.2 - SNAPSHOT - org... | scalatest/scalatest-website | public/scaladoc/2.2.2/org/scalatest/path/package.html | HTML | apache-2.0 | 8,880 |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | RandomCodeOrg/ENetFramework | RandomCodeOrg.Pluto/Config/ApplicationDescriptor.cs | C# | apache-2.0 | 16,670 |
/*
* Copyright (c) 2021 Citrix Systems, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... | citrix/terraform-provider-netscaler | vendor/github.com/citrix/adc-nitro-go/resource/config/appfw/appfwxmlerrorpage.go | GO | apache-2.0 | 1,434 |
package com.action.jdxchxjs.ch03.stack_1;
import java.util.ArrayList;
import java.util.List;
/**
* Created by wuyunfeng on 2017/9/21.
*/
public class MyStack {
private List list = new ArrayList();
public synchronized void pubsh(){
try {
if (list.size() == 1){
this.wai... | pearpai/java_action | src/main/java/com/action/jdxchxjs/ch03/stack_1/MyStack.java | Java | apache-2.0 | 1,139 |
/*
* Copyright 2006-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | xiangzhuyuan/spring-security-oauth | spring-security-oauth2/src/test/java/org/springframework/security/oauth2/config/annotation/ClientConfigurationTests.java | Java | apache-2.0 | 3,983 |
package com.huawei.esdk.demo.autogen;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJa... | eSDK/esdk_tp_native_java | test/demo/eSDK_TP_Demo_BS_Java/src/com/huawei/esdk/demo/autogen/BroadInfoEx.java | Java | apache-2.0 | 4,017 |
var dir_0c96b3d0fc842fbb51d7afc18d90cdec =
[
[ "design", "dir_b39402054b6f29d8059088b0004b64ee.html", "dir_b39402054b6f29d8059088b0004b64ee" ],
[ "v4", "dir_b1530cc8b78b2d9923632461f396c71c.html", "dir_b1530cc8b78b2d9923632461f396c71c" ],
[ "v7", "dir_94bdcc46f12b2beb2dba250b68a1fa32.html", "dir_94bdcc46f12... | feedhenry/fh-dotnet-sdk | Documentations/html/dir_0c96b3d0fc842fbb51d7afc18d90cdec.js | JavaScript | apache-2.0 | 347 |
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>wtf.impl.http._request</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
... | wontfix-org/wtf | docs/apidoc/wtf.impl.http._request-module.html | HTML | apache-2.0 | 12,532 |
# Raptored
Text editor
| Project34/Raptored | README.md | Markdown | apache-2.0 | 24 |
/*
Copyright 2007-2009 WebDriver committers
Copyright 2007-2009 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by appli... | mogotest/selenium | remote/server/src/java/org/openqa/selenium/remote/server/DriverServlet.java | Java | apache-2.0 | 14,199 |
# Sphaeria calthaecola (DC.) Fr. SPECIES
#### Status
ACCEPTED
#### According to
Index Fungorum
#### Published in
Syst. mycol. (Lundae) 2(2): 532 (1823)
#### Original name
Sphaeria lichenoides var. calthaecola DC.
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Sordariomycetes/Xylariales/Xylariaceae/Sphaeria/Sphaeria calthaecola/README.md | Markdown | apache-2.0 | 234 |
/*
* Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
*
* 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/LIC... | freeVM/freeVM | enhanced/archive/classlib/modules/rmi2.1.4/src/main/java/org/apache/harmony/rmi/internal/runtime/RMIDefaultClassLoaderSpi.java | Java | apache-2.0 | 14,748 |
package com.squeezer.designpatterns.abstractfactory;
public class ProductA1 implements AbstractProductA {
@Override
public void display() {
System.out.println("Product A 1 display");
}
}
| Squeezer-software/java-design-patterns | src/com/squeezer/designpatterns/abstractfactory/ProductA1.java | Java | apache-2.0 | 211 |
/**
* Copyright 2015 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | spoon-bot/RxJava | src/test/java/io/reactivex/internal/operators/OperatorZipCompletionTest.java | Java | apache-2.0 | 3,401 |
package com.example.reference;
import arez.annotations.ArezComponent;
import arez.annotations.LinkType;
import arez.annotations.Observable;
import arez.annotations.Reference;
import arez.annotations.ReferenceId;
@ArezComponent
abstract class LazyLoadObservableReferenceModel
{
@Reference( load = LinkType.LAZY )
ab... | realityforge/arez | processor/src/test/fixtures/input/com/example/reference/LazyLoadObservableReferenceModel.java | Java | apache-2.0 | 490 |
package advisor
// Copyright (c) Microsoft and contributors. 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
//
// Unl... | linzhaoming/origin | vendor/github.com/Azure/azure-sdk-for-go/services/advisor/mgmt/2017-04-19/advisor/models.go | GO | apache-2.0 | 25,984 |
# Module occi_renderer_xml #
* [Description](#description)
* [Function Index](#index)
* [Function Details](#functions)
.
Copyright (c) (C) 2016, Jean Parpaillon
__Authors:__ Jean Parpaillon ([`jean.parpaillon@free.fr`](mailto:jean.parpaillon@free.fr)).
<a name="index"></a>
## Function Index ##
<table width="10... | erocci/erocci | doc/occi_renderer_xml.md | Markdown | apache-2.0 | 1,057 |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package br.com.vebo.dados.mapeamento;
/**
*
* @author mohfus
*/
public enum MovimentacaoEstoqueEnum {
ENTRADA,
RETIRADA;
}
| diegobqb/veboMaven | src/main/java/br/com/vebo/dados/mapeamento/MovimentacaoEstoqueEnum.java | Java | apache-2.0 | 236 |
import * as should from 'should';
import 'should-http';
import 'should-sinon';
import '../lib/asserts';
import * as nock from 'nock';
import * as sinon from 'sinon';
import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
import * as debugLib from 'debug';
import * as path from 'path';... | BitGo/BitGoJS | modules/express/test/unit/bitgoExpress.ts | TypeScript | apache-2.0 | 14,766 |
<html>
<body>
<!-- Modal -->
<div class="modal fade" id="youtubeModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<form role="form" action="/postmusic" method="post">
<div class="modal-header">
<button typ... | clement-elbaz/somedamnmusic | src/main/webapp/PostMusicModal.html | HTML | apache-2.0 | 1,383 |
package requirements_test
import (
"cf/models"
. "cf/requirements"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
testassert "testhelpers/assert"
testconfig "testhelpers/configuration"
testterm "testhelpers/terminal"
)
var _ = Describe("Testing with ginkgo", func() {
It("TestSpaceRequirement", func() {... | nimbus-cloud/cli | src/cf/requirements/targeted_space_test.go | GO | apache-2.0 | 1,273 |
package com.github.mfursov.w7.page.signin;
import com.github.mfursov.w7.Context;
import com.github.mfursov.w7.Mounts;
import com.github.mfursov.w7.annotation.MountPath;
import com.github.mfursov.w7.component.CaptchaField;
import com.github.mfursov.w7.component.Feedback;
import com.github.mfursov.w7.component.RefreshCa... | mfursov/wicket7template | src/main/java/com/github/mfursov/w7/page/signin/ForgotPasswordPage.java | Java | apache-2.0 | 4,068 |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* LoveCalculator.java
*
* Created on 2011-11-24, 9:27:40
*/
package pb.text;
/**
* @author maqiang
*/
public class LoveCalculator extends javax.swing.JFrame
{
/**
* 域(私有)<br>
* 名称: dp<br>
... | ProteanBear/ProteanBear_Java | source/PbJExpress/test/pb/text/LoveCalculator.java | Java | apache-2.0 | 19,881 |
package com.uwetrottmann.shopr.context.algorithm;
import android.database.Cursor;
import android.util.Log;
import com.uwetrottmann.shopr.ShoprApp;
import com.uwetrottmann.shopr.algorithm.model.Item;
import com.uwetrottmann.shopr.context.model.Company;
import com.uwetrottmann.shopr.context.model.DayOfTheWeek;
import c... | Nicksteal/ShopR | Android/Shopr/src/main/java/com/uwetrottmann/shopr/context/algorithm/ContextualPostFiltering.java | Java | apache-2.0 | 10,688 |
/*
* Copyright (c) 2010, www.wojilu.com. All rights reserved.
*/
using System;
using System.Collections;
using System.Text;
using wojilu.Web.Mvc;
using wojilu.Apps.Content.Interface;
using wojilu.Apps.Content.Domain;
using wojilu.Common.Feeds.Service;
using wojilu.Common.Feeds.Domain;
using wojilu.Ap... | songboriceboy/cnblogsbywojilu | wojilu.Controller/Content/Binder/MyShareBinderController.cs | C# | apache-2.0 | 1,649 |
# Bryopogon lanestris f. lanestris FORM
#### Status
ACCEPTED
#### According to
Index Fungorum
#### Published in
null
#### Original name
Bryopogon lanestris f. lanestris
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Lecanoromycetes/Lecanorales/Parmeliaceae/Alectoria/Bryopogon lanestris/Bryopogon lanestris lanestris/README.md | Markdown | apache-2.0 | 190 |
# Asplenium achilleifolium var. achilleifolium VARIETY
#### Status
ACCEPTED
#### According to
NUB Generator [autonym]
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Pteridophyta/Polypodiopsida/Polypodiales/Aspleniaceae/Asplenium/Asplenium achilleifolium/Asplenium achilleifolium achilleifolium/README.md | Markdown | apache-2.0 | 186 |
# Polyporus adspersus Schulzer, 1878 SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Flora, Jena 61: 11 (1878)
#### Original name
Polyporus adspersus Schulzer, 1878
### Remarks
null | mdoering/backbone | life/Fungi/Basidiomycota/Agaricomycetes/Polyporales/Ganodermataceae/Ganoderma/Ganoderma adspersum/ Syn. Polyporus adspersus/README.md | Markdown | apache-2.0 | 242 |
# Alsine valida House SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Caryophyllales/Caryophyllaceae/Stellaria/Alsine valida/README.md | Markdown | apache-2.0 | 169 |
# Canna liliiflora Warsz. ex Planch. SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Fl. Serres Jard. Eur. 10:211, t. 1055-1056. 1855
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Liliopsida/Zingiberales/Cannaceae/Canna/Canna liliiflora/README.md | Markdown | apache-2.0 | 236 |
# Diplomorpha bacciformis (L.) Kuntze 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/Malpighiales/Phyllanthaceae/Sauropus/Sauropus bacciformis/ Syn. Diplomorpha bacciformis/README.md | Markdown | apache-2.0 | 192 |
# Ledermanniella fluitans (H.Hess) C.Cusset SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Malpighiales/Podostemaceae/Ledermanniella/Ledermanniella fluitans/README.md | Markdown | apache-2.0 | 191 |
/*
* Copyright (C) 2015 The Minium 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 agr... | viltgroup/minium | minium-webelements/src/main/java/minium/web/internal/drivers/WindowWebDriver.java | Java | apache-2.0 | 2,217 |
package stroom.util.validation;
import stroom.util.shared.validation.IsSubsetOf;
import stroom.util.shared.validation.IsSubsetOfValidator;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import javax.validation.ConstraintValidatorContext;
public class IsSubsetOfV... | gchq/stroom | stroom-util/src/main/java/stroom/util/validation/IsSubsetOfValidatorImpl.java | Java | apache-2.0 | 2,147 |
/*
* Copyright 2016 VOPEN.CN
*
* 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 writ... | ivetech/binlog-mysql | src/main/java/xyz/vopen/mysql/binlog/network/protocol/command/DumpBinaryLogCommand.java | Java | apache-2.0 | 1,645 |
<?php
namespace SocioChat\DAO;
use Core\DAO\DAOBase;
use Core\Utils\DbQueryHelper;
use SocioChat\Clients\User;
class NameChangeDAO extends DAOBase
{
const USER_ID = 'user_id';
const OLD_NAME = 'old_name';
const DATE_CHANGE = 'date_change';
public function __construct()
{
parent::__constr... | kryoz/sociochat | src/SocioChat/DAO/NameChangeDAO.php | PHP | apache-2.0 | 2,379 |
/* Copyright© 2000 - 2022 SuperMap Software Co.Ltd. All rights reserved.
* This program are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
import mapboxgl from 'mapbox-gl';
import { ServiceB... | SuperMap/iClient9 | src/mapboxgl/services/ImageService.js | JavaScript | apache-2.0 | 3,968 |
'use strict';
/* Services that are used to interact with the backend. */
var eventManServices = angular.module('eventManServices', ['ngResource']);
/* Modify, in place, an object to convert datetime. */
function convert_dates(obj) {
angular.forEach(['begin_date', 'end_date', 'ticket_sales_begin_date', 'ticket_sa... | raspibo/eventman | angular_app/js/services.js | JavaScript | apache-2.0 | 9,665 |
/**
* Copyright 2011-2017 Asakusa Framework Team.
*
* 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... | cocoatomo/asakusafw | hive-project/asakusa-hive-info/src/main/java/com/asakusafw/directio/hive/annotation/HiveTable.java | Java | apache-2.0 | 1,243 |
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# regex/Makefile. Generated from Makefile.in by configure.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Softw... | 0xkag/alpine | regex/Makefile | Makefile | apache-2.0 | 16,123 |
# Padus asiatica var. subglabra Y.L.Han & Chang Y.Yang VARIETY
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Prunus/Prunus padus/Padus asiatica subglabra/README.md | Markdown | apache-2.0 | 202 |
# Arthonia obscurior Triebel SPECIES
#### Status
ACCEPTED
#### According to
Index Fungorum
#### Published in
Biblthca Lichenol. 35: 62 (1989)
#### Original name
Arthonia obscurior Triebel
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Arthoniomycetes/Arthoniales/Arthoniaceae/Arthonia/Arthonia obscurior/README.md | Markdown | apache-2.0 | 209 |
# Sarcochilus auriferus (Lindl.) Rchb.f. 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/Liliopsida/Asparagales/Orchidaceae/Thrixspermum/Thrixspermum centipeda/ Syn. Sarcochilus auriferus/README.md | Markdown | apache-2.0 | 195 |