code stringlengths 3 1.01M | repo_name stringlengths 5 116 | path stringlengths 3 311 | language stringclasses 30
values | license stringclasses 15
values | size int64 3 1.01M |
|---|---|---|---|---|---|
package org.scriptonbasestar.oauth.client.http;
import lombok.experimental.UtilityClass;
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import org.scriptonbasestar.oauth.client.util.OAuthEncodeUtil;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Lis... | BeanSugar/bs-oauth-java | oauth-client/src/main/java/org/scriptonbasestar/oauth/client/http/ParamUtil.java | Java | apache-2.0 | 1,778 |
package com.codeforces.commons.text.similarity;
import com.codeforces.commons.resource.ResourceUtil;
import com.codeforces.commons.text.Patterns;
import com.codeforces.commons.text.StringUtil;
import org.apache.commons.text.similarity.LevenshteinDistance;
import javax.annotation.Nonnull;
import java.util.HashMap;
imp... | Codeforces/codeforces-commons | code/src/main/java/com/codeforces/commons/text/similarity/SimilarityUtil.java | Java | apache-2.0 | 3,276 |
/**
* 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... | StevenMPhillips/arrow | java/vector/src/main/java/org/apache/arrow/vector/VectorSchemaRoot.java | Java | apache-2.0 | 4,351 |
# Br00jaBot
A simple shitposter bot made by dirty hispanics to others dirty hispanics.
Even when this repository is public, i have no intentions to make a public release, i just need a place for save my sh!t, ignore this readme as long as you can, maybe some day i'll put something util here.
Enjoy.
PD: Br00jaBot use... | leothescrub/br00jabot | README.md | Markdown | apache-2.0 | 377 |
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: {
reporter: require('jshint-stylish')
},
// when this task is run, lint the Gruntfile and all js files ilisted
build: ['Gruntfile.js', 'server.js', 'pub... | ma3east/eStub2 | Gruntfile.js | JavaScript | apache-2.0 | 1,927 |
/*******************************************************************************
* Copyright 2016 Alrick Grandison (Algodal) alrickgrandison@gmail.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 ... | Rickodesea/GdxScreen | GdxScreen/core/src/com/algodal/gdxscreen/utils/GdxLibrary.java | Java | apache-2.0 | 5,774 |
/*
* Copyright 2015 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 ... | yext/closure-templates | java/tests/com/google/template/soy/pysrc/internal/GenPyExprsVisitorTest.java | Java | apache-2.0 | 26,248 |
/*
* 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")... | avafanasiev/groovy | subprojects/groovy-nio/src/main/java/org/codehaus/groovy/runtime/NioGroovyMethods.java | Java | apache-2.0 | 88,390 |
/**
* Copyright (C) 2010-2013 Alibaba Group Holding Limited
*
* 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 ... | diwayou/rocketmq-all-trans | rocketmq-common/src/main/java/com/alibaba/rocketmq/common/filter/FilterAPI.java | Java | apache-2.0 | 3,598 |
#
# Copyright (c) SAS Institute 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 in w... | sassoftware/mint | mint/rest/middleware/error.py | Python | apache-2.0 | 3,212 |
/**
* <copyright>
*
* Copyright (c) 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
... | adbrucker/SecureBPMN | designer/src/org.activiti.designer.model.edit/src/org/eclipse/securebpmn2/provider/CompositeItemAwareElementActionItemProvider.java | Java | apache-2.0 | 4,878 |
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | partouf/ReplaysOfTheVoid | Properties/AssemblyInfo.cs | C# | apache-2.0 | 2,248 |
/*
* Copyright 2016 Davide Maestroni
*
* 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... | davide-maestroni/jroutine | android-core/src/main/java/com/github/dm/jrt/android/v4/core/LoaderContextCompat.java | Java | apache-2.0 | 8,667 |
#include "objinterface.h"
ObjLoader::ObjLoader()
{
pobj = new LibObjFile;
}
ObjLoader::ObjLoader(const string& objfile)
{
pobj = new LibObjFile;
obj_load(objfile);
}
ObjLoader::~ObjLoader()
{
if (pobj)
delete pobj;
}
ObjBool ObjLoader::obj_load(const string& objfile)
{
if (!pobj)
re... | priseup/obj_load | objinterface.cpp | C++ | apache-2.0 | 384 |
exports.AppWindow = function(){
var self = Titanium.UI.createWindow({
backgroundColor: "#888888",
title: "My List"
});
return self;
};
| TShelton41/ListAndPicker | Resources/ui/AppWindow.js | JavaScript | apache-2.0 | 149 |
<!--
~ Copyright (c) 2010-2013 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 ... | bshp/midPoint | gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/configuration/component/SystemConfigPanel.html | HTML | apache-2.0 | 886 |
{% extends "base.html" %}
{% load wagtailcore_tags %}
{% load wagtailcore_tags snippets %}
{% load wagtailimages_tags %}
{% load static %}
{% block body_class %}newsindexpage{% endblock %}
{% block content %}
<div class="banner-container">
<div class="banner-element">
Help support open scienc... | baylee-d/cos.io | common/templates/common/news_index_page.html | HTML | apache-2.0 | 2,796 |
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using UnityEngine.Events;
public class UIHighlightHex : MonoBehaviour
{
/*Notes
1. Change the Hex to be under the parent of the Original Hex Material
2. When the mouse enters the Original Hex Matieral, chan... | rockpower/Project-Hexing_Tournament | Assets/Scripts/UI Scripts/UIHighlightHex.cs | C# | apache-2.0 | 2,524 |
/*
* Copyright 2013 Future Systems
*
* 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 t... | araqne/logdb | araqne-logdb/src/main/java/org/araqne/logdb/query/aggregator/Sum.java | Java | apache-2.0 | 2,107 |
<!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_25) on Tue Apr 28 18:49:25 EEST 2015 -->
<title>com.ohtu.wearable.wearabledataservice.list</title>
<meta name="date" content="2015-04-28">
<lin... | OhtuWearable/WearableDataServer | javadoc/com/ohtu/wearable/wearabledataservice/list/package-summary.html | HTML | apache-2.0 | 5,849 |
package io.quarkus.security.test.cdi.app;
public class TestException extends RuntimeException {
}
| quarkusio/quarkus | extensions/security/deployment/src/test/java/io/quarkus/security/test/cdi/app/TestException.java | Java | apache-2.0 | 99 |
package com.cisco.axl.api._8;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ListDirectedCallParkRes c... | ox-it/cucm-http-api | src/main/java/com/cisco/axl/api/_8/ListDirectedCallParkRes.java | Java | apache-2.0 | 3,958 |
<!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_151) on Tue Feb 06 09:38:18 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.s... | wildfly-swarm/wildfly-swarm-javadocs | 2017.10.2/apidocs/org/wildfly/swarm/config/management/security_realm/class-use/PlugInAuthentication.PlugInAuthenticationResources.html | HTML | apache-2.0 | 8,345 |
import React from 'react';
import { Bluetooth as Memory, Storage, Trigger } from 'grommet-icons';
import {
Box,
Card,
CardBody,
CardFooter,
Chart,
Grid,
Grommet,
Text,
} from 'grommet';
const theme = {
themeMode: 'dark',
global: {
font: {
family: `-apple-system,
BlinkMacSystem... | HewlettPackard/grommet | src/js/components/Card/stories/Clickable.js | JavaScript | apache-2.0 | 3,312 |
require File.expand_path('../boot', __FILE__)
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Sinthanai
class Application < Rails::Application
# Settings in config/environments/* take pre... | RameshRM/sinthanai | config/application.rb | Ruby | apache-2.0 | 980 |
/*
* 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-logs/src/main/java/com/amazonaws/services/logs/model/DeleteResourcePolicyResult.java | Java | apache-2.0 | 2,365 |
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICU... | zumicts/Audiotica | Windows/Audiotica.Core.Windows/Messages/SkipNextMessage.cs | C# | apache-2.0 | 530 |
/*
* 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 ... | wreda/cassandra | src/java/org/apache/cassandra/db/commitlog/CommitLogReplayer.java | Java | apache-2.0 | 27,848 |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTopicsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('topics', functio... | luisedware/Learning-Laravel | zhihu/database/migrations/2017_04_12_204500_create_topics_table.php | PHP | apache-2.0 | 788 |
package com.netopyr.reduxfx.vscenegraph.builders;
import com.netopyr.reduxfx.vscenegraph.VNode;
import com.netopyr.reduxfx.vscenegraph.event.VEventHandler;
import com.netopyr.reduxfx.vscenegraph.event.VEventType;
import com.netopyr.reduxfx.vscenegraph.property.VProperty;
import javafx.geometry.Pos;
import io.vavr.coll... | netopyr/reduxfx | reduxfx-view/src/main/java/com/netopyr/reduxfx/vscenegraph/builders/HBoxBuilder.java | Java | apache-2.0 | 1,864 |
package simulation.story.actions;
import simulation.dialog.Dialog;
import simulation.story.Actor;
public class DialogActionType implements SceneActionType {
Dialog dialog;
public DialogActionType(String text) {
this.dialog = new Dialog(text);
}
@Override
public void start() {
}
... | seanoneillcode/maze-of-doom | src/main/java/simulation/story/actions/DialogActionType.java | Java | apache-2.0 | 554 |
<!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_45) on Mon Mar 03 10:44:38 EST 2014 -->
<title>Uses of Class org.hibernate.mapping.SingleTableSubclass (Hibernate JavaDocs)</title>
<me... | serious6/HibernateSimpleProject | javadoc/hibernate_Doc/org/hibernate/mapping/class-use/SingleTableSubclass.html | HTML | apache-2.0 | 6,547 |
package com.s24.search.solr.component.termstrategy;
import org.apache.lucene.analysis.Analyzer;
public class TermRankingStrategyBuilder {
private AbstractTermRankingStrategy toBuild;
private String q;
private String extraTerms;
private Analyzer analyzer;
private String fields;
private float ... | shopping24/solr-bmax-queryparser | src/main/java/com/s24/search/solr/component/termstrategy/TermRankingStrategyBuilder.java | Java | apache-2.0 | 1,948 |
/*
*
* Copyright (c) 2016 Krupal Shah, Harsh Bhavsar
* 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... | krupalshah/PinPlace | app/src/main/java/com/experiments/whereapp/config/DbConfig.java | Java | apache-2.0 | 1,076 |
/*
* Copyright (c) 2021 MarkLogic 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 law ... | marklogic/java-client-api | marklogic-client-api/src/main/java/com/marklogic/client/dataservices/OutputEndpoint.java | Java | apache-2.0 | 3,339 |
/*
* Copyright 2015 Caleb Brose, Chris Fogerty, Rob Sheehy, Zach Taylor, Nick Miller
*
* 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... | lighthouse/harbor | app/js/auth/init.js | JavaScript | apache-2.0 | 1,095 |
package com.mine.junit;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
JUnit 4
Spring Test (Spring框架中的test包)
Spring 相关其他依赖包(不再赘述了,就是context等包)
<dependency>
<groupId>junit</group... | luoyedaren/show-me-the-code | showmecode/src/main/java/com/mine/junit/BaseTest.java | Java | apache-2.0 | 1,578 |
<!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_151) on Wed Sep 05 03:08:44 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.jaxrs.mul... | wildfly-swarm/wildfly-swarm-javadocs | 2.2.0.Final/apidocs/org/wildfly/swarm/jaxrs/multipart/detect/package-frame.html | HTML | apache-2.0 | 1,052 |
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>module nfs - RDoc Documentation</title>
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
<script type="text/javascript">
var rdoc_rel_prefix = "./";
</script>
<script type="text/javasc... | uphillian/puppetcookbook | 10/doc/nfs.html | HTML | apache-2.0 | 26,502 |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>DefaultSenderScheduler</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script> <script>const storage = localStorage.getItem("dokka-... | ACRA/acra | web/static/javadoc/5.9.0-rc2/acra/org.acra.scheduler/-default-sender-scheduler/-default-sender-scheduler.html | HTML | apache-2.0 | 4,462 |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | JoelMarcey/buck | src/com/facebook/buck/cxx/RanlibStep.java | Java | apache-2.0 | 2,338 |
<?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>Stopper - ScalaTest 2.2.4 - org.scalatest.Stopper</title>
<meta name="description" content="Stopper - ScalaTest 2.2.4 - org.scalatest.... | scalatest/scalatest-website | public/scaladoc/2.2.4/org/scalatest/Stopper$.html | HTML | apache-2.0 | 23,647 |
#!/usr/local/bin/python3
# Find the number of elements of a list
def lenOf(mylist):
return (len(mylist))
print (lenOf("Hello"))
print (lenOf(""))
print (lenOf([123,123,123]))
| mocovenwitch/haskell-learning-notes | python/problem04.py | Python | apache-2.0 | 181 |
//===--- GenStruct.cpp - Swift IR Generation For 'struct' Types -----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/L... | tardieu/swift | lib/IRGen/GenStruct.cpp | C++ | apache-2.0 | 36,415 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_11) on Thu Sep 05 22:50:45 CEST 2013 -->
<title>Canonical (Groovy 2.1.7)</title>
<meta name="date" content="2013-09-05">
<link rel="sty... | Selventa/model-builder | tools/groovy/doc/html/api/groovy/transform/Canonical.html | HTML | apache-2.0 | 14,043 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_162) on Tue Oct 02 11:58:29 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.uni... | olehmberg/winter | docs/javadoc/de/uni_mannheim/informatik/dws/winter/webtables/class-use/TableMapping.html | HTML | apache-2.0 | 14,178 |
#!/usr/bin/python
#credits : https://gist.github.com/TheCrazyT/11263599
import socket
import ssl
import select
import time
import re
import sys
from thread import start_new_thread
from struct import pack
from random import randint
from subprocess import call
import os
import fnmatch
import argparse
import logging
c... | srirajan/lakkucast | lakkucast.py | Python | apache-2.0 | 21,535 |
# Glyptopetalum Thwaites GENUS
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Celastrales/Celastraceae/Glyptopetalum/README.md | Markdown | apache-2.0 | 170 |
/*
* 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-iam/src/main/java/com/amazonaws/services/identitymanagement/model/transform/PolicyUserStaxUnmarshaller.java | Java | apache-2.0 | 2,564 |
package bazilfuse
import (
"bytes"
"errors"
"os/exec"
)
func unmount(dir string) error {
cmd := exec.Command("fusermount", "-u", dir)
output, err := cmd.CombinedOutput()
if err != nil {
if len(output) > 0 {
output = bytes.TrimRight(output, "\n")
msg := err.Error() + ": " + string(output)
err = errors... | BanzaiMan/gcsfuse | vendor/github.com/jacobsa/bazilfuse/unmount_linux.go | GO | apache-2.0 | 364 |
package org.bigdata.yelp.yelpreco;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Properties;
import org.bigdata.yelp.util.Property;
import com.amazonaws.AmazonClientException;
import com.amazonaws.... | Sapphirine/Yelp-Recommendation-Analysis | deprecated_project/src/main/java/org/bigdata/yelp/yelpreco/RecoLister.java | Java | apache-2.0 | 4,676 |
---
layout: post
title: "从Docker v1.10.3升级到v1.13.0"
subtitle: "Keep with the development of Docker, and enjoy its advantages"
date: 2017-02-14
author: "Robin"
header-img: "img/post-bg-2015.jpg"
catalog: true
tags:
- Docker
---
从2015年3月份将Docker升级到v1.10.3,已经在生产环境中使用了近一年的时间。从整体上看,该版本还是比较稳定的,虽然没有出... | supereagle/supereagle.github.io | _posts/2017/2017-02-14-update-docker.markdown | Markdown | apache-2.0 | 4,837 |
# Agaricus conchatus var. conchatus Bull., 1787 VARIETY
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Herb. Fr. 7: tab. 298 (1787)
#### Original name
Agaricus conchatus var. conchatus Bull., 1787
### Remarks
null | mdoering/backbone | life/Fungi/Basidiomycota/Agaricomycetes/Polyporales/Polyporaceae/Panus/Panus conchatus/ Syn. Agaricus conchatus conchatus/README.md | Markdown | apache-2.0 | 267 |
<?php
/*
* This file is part of the Stinger Media Parser package.
*
* (c) Oliver Kotte <oliver.kotte@stinger-soft.net>
* (c) Florian Meyer <florian.meyer@stinger-soft.net>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespac... | Stinger-Soft/MediaParsingBundle | Parser/MediaParserInterface.php | PHP | apache-2.0 | 875 |
import os
import sys
def test(arg):
return os.system('bin/nosetests -s -d -v %s' % arg)
def main(args):
if not args:
print("Run as bin/python run_failure.py <test>, for example: \n"
"bin/python run_failure.py "
"kazoo.tests.test_watchers:KazooChildrenWatcherTests")
... | bsanders/kazoo | run_failure.py | Python | apache-2.0 | 536 |
<?php
namespace AnhNhan\Converge\Modules\Forum\Views\Objects;
use AnhNhan\Converge as cv;
use AnhNhan\Converge\Modules\Tag\Storage\Tag;
use AnhNhan\Converge\Modules\Tag\Views\TagView;
use AnhNhan\Converge\Views\Panel\Panel;
/**
* @author Anh Nhan Nguyen <anhnhan@outlook.com>
*/
class PaneledForumListing extends For... | AnhNhan/Converge | src/AnhNhan/Converge/Modules/Forum/Views/Objects/PaneledForumListing.php | PHP | apache-2.0 | 1,211 |
# coding=utf-8
# Copyright 2022 The Google Research 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 applicab... | google-research/google-research | rouge/tokenizers.py | Python | apache-2.0 | 1,661 |
/*
* Copyright(C) 2014
* NEC Corporation All rights reserved.
*
* No permission to use, copy, modify and distribute this software
* and its documentation for any purpose is granted.
* This software is provided under applicable license agreement only.
*/
package com.nec.harvest.repository;
import com.nec.crud.C... | dangokuson/Harvest-JP | harvest/src/main/java/com/nec/harvest/repository/MonthlyPurchasesRepository.java | Java | apache-2.0 | 647 |
/**
* Autogenerated by Thrift Compiler (1.0.0-dev)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#ifndef ttmat_internal_CONSTANTS_H
#define ttmat_internal_CONSTANTS_H
#include "ttmat_internal_types.h"
namespace ttmat {
class ttmat_internalConstants {
public:
ttmat_inte... | treadstoneproject/tracethreat-nrml | src/msg/gen-cpp/ttmat_internal_constants.h | C | apache-2.0 | 431 |
package com.yuyh.library.utils;
import android.content.Context;
import android.os.Vibrator;
/**
* 振动器
*
* @author yuyh.
* @date 16/4/9.
*/
public class VibrateUtils {
/**
* 控制手机振动的毫秒数
*
* @param context
* @param milliseconds
*/
public static void vibrate(Context context, long mi... | xqgdmg/DavidNBA-master | CommonLibrary/src/main/java/com/yuyh/library/utils/VibrateUtils.java | Java | apache-2.0 | 1,337 |
/*******************************************************************************
* Copyright 2017 Capital One Services, LLC and Bitwise, 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... | capitalone/Hydrograph | hydrograph.ui/hydrograph.ui.dataviewer/src/main/java/hydrograph/ui/dataviewer/utilities/ViewDataSchemaHelper.java | Java | apache-2.0 | 3,363 |
/**
* @license Copyright 2017 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 law or a... | wardpeet/lighthouse | lighthouse-core/gather/gatherers/dobetterweb/password-inputs-with-prevented-paste.js | JavaScript | apache-2.0 | 1,814 |
# Roegneria turczaninovii var. pohuashanensis 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/Liliopsida/Poales/Poaceae/Elymus/Elymus gmelinii/ Syn. Roegneria turczaninovii pohuashanensis/README.md | Markdown | apache-2.0 | 200 |
/*
*
* ZDCFormCellSingleLine.h
* ZDCChat
*
* Created by Zendesk on 29/01/2015.
*
* Copyright (c) 2016 Zendesk. All rights reserved.
*
* By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master
* Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subs... | mumabinggan/WeygoIPhone | Libraries/Zendesk/ZDCChat.framework/Headers/ZDCFormCellSingleLine.h | C | apache-2.0 | 906 |
#docker run -it --rm logstash logstash -e 'input { stdin { } } output { stdout { } }'
#./logstash-1.5.0.rc2/bin/logstash agent -f ./logstash-opendata-donations.conf
| ohsu-computational-biology/dms-es | services/logstash/config/start_logstash.sh | Shell | apache-2.0 | 165 |
/*
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | googleads/google-ads-java | google-ads-stubs-v9/src/main/java/com/google/ads/googleads/v9/services/stub/BiddingStrategySimulationServiceStub.java | Java | apache-2.0 | 1,570 |
# Copyright 2012 NetApp
# 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 applic... | sniperganso/python-manilaclient | manilaclient/v2/share_snapshots.py | Python | apache-2.0 | 6,363 |
using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaCreditEpSceneAgreementUseModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditEpSceneAgreementUseModel : AopObject
{
/// <summary>
/// 特定业务场景传输的扩展参数,以JSON形式传输。具... | 329277920/Snail | Snail.Pay.Ali.Sdk/Domain/ZhimaCreditEpSceneAgreementUseModel.cs | C# | apache-2.0 | 1,586 |
package univers.torri.fr.service.mapper;
import univers.torri.fr.domain.Authority;
import univers.torri.fr.domain.User;
import univers.torri.fr.service.dto.UserDTO;
import org.springframework.stereotype.Service;
import java.util.*;
import java.util.stream.Collectors;
/**
* Mapper for the entity User and its DTO ca... | PegazusFR/traveler-web-site | src/main/java/univers/torri/fr/service/mapper/UserMapper.java | Java | apache-2.0 | 2,313 |
/*
* Copyright (c) 2018, The Modern Way. 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 b... | themodernway/themodernway-server-core | src/main/groovy/com/themodernway/server/core/logging/IHasLogging.java | Java | apache-2.0 | 1,534 |
/*
* Copyright 2000-2016 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | Legioth/vaadin | shared/src/main/java/com/vaadin/shared/ui/datefield/AbstractTextualDateFieldState.java | Java | apache-2.0 | 811 |
/*
* Copyright (c) 2011-2012, Achim 'ahzf' Friedland <achim@graph-database.org>
* This file is part of Styx <http://www.github.com/Vanaheimr/Styx>
*
* 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 ... | Vanaheimr/Styx | Styx.MF/Arrows/Sniper.cs | C# | apache-2.0 | 16,469 |
using Foundation;
using System;
using UIKit;
using de.upb.hip.mobile.pcl.BusinessLayer.Managers;
using de.upb.hip.mobile.pcl.BusinessLayer.Models;
using System.Collections.Generic;
using CoreGraphics;
namespace HiPMobile.iOS
{
public partial class ExhibitDetailsViewController : UIViewController
{
publ... | HiP-App/HiP-Mobile | HiPMobile/HiPMobile.iOS/ViewControllers/ExhibitDetailsViewController.cs | C# | apache-2.0 | 2,893 |
package hotelmania.ontology;
import jade.content.*;
import jade.util.leap.*;
import jade.core.*;
/**
* Protege name: EndSimulation
* @author ontology bean generator
* @version 2014/05/23, 22:29:18
*/
public class EndSimulation implements AgentAction {
}
| mklew/EMSE-Hotelmania-Ontology | ontology/src/main/java/hotelmania/ontology/EndSimulation.java | Java | apache-2.0 | 258 |
package com.gdn.venice.factory;
import com.gdn.venice.persistence.VenOrderStatus;
import com.gdn.venice.util.VeniceConstants;
public class VenOrderStatusC {
public static VenOrderStatus createVenOrderStatus(){
VenOrderStatus status = new VenOrderStatus();
status.setOrderStatusCode("C");
status.setOrderStatusId... | yauritux/venice-legacy | Venice/Venice-Interface-Model/src/main/java/com/gdn/venice/factory/VenOrderStatusC.java | Java | apache-2.0 | 380 |
# Asterina marginalis Petr. SPECIES
#### Status
ACCEPTED
#### According to
Index Fungorum
#### Published in
null
#### Original name
Asterina marginalis Petr.
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Dothideomycetes/Capnodiales/Asterinaceae/Asterina/Asterina marginalis/README.md | Markdown | apache-2.0 | 179 |
// flow-typed signature: f60a5f9217c7adc1d246cdf1c3ef0c39
// flow-typed version: <<STUB>>/eslint-plugin-react-native_v^3.1.0/flow_v0.53.0
/**
* This is an autogenerated libdef stub for:
*
* 'eslint-plugin-react-native'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage ... | kunall17/zulip-mobile | flow-typed/npm/eslint-plugin-react-native_vx.x.x.js | JavaScript | apache-2.0 | 2,864 |
/*
* 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
* distrib... | markhobson/jtype | src/test/java/com/googlecode/jtype/test/AbstractTypeTest.java | Java | apache-2.0 | 1,956 |
package controllers.goods
/**
* Created by stanikol on 1/29/17.
*/
import javax.inject._
import akka.stream.Materializer
import com.mohiva.play.silhouette.api.Silhouette
import controllers.WebJarAssets
import models.goods._
import play.api.Configuration
import play.api.i18n.{ I18nSupport, Messages, MessagesApi }
i... | stanikol/walnuts | server/app/controllers/goods/Goods.scala | Scala | apache-2.0 | 1,543 |
"use strict";
var chai = require("chai"),
checker = require("./password_checker");
let expect = chai.expect;
describe("The password checker component", () => {
describe("password encryption method", () => {
it("can encrypt a password", () => {
let input = "derp";
return checker... | atsid/drugfax-18f | server/components/password_checker.spec.js | JavaScript | apache-2.0 | 1,757 |
package it.prisma.businesslayer.bizlib.rest.apiclients.monitoring.zabbix.dsl.response;
public class ErroreResponse {
}
| pon-prisma/PrismaDemo | BusinessLayer/src/main/java/it/prisma/businesslayer/bizlib/rest/apiclients/monitoring/zabbix/dsl/response/ErroreResponse.java | Java | apache-2.0 | 121 |
/*
* JSR 354 JavaFX Binding Example
*/
package org.javamoney.examples.javafx;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import org.javamoney.moneta.Money;
import javax.money.CurrencyUnit;
import javax.money.Monetary;
/**
* @author Werner Keil
*/
public class ... | JavaMoney/javamoney-examples | javafx/money-javafx-binding/src/main/java/org/javamoney/examples/javafx/Bill.java | Java | apache-2.0 | 1,041 |
/**
* 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... | bonnetb/sqoop | src/java/org/apache/sqoop/mapreduce/JdbcCallExportJob.java | Java | apache-2.0 | 3,709 |
import { Barman } from '.';
export class Service {
id?: number;
startAt: Date;
endAt: Date;
nbMax: number;
// Association
barmen?: Barman[];
constructor(values: Object = {}) {
Object.assign(this, values);
const castVal = values as Service;
this.startAt = castVal.startAt ? new Date(castV... | K-Fet/K-App | packages/client/src/app/shared/models/Service.ts | TypeScript | apache-2.0 | 486 |
#region Copyright
/*Copyright (C) 2015 Wosad 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 a... | Wosad/Wosad.Dynamo | Wosad.Dynamo.UI/Views/Concrete/ACI318/Details/RebarCastingPositionSelectionView.xaml.cs | C# | apache-2.0 | 1,380 |
#ifndef SimTK_UNITVEC_H
#define SimTK_UNITVEC_H
/* -------------------------------------------------------------------------- *
* Simbody(tm): SimTKcommon *
* -------------------------------------------------------------------------- *
* This is part of the ... | opensim-org/opensim-metabolicsprobes | OpenSim 3.1/sdk/include/SimTK/include/SimTKcommon/internal/UnitVec.h | C | apache-2.0 | 16,378 |
# Copyright 2021 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
from __future__ import annotations
from textwrap import dedent
import pytest
from pants.backend.docker.subsystems.dockerfile_parser import rules as parser_rules
from pants.backend.docke... | patricklaw/pants | src/python/pants/backend/docker/util_rules/docker_build_context_test.py | Python | apache-2.0 | 7,173 |
/** Appcelerator Kroll - licensed under the Apache Public License 2 see LICENSE
* in the root folder for details on the license. Copyright (c) 2008
* Appcelerator, Inc. All Rights Reserved.
*/
#include <signal.h>
#include "ruby_module.h"
#include <Poco/Path.h>
namespace kroll
{
KROLL_MODULE(RubyModule, STRING(MOD... | mital/kroll | modules/ruby/ruby_module.cpp | C++ | apache-2.0 | 2,229 |
/*
* Copyright 2017-2018 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... | thomasdarimont/spring-data-examples | jdbc/mybatis/src/main/java/example/springdata/jdbc/mybatis/AgeGroup.java | Java | apache-2.0 | 814 |
<!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_31) on Mon Oct 03 09:58:14 UTC 2016 -->
<title>com.unity3d.ads.video Class Hierarchy (lib API)</title>
<meta name="date" content="2016-10-0... | bradgearon/unity-ads-android | javadoc/com/unity3d/ads/video/package-tree.html | HTML | apache-2.0 | 6,491 |
package com.hpu.rule.bean;
import android.content.Context;
import cn.bmob.v3.BmobInstallation;
public class MyBmobInstallation extends BmobInstallation {
//设备
private String device;
public MyBmobInstallation(Context context) {
super(context);
}
public String getDevice() {
return... | hjshpu/zhidubao | app/src/main/java/com/hpu/rule/bean/MyBmobInstallation.java | Java | apache-2.0 | 421 |
import React, { Component, createRef } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage, injectIntl } from 'react-intl';
import { getExperiment, getParams, getRunInfo, getRunTags } from '../reducers/Reducers';
import { connect } from 'react-redux';
import './RunView.css';
import { HtmlTableVi... | mlflow/mlflow | mlflow/server/js/src/experiment-tracking/components/RunView.js | JavaScript | apache-2.0 | 21,401 |
/*
* Copyright (C) 2015 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 by app... | consp1racy/android-commons | appcompat-extra/src/main/java/android/support/v7/widget/XpAppCompatEditText.java | Java | apache-2.0 | 3,764 |
<!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_79) on Wed Jul 20 08:39:15 PDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fa... | FasterXML/jackson-databind | docs/javadoc/2.8/com/fasterxml/jackson/databind/ext/class-use/DOMSerializer.html | HTML | apache-2.0 | 4,566 |
log("NOtification View..");
var win = Ti.UI.createWindow({
"backgroundColor": "yellow"
});
function checkForIntent(){
var _intent = Ti.Android.currentActivity.getIntent();
log(JSON.stringify(_intent));
if (_intent.hasExtra('payload')) {
Ti.API.info("*******found " + intent.getStringExtra('payload'));
}
}
... | linnal/TiAndroidNotification | app/assets/android/notificationView.js | JavaScript | apache-2.0 | 443 |
echo "-----------------------------------------------------------"
execDir=.
if [ "$1" = "" ]
then
echo "No directory given, default to current"
Directory="."
else
echo "| Test id : $1"
if [ -d "$1" ]
then
Directory="$1"
else
echo "$1 is not a directory. Exiting."
exit 2
fi
fi
cd $Dir... | bmarchon/LG_H4311 | test/test.sh | Shell | apache-2.0 | 3,657 |
---
layout: page
description: "It Is Never Too Late To Learn."
---
{% for post in paginator.posts %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">
{{ post.title }}
</h2>
{% if post.subtitle %}
<h3 class="post-subtitl... | BoyuanZH/BoyuanZH.github.io | index.html | HTML | apache-2.0 | 1,205 |
package base;
public class Player {
private String name;
private boolean AIControl;
public Player(String name, boolean aIControl) {
super();
this.name = name;
AIControl = aIControl;
}
}
| JayCee235/RTS-game | RTS game/src/base/Player.java | Java | apache-2.0 | 219 |
package io.stardog.email.emailers;
import com.amazonaws.services.simpleemail.AmazonSimpleEmailService;
import com.amazonaws.services.simpleemail.AmazonSimpleEmailServiceClient;
import com.amazonaws.services.simpleemail.model.SendEmailResult;
import com.google.common.collect.ImmutableMap;
import io.stardog.email.data.E... | stardogventures/templatemail | src/test/java/io/stardog/email/emailers/AmazonSesEmailerTest.java | Java | apache-2.0 | 1,678 |
/*!
\file main.c
\brief master send and slave receive data use interrupt mode
*/
/*
Copyright (C) 2016 GigaDevice
2014-12-26, V1.0.0, firmware for GD32F1x0(x=3,5)
2016-01-15, V2.0.0, firmware for GD32F1x0(x=3,5,7,9)
2016-04-30, V3.0.0, firmware update for GD32F1x0(x=3,5,7,9)
*/
#include "gd... | liuxuming/trochili | firmware/GD32F1x0_Firmware_Library_V3.0.0/Examples/SPI/Master_transmit_slave_receive_interrupt/main.c | C | apache-2.0 | 3,919 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.