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 |
|---|---|---|---|---|---|
<?php
class User{
public $userId=0;
public $userCName='';
public $userPass='';
public $userEmail='';
public $userRealName='';
public function setUserId($userId){
$this->userId=$userId;
}
public function getUserId(){
return $this->userId;
}
public function setUserCName($userCName){
$this->... | gemineses/gfg | mvc/model/obj/user.php | PHP | apache-2.0 | 867 |
<?php
/**
* Created by JetBrains PhpStorm.
* User: nmeegama
* Date: 2/3/14
* Time: 10:58 AM
* To change this template use File | Settings | File Templates.
*/
namespace RedLink;
interface IData {
const URI = "uri";
const PATH = "data";
const RESOURCE = "resource";
const SPARQL = "sparql";
const SELE... | redlink-gmbh/redlink-php-sdk | src/RedLink/IData.php | PHP | apache-2.0 | 1,720 |
class Solution {
public:
int getSum(int a, int b) {
while(b) {
int x=a^b; // 位异或实现不进位的位加
int y=(a&b)<<1; // 位与 右移1 实现进位
a=x,b=y;
}
return a;
}
}; | jlygit/leetcode-oj | algorithms/sum-of-two-integers.cpp | C++ | apache-2.0 | 262 |
import tests from "../../support/accessibility/a11y-utils";
tests(0, 150);
| Sage/carbon | cypress/integration/accessibility/a11y-first-part.test.js | JavaScript | apache-2.0 | 76 |
package com.baidu.unbiz.dsp.config;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.spri... | neoremind/spring4-project-archetype | src/test/java/com/baidu/unbiz/dsp/config/YamlTest.java | Java | apache-2.0 | 2,236 |
#
# Copyright 2021 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in com... | Tpo76/centreon-plugins | network/citrix/netscaler/snmp/mode/vserverstatus.pm | Perl | apache-2.0 | 12,826 |
/*
* Copyright 2015-2021 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 app... | lastaflute/lastaflute-test-fortress | src/main/java/org/docksidestage/remote/maihama/showbase/wx/remogen/method/onbodyform/RemoteWxRemogenMethodOnbodyformDeleteParam.java | Java | apache-2.0 | 1,217 |
package br.com.caelum.parsac.parser;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import br.com.caelum.parsac.modelo.Alternativa;
import br.com.caelum.parsac.modelo.Curso;
import br.com.caelum.parsac.modelo.Exercicio;
import br.com.caelum.parsac.modelo.Exerc... | vmattos/parsac | src/br/com/caelum/parsac/parser/ParserAfc.java | Java | apache-2.0 | 4,815 |
/*
* 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 ... | treasure-data/td-client-java | src/test/java/com/treasuredata/client/TestTDHttpClient.java | Java | apache-2.0 | 13,473 |
FROM python:3.8-alpine
ENV PUPPETBOARD_PORT 80
EXPOSE 80
ENV PUPPETBOARD_SETTINGS docker_settings.py
RUN mkdir -p /usr/src/app/
WORKDIR /usr/src/app/
# Workaround for https://github.com/benoitc/gunicorn/issues/2160
RUN apk --update --no-cache add libc-dev binutils
COPY requirements*.txt /usr/src/app/
RUN pip instal... | grandich/puppetboard | Dockerfile | Dockerfile | apache-2.0 | 552 |
# Copyright 2013-2015 ARM 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 applicable law or agreed to in w... | chase-qi/workload-automation | wlauto/instrumentation/misc/__init__.py | Python | apache-2.0 | 17,103 |
'use strict';
const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
const net = require('net');
if (cluster.isMaster) {
cluster.fork().on('message', function(msg) {
if (msg === 'done') this.kill();
});
} else {
const server = net.createServer(common.fail)... | dreamllq/node | test/parallel/test-cluster-rr-ref.js | JavaScript | apache-2.0 | 476 |
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | google-pay/save-to-google-pay-button | examples/html/example.js | JavaScript | apache-2.0 | 1,199 |
/*
* Copyright 2008-2019 by Emeric Vernat
*
* This file is part of the Monitoring plugin.
*
* 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/L... | jenkinsci/monitoring-plugin | src/main/java/org/jvnet/hudson/plugins/monitoring/PluginImpl.java | Java | apache-2.0 | 6,620 |
all: libnss_etcd.so.2
libnss_etcd.so.2: nssrc.c
gcc -shared -fPIC -o libnss_etcd.so.2 -Wl,-soname,libnss_etcd.so.2 nssrc.c
| tingar/libnss_etcd | Makefile | Makefile | apache-2.0 | 125 |
/* 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... | marcus-nl/flowable-engine | modules/flowable-cmmn-engine/src/main/java/org/flowable/cmmn/engine/impl/persistence/entity/CaseInstanceEntityManagerImpl.java | Java | apache-2.0 | 8,211 |
/*
* Copyright 2000-2022 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... | JetBrains/teamcity-vmware-plugin | cloud-vmware-server/src/main/java/jetbrains/buildServer/clouds/base/tasks/UpdateInstancesTask.java | Java | apache-2.0 | 7,634 |
package com.weygo.weygophone.pages.order.commit.model;
import com.weygo.weygophone.base.WGObject;
/**
* Created by muma on 2017/8/19.
*/
public class WGCommitOrderUpdateTimeData extends WGObject {
public WGOrderExpireGood expireGood;
}
| mumabinggan/WeygoPhone | app/src/main/java/com/weygo/weygophone/pages/order/commit/model/WGCommitOrderUpdateTimeData.java | Java | apache-2.0 | 245 |
** Note: the ftdi driver installation has stopped working as of version 10556.0 **
# FTDI sample for Windows Universal (UWP)
A sample application showcasing the FTDI D2XX driver use in Windows Universal projects (UWP). This sample is tested on the Raspberry PI 2 with Windows IOT installed and a FTDI FT232R usb-to-ser... | Jark/FTDISample | README.md | Markdown | apache-2.0 | 4,160 |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Usuario
*/
public class Verciones {
/**
* @param args the command line arguments
*/
... | sebastianhernandezs96/Ejercicio-5 | Linux/src/Verciones.java | Java | apache-2.0 | 470 |
package st.domain.quitanda.client.view.adapters.vholders;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.StaggeredGridLayoutManager;
import android.view.View;
import st.domain.support.android.adapter.BaseRecyclerAdapter;
import st.domain.support.android.adapter.SupportRecyclerAdapter;... | danie555costa/Quitanda | app/src/main/java/st/domain/quitanda/client/view/adapters/vholders/ListItemSellPayment.java | Java | apache-2.0 | 3,071 |
# Meniscium cuspidatum Blume SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Pteridophyta/Polypodiopsida/Polypodiales/Thelypteridaceae/Pronephrium/Pronephrium cuspidatum/ Syn. Meniscium cuspidatum/README.md | Markdown | apache-2.0 | 183 |
// Copyright 2016-2021 The Libsacloud 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... | yamamoto-febc/usacloud | vendor/github.com/sacloud/libsacloud/v2/helper/service/localrouter/builder.go | GO | apache-2.0 | 2,297 |
# Stencila Node.js
## 👋 Introduction
This is the `stencila` package for Node.js. It uses [`Neon`](https://neon-bindings.com/) to expose functionality implemented in the Stencila [Rust library](../rust) to Node.js. The main use of this package is to provide core functionality to the [Electron](https://www.electronjs.... | stencila/stencila | node/README.md | Markdown | apache-2.0 | 2,454 |
function loadNavBar() {'use strict';
var navBarView = Ti.UI.createView({
backgroundImage : '/assets/navBar/backgroundGrey.png',
backgroundColor : '#ffffff',
height : '44dp',
width : '100%',
top : 0
});
// The title
var navBarTitle = Ti.... | andi2/02_singleWindow | Resources/ui/customWidgets/navigationBar.js | JavaScript | apache-2.0 | 3,563 |
package com.example.fw;
import static org.junit.Assert.fail;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
import org.openqa.selenium.ie.... | Angy1/mantis-tests | src/com/example/fw/WebDriverHelper.java | Java | apache-2.0 | 1,392 |
/*
ChibiOS/HAL - Copyright (C) 2006-2014 Giovanni Di Sirio
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... | marcoveeneman/ChibiOS-Tiva | os/hal/ports/STM32/STM32L1xx/stm32_registry.h | C | apache-2.0 | 12,695 |
/*!
* jQuery UI 1.8.1
*
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI
*/
jQuery.ui||function(c){c.ui={version:"1.8.1",plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d)... | aeolusproject/conductor | src/vendor/assets/javascripts/jquery.ui-1.8.1/jquery-ui-1.8.1.custom.min.js | JavaScript | apache-2.0 | 31,425 |
# Copyright 2021 The TensorFlow Probability 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 o... | tensorflow/probability | tensorflow_probability/python/experimental/linalg/no_pivot_ldl_test.py | Python | apache-2.0 | 4,358 |
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// HealthState undocumented
type HealthState string
const (
// HealthStateVUnknown undocumented
HealthStateVUnknown HealthState = "unknown"
// HealthStateVHealthy undocumented
HealthStateVHealthy HealthState = "healthy"
// HealthStateVUnhealthy un... | 42wim/matterbridge | vendor/github.com/yaegashi/msgraph.go/beta/EnumHealth.go | GO | apache-2.0 | 863 |
/**
* Copyright (C) 2018 - present McLeod Moores Software Limited. All rights reserved.
*/
package com.opengamma.core.change;
import org.testng.annotations.Test;
import com.opengamma.util.test.TestGroup;
/**
* Tests for {@link AggregatingChangeManager}.
*/
@Test(groups = TestGroup.UNIT)
public class Aggregating... | McLeodMoores/starling | projects/core/src/test/java/com/opengamma/core/change/AggregatingChangeManagerTest.java | Java | apache-2.0 | 873 |
package ua.anironglass.boilerplate.injection.components;
import javax.inject.Singleton;
import dagger.Component;
import ua.anironglass.boilerplate.injection.modules.TestApplicationModule;
@Singleton
@Component(modules = TestApplicationModule.class)
public interface TestApplicationComponent extends ApplicationCompon... | AnironGlass/MVP-Boilerplate | app/src/androidTest/java/ua/anironglass/boilerplate/injection/components/TestApplicationComponent.java | Java | apache-2.0 | 327 |
/*
* Copyright (C) 2008 Jive Software. 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 ... | Gugli/Openfire | src/plugins/monitoring/src/java/org/jivesoftware/openfire/reporting/stats/DefaultStatsViewer.java | Java | apache-2.0 | 4,857 |
<!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_17a_testAbaNumberCheck_36867_good_p5t.html | HTML | apache-2.0 | 9,184 |
# Cephalaria attenuata Roem. & Schult. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Dipsacales/Dipsacaceae/Cephalaria/Cephalaria attenuata/README.md | Markdown | apache-2.0 | 186 |
# Copyright 2014 Open Source Robotics Foundation, 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... | xqms/catkin_tools | catkin_tools/verbs/catkin_build/cli.py | Python | apache-2.0 | 9,623 |
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ site.descriptio... | chenwenhang/chenwenhang.github.io | _includes/head.html | HTML | apache-2.0 | 4,314 |
# 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
# d... | vmturbo/nova | nova/tests/functional/db/test_instance_mapping.py | Python | apache-2.0 | 7,062 |
.type_16_content .vc_row {
margin-left: -15px;
margin-right: -15px;
margin-bottom: 0;
}
.type_16_content .vc_row .parallax-image {
border-radius: 2px;
box-shadow: 0 1px 3px rgba(0,0,0,0.15), 0 7px 15px rgba(0,0,0,0.42);
border: 7px solid #fff;
background-color: #fff;
max-width: 260px;
height: auto;
}
... | InfinitePW/Laravel5_GroupL | Laravel-group_L/public/css/home/type_16_content.css | CSS | apache-2.0 | 1,882 |
package Physics;
import org.joml.Vector2f;
public abstract class CollideArea {
public abstract boolean inArea(Vector2f dot);
public abstract CollideArea copy();
}
| dmromanov98/GameProject | Engine/src/Physics/CollideArea.java | Java | apache-2.0 | 174 |
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2010 Greenplum, Inc.
//
// @filename:
// CParseHandlerScalarConstValue.cpp
//
// @doc:
//
// Implementation of the SAX parse handler class for parsing scalar ConstVal.
//-----------------------------... | PengJi/gporca-comments | libnaucrates/src/parser/CParseHandlerScalarConstValue.cpp | C++ | apache-2.0 | 2,914 |
package org.springframework.social.kakao.api.impl;
import org.springframework.social.kakao.api.KakaoApi;
import org.springframework.social.kakao.api.TalkOperations;
public class TalkTemplate extends AbstractKakaoOperations implements TalkOperations {
private final KakaoApi kakaoApi;
public TalkTemplate(Kak... | Hongchae/spring-social-kakao | src/main/java/org/springframework/social/kakao/api/impl/TalkTemplate.java | Java | apache-2.0 | 445 |
# Listonella damsela (Love et al., 1982) MacDonell & Colwell, 1986 SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Bacteria/Proteobacteria/Gammaproteobacteria/Vibrionales/Vibrionaceae/Photobacterium/Photobacterium damselae/ Syn. Listonella damsela/README.md | Markdown | apache-2.0 | 221 |
package org.insightech.er.editor.controller.editpolicy.not_element.tablespace;
import org.eclipse.gef.commands.Command;
import org.insightech.er.editor.controller.command.diagram_contents.not_element.tablespace.DeleteTablespaceCommand;
import org.insightech.er.editor.controller.editpolicy.not_element.NotElementCom... | crow-misia/ermaster.old | org.insightech.er/src/org/insightech/er/editor/controller/editpolicy/not_element/tablespace/TablespaceComponentEditPolicy.java | Java | apache-2.0 | 732 |
package org.swtk.commons.dict.wordnet.indexbyname.instance.u.n.l; import java.util.ArrayList; import java.util.Collection; import java.util.Map; import java.util.TreeMap; import org.swtk.common.dict.dto.wordnet.IndexNoun; import com.trimc.blogger.commons.utils.GsonUtils; public final class WordnetNounIndexNameInsta... | torrances/swtk-commons | commons-dict-wordnet-indexbyname/src/main/java/org/swtk/commons/dict/wordnet/indexbyname/instance/u/n/l/WordnetNounIndexNameInstanceUNL.java | Java | apache-2.0 | 2,178 |
# -*- coding: utf-8; -*-
#
# Licensed to CRATE Technology GmbH ("Crate") under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. Crate licenses
# this file to you under the Apache License, Version 2.0 (the "License"... | crate/crate-python | src/crate/client/sqlalchemy/tests/create_table_test.py | Python | apache-2.0 | 6,206 |
# Cheirinia altissima Link SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Brassicales/Brassicaceae/Cheirinia/Cheirinia altissima/README.md | Markdown | apache-2.0 | 174 |
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... | actions-on-google-labs/sherlock-mysteries-java | sherlock-web/src/main/java/com/google/mystery/assets/cvs/CSVDataSource.java | Java | apache-2.0 | 2,134 |
/*
* Copyright 2018 The Apache Software Foundation.
*
* 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... | pfirmstone/JGDMS | JGDMS/jgdms-platform/src/main/java/org/apache/river/api/io/CircularReferenceException.java | Java | apache-2.0 | 878 |
package com.rightutils.gcm.services.gcm;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.os.AsyncTa... | manfenixhome/GCM | app/src/main/java/com/rightutils/gcm/services/gcm/RegGCMReceiver.java | Java | apache-2.0 | 4,802 |
package com.s4game.server.io.action;
import javax.annotation.Resource;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.s4game.core.action.annotation.ActionMapping;
import com.s4game.core.action.annotation.ActionWorker;
import com.s4game.protocol.Message... | zuesgooogle/HappyMj | mj-game/src/main/java/com/s4game/server/io/action/IoMsgOutAction.java | Java | apache-2.0 | 2,043 |
<?php
/**
* DRAIWIKI
* Open source wiki software
*
* @version 1.0 Alpha 1
* @author Robert Monden
* @copyright 2017-2018 DraiWiki
* @license Apache 2.0
*/
namespace DraiWiki\src\admin\models;
if (!defined('DraiWiki')) {
header('Location: ../index.php');
die('You\'re really not supposed ... | Chistaen/DraiWiki | src/admin/models/UploadManagement.class.php | PHP | apache-2.0 | 4,507 |
package app.apphub.devon.walkingquest.Helper;
import android.util.Log;
import app.apphub.devon.walkingquest.database.DatabaseHandler;
import app.apphub.devon.walkingquest.database.objects.Quest;
import app.apphub.devon.walkingquest.database.objects.Reward;
/**
* Created by Devon on 4/1/2017.
*/
public class Strin... | ipettigrew/WalkingQuest | WalkingQuest/app/src/main/java/app/apphub/devon/walkingquest/Helper/StringUtils.java | Java | apache-2.0 | 1,891 |
/*
* Copyright (C) 2015 Square, 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... | square/moshi | examples/src/main/java/com/squareup/moshi/recipes/ReadAndWriteRfc3339Dates.java | Java | apache-2.0 | 2,359 |
sap.ui.define(['sap/ui/core/UIComponent'],
function(UIComponent) {
"use strict";
var Component = UIComponent.extend("sap.m.sample.ListDeletion.Component", {
metadata : {
manifest: "json"
}
});
return Component;
});
| SAP/openui5 | src/sap.m/test/sap/m/demokit/sample/ListDeletion/Component.js | JavaScript | apache-2.0 | 232 |
# Acacia rutaefolia auct. non Link 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/Fabales/Fabaceae/Acacia/Acacia leioderma/ Syn. Acacia rutaefolia/README.md | Markdown | apache-2.0 | 189 |
# Cassia reticulata Willd. SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Enum. pl. 1:443. 1809
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Fabales/Fabaceae/Senna/Senna reticulata/ Syn. Cassia reticulata/README.md | Markdown | apache-2.0 | 198 |
# Caryospermum alpestre Kuntze SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Celastrales/Celastraceae/Caryospermum/Caryospermum alpestre/README.md | Markdown | apache-2.0 | 178 |
# Cyclotella glomerata-stelligera Bachmann-Cleve & Grunow SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Chromista/Ochrophyta/Coscinodiscophyceae/Thalassiosirales/Stephanodiscaceae/Cyclotella/Cyclotella glomerata-stelligera/README.md | Markdown | apache-2.0 | 213 |
# Pogonanthera squamulata Korth. ex Blume 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/Myrtales/Melastomataceae/Pachycentria/Pachycentria pulverulenta/ Syn. Pogonanthera squamulata/README.md | Markdown | apache-2.0 | 196 |
# Erucaria hypognea Viv. SPECIES
#### Status
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Brassicales/Brassicaceae/Erucaria/Erucaria hypognea/README.md | Markdown | apache-2.0 | 172 |
# Heterolepis conyzoides Bertero ex DC. SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Senecio adenotrichius/ Syn. Heterolepis conyzoides/README.md | Markdown | apache-2.0 | 194 |
# Codiolum nordenskjoldianum Kjellman SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Chlorophyta/Ulvophyceae/Codiolales/Acrosiphoniaceae/Urospora/Urospora wormskioldii/ Syn. Codiolum nordenskjoldianum/README.md | Markdown | apache-2.0 | 192 |
# Ixeris dentata subsp. kitayamensis Murata SUBSPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/ Syn. Ixeris dentata kitayamensis/README.md | Markdown | apache-2.0 | 201 |
# Salsola globulifera Fenzl 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/Magnoliopsida/Caryophyllales/Chenopodiaceae/Salsola/Salsola globulifera/README.md | Markdown | apache-2.0 | 183 |
# Ormosia obscurinervia Tanaka & Odash. 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/Fabales/Fabaceae/Ormosia/Ormosia simplicifolia/ Syn. Ormosia obscurinervia/README.md | Markdown | apache-2.0 | 194 |
/*
* 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 ... | kl0u/flink | flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/AsyncCheckpointRunnable.java | Java | apache-2.0 | 15,931 |
#include "DA2TextWin.h"
bool cTextWin::SetWindow(int x, int y, char *txt){
xPos=x;
yPos=y;
//text.Init(ddGfx);
strcpy(str,txt);
return true;
}
bool cTextWin::Render(){
SDL_Rect r;
Uint8 R, G, B, A;
r.x=xPos;
r.y=yPos;
r.w=545;
r.h=175;
//translucent background
SDL_GetRenderDrawColor(display->... | DungMunkey/Dark-Ages-2 | DA2TextWin.cpp | C++ | apache-2.0 | 1,136 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>BabylonJS - tools</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="author" href="humans.txt" />
<!-- ... | BabylonJS/Samples | build/learn/index.html | HTML | apache-2.0 | 16,236 |
/* Generic definitions */
#define PACKAGE it.unimi.dsi.fastutil.ints
#define VALUE_PACKAGE it.unimi.dsi.fastutil.bytes
/* Assertions (useful to generate conditional code) */
#unassert keyclass
#assert keyclass(Integer)
#unassert keys
#assert keys(primitive)
#unassert valueclass
#assert valueclass(Byte)
#unassert val... | karussell/fastutil | src/it/unimi/dsi/fastutil/ints/Int2ByteFunction.c | C | apache-2.0 | 15,042 |
/*
* Copyright (C) 2017 Renat Sarymsakov.
*
* 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 ... | ragnor-rs/visum | demo/src/main/java/io/reist/sandbox/weather/model/local/WeatherEntity.java | Java | apache-2.0 | 2,691 |
# Amphilothaceae FAMILY
#### Status
ACCEPTED
#### According to
Integrated Taxonomic Information System
#### Published in
null
#### Original name
null
### Remarks
null | mdoering/backbone | life/Protozoa/Dinophyta/Dinophyceae/Peridiniales/Amphilothaceae/README.md | Markdown | apache-2.0 | 171 |
<!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_07) on Fri Dec 19 15:11:14 CET 2008 -->
<TITLE>
Uses of Interface gameframework.game.Game
</TITLE>
<META NAME="date" CONTENT="2008-12-19">
<LINK RE... | elyas-bhy/octolink | source/doc/gameframework/game/class-use/Game.html | HTML | apache-2.0 | 9,465 |
<!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 -->
<title>com.centurylink.mdw.adapter (MDW 6 API JavaDocs)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="St... | CenturyLinkCloud/mdw | docs/_docs/javadoc/com/centurylink/mdw/adapter/package-summary.html | HTML | apache-2.0 | 7,337 |
# junior
Начальный проект для курса Junior
http://job4j.ru
| MrBlackBear/ashalobasov | README.md | Markdown | apache-2.0 | 83 |
package org.intellij.ibatis.dom.configuration;
import com.intellij.javaee.model.xml.CommonDomModelElement;
import com.intellij.psi.PsiFile;
import com.intellij.util.xml.Convert;
import com.intellij.util.xml.GenericAttributeValue;
import org.intellij.ibatis.dom.converters.SqlMapFileConverter;
import org.jetbrain... | code4craft/ibatis-plugin | src/org/intellij/ibatis/dom/configuration/SqlMap.java | Java | apache-2.0 | 582 |
package nyla.solutions.core.patterns.creational.generator;
import nyla.solutions.core.patterns.expression.IsEmailExpression;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
class EmailCreatorTest
{
@Test
public void test_create()
{
EmailCreator subj... | nyla-solutions/nyla | src/test/java/nyla/solutions/core/patterns/creational/generator/EmailCreatorTest.java | Java | apache-2.0 | 625 |
/**
* Copyright 2012 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 applic... | gamebytes/blk-game | src/blk/sim/inventory.js | JavaScript | apache-2.0 | 5,067 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
<TITLE>Automatic analysis of twofish encryption algorithm</TITLE>
<link rel="stylesheet" type="text/css" href="CrypTool_Help.css">
</HEAD>
<!-- multiple keywords for CrypTool... | flomar/CrypTool-VS2015 | trunk/CrypTool/hlp_en/hid_analyse_aes_twofish.html | HTML | apache-2.0 | 2,039 |
package io.github.ketao1989.rpc;
import scala.tools.cmd.gen.AnyVals;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* @author: tao.ke Date: 2016/12/5 Time: 下午9:06
* @version: \$Id$
*/
public class ServiceProcesso... | ketao1989/tools | src/main/java/io/github/ketao1989/rpc/ServiceProcessor.java | Java | apache-2.0 | 1,394 |
# Univiscidiatus elegans (Rchb.f.) Szlach. 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/Acianthus/Acianthus elegans/ Syn. Univiscidiatus elegans/README.md | Markdown | apache-2.0 | 197 |
/**
* @author Oleg Cherednik
* @since 11.12.2017
*/
public class Solution {
static class Node {
int val; //Value
int ht; //Height
Node left; //Left child
Node right; //Right child
}
private static Node createNode(int val) {
Node node = new Node();
... | oleg-cherednik/hackerrank | Data Structures/Balanced Trees/Self Balancing Tree/Solution.java | Java | apache-2.0 | 1,944 |
<!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_11_testAbaNumberCheck_23162_bad_6xn.html | HTML | apache-2.0 | 10,984 |
// ImGui SDL2 binding with OpenGL3
// In this binding, ImTextureID is used to store an OpenGL 'GLuint' texture identifier. Read the FAQ about ImTextureID in imgui.cpp.
// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this.
// If you use this binding you'll nee... | texel-sensei/eversim | external/imgui/src/imgui_impl_sdl_gl3.cpp | C++ | apache-2.0 | 16,636 |
// ========================================================================
// Copyright (c) 2004-2009 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms o... | wang88/jetty | jetty-servlets/src/main/java/org/eclipse/jetty/servlets/QoSFilter.java | Java | apache-2.0 | 13,432 |
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
using Ku.Core.CMS.Domain.Dto.DataCenter;
using Ku.Core.CMS.Domain.Entity.DataCenter;
using Ku.Core.CMS.IService.DataCenter;
using Ku.Core.CMS.Web.Base;
using Ku.Core.CMS.Web.Security;
namespace Ku.Core.CMS.Web.Backend.Pages... | kulend/Vino.Core.CMS | source/Ku.Core.CMS.Web.Backend/Pages/DataCenter/App/Index.cshtml.cs | C# | apache-2.0 | 1,644 |
package dk.lessismore.nojpa.masterworker.bean;
/**
* Created : by IntelliJ IDEA.
* User: seb
* Date: 22-10-2010
* Time: 16:04:19
* To change this template use File | Settings | File Templates.
*/
public interface RemoteBeanInterface {
public void closeDownRemoteBean();
public double getProgress();
}... | NoJPA-LESS-IS-MORE/NoJPA | nojpa_common/src/main/java/dk/lessismore/nojpa/masterworker/bean/RemoteBeanInterface.java | Java | apache-2.0 | 321 |
# vericredClient.PlanDeleted
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
| vericred/vericred-javascript | docs/PlanDeleted.md | Markdown | apache-2.0 | 141 |
package com.khs.microservice.whirlpool.common;
public class Command {
// type is for JSON
private String type;
private String id;
private String command;
private String subscription;
public String getType() { return type; }
public void setType(String type) { this.type = type; }
public String... | jwboardman/whirlpool | common/src/main/java/com/khs/microservice/whirlpool/common/Command.java | Java | apache-2.0 | 1,771 |
#include <zk/server/server_tests.hpp>
#include <algorithm>
#include <chrono>
#include <cstring>
#include <iostream>
#include <thread>
#include "client.hpp"
#include "error.hpp"
#include "multi.hpp"
#include "string_view.hpp"
namespace zk
{
static buffer buffer_from(string_view str)
{
return buffer(str.data(), s... | tgockel/zookeeper-cpp | src/zk/client_tests.cpp | C++ | apache-2.0 | 6,726 |
import numpy as np
import matplotlib.pyplot as plt #Used for graphing audio tests
import pyaudio as pa
import wave
from time import sleep
#Constants used for sampling audio
CHUNK = 1024
FORMAT = pa.paInt16
CHANNELS = 1
RATE = 44100 # Must match rate at which mic actually samples sound
RECORD_TIMEFRAME = 1.0 #Time in s... | cornell-cup/cs-minibot-platform | python-interface/src/MiniBotFramework/Sound/live_audio_sample.py | Python | apache-2.0 | 3,940 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Appacitive.Sdk.Wcf
{
public class SessionCleanupProxy : ISession, IDisposable
{
public SessionCleanupProxy(ISession internalSession, TimeSpan heartbeat,... | appacitive/appacitive-dotnet-sdk | src/Appacitive.Sdk.Net45/Wcf/SessionCleanupProxy.cs | C# | apache-2.0 | 2,920 |
# CHANGELOG
This file is used to list changes made in each version of the unfi cookbook.
## v2.0.0 (2020-02-01)
- Get InSpec tests passing
- Bump minimum Chef Infra Client version to 13+ for `apt_update` resource
- Add dependency on the `java` cookbook and remove obsolete Java 6 support
- Removed support for Debian ... | tas50/unifi | CHANGELOG.md | Markdown | apache-2.0 | 1,589 |
/*
* Copyright 2019, EnMasse authors.
* License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
*/
package io.enmasse.address.model;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
import javax.validation.Va... | jenmalloy/enmasse | api-model/src/main/java/io/enmasse/address/model/AddressTypeInformation.java | Java | apache-2.0 | 3,004 |
/**
* Users collection.
* Initializes Users collection and provides methods
* for accessing the collection.
* */
users = "Users";
Users = new Mongo.Collection(users);
/**
* Schema for Users
*/
Users.attachSchema(new SimpleSchema({
userName:{
label: "Username",
type: String,
optional: false,
... | CutieOranges/FarmersMarket | app/lib/collections/Users.js | JavaScript | apache-2.0 | 942 |
package com.dangdang.ddframe.job.plugin.sharding.strategy;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import com.dangdang.ddframe.job.internal.sharding.strategy.JobShardingStrategy;
import com.dangdang.ddframe.job.internal.sharding.strategy.JobShardingStrategyOption;
/**
* 根据作业名的哈希值对服务... | artoderk/elastic-jobx | elastic-jobx-core/src/main/java/com/dangdang/ddframe/job/plugin/sharding/strategy/RotateServerByNameJobShardingStrategy.java | Java | apache-2.0 | 1,467 |
# Lachnea abundans P. Karst., 1869 SPECIES
#### Status
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Not. Sällsk. Fauna et Fl. Fenn. Förh. 10: 124 (1869)
#### Original name
Lachnea abundans P. Karst., 1869
### Remarks
null | mdoering/backbone | life/Fungi/Ascomycota/Pezizomycetes/Pezizales/Pyronemataceae/Trichophaea/Trichophaea abundans/ Syn. Lachnea abundans/README.md | Markdown | apache-2.0 | 267 |
// ======================================================================== //
// Copyright 2009-2017 Intel Corporation //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); //
// y... | Sjoerdie/embree | common/math/vec3ba.h | C | apache-2.0 | 6,568 |
package com.coolweather.app.activity;
import java.util.ArrayList;
import java.util.List;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.text.T... | tony-blue/coolweather | src/com/coolweather/app/activity/ChooseAreaActivity.java | Java | apache-2.0 | 7,411 |
if (typeof PATH_TO_THE_REPO_PATH_UTILS_FILE === 'undefined') {
PATH_TO_THE_REPO_PATH_UTILS_FILE = "https://raw.githubusercontent.com/highfidelity/hifi_tests/master/tests/utils/branchUtils.js";
Script.include(PATH_TO_THE_REPO_PATH_UTILS_FILE);
nitpick = createNitpick(Script.resolvePath("."));
}
nitpick.... | highfidelity/hifi_tests | tests/content/entity/image/keepAspectRatio/test.js | JavaScript | apache-2.0 | 2,006 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.