repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
cklxmu/aliyun-openapi-go-sdk
rds/2014-08-15/ModifyDBInstanceNetworkType_test.go
461
package rds import ( "fmt" "testing" ) func TestModifyDBInstanceNetworkType(t *testing.T) { var req ModifyDBInstanceNetworkTypeRequest req.Init() req.SetFormat("JSON") req.SetRegionId("cn-shenzhen") var accessId = "Ie65kUInu5GeAsma" var accessSecret = "8cCqoxdYU9zKUihwXFXiN1HEACBDwB" resp, err := ModifyDBIns...
apache-2.0
jentfoo/aws-sdk-java
aws-java-sdk-kinesisvideo/src/main/java/com/amazonaws/services/kinesisvideo/AmazonKinesisVideoPutMedia.java
10008
/* * Copyright 2012-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
apache-2.0
torakiki/sambox
src/test/java/org/sejda/sambox/pdmodel/graphics/optionalcontent/TestOptionalContentGroups.java
18662
/* * 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 ...
apache-2.0
rfoltyns/log4j2-elasticsearch
log4j2-elasticsearch-core/src/test/java/org/appenders/log4j2/elasticsearch/AsyncBatchDeliveryPluginTest.java
11724
package org.appenders.log4j2.elasticsearch; /*- * #%L * log4j2-elasticsearch * %% * Copyright (C) 2020 Rafal Foltynski * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
apache-2.0
smartsheet-platform/smartsheet-ruby-sdk
test/unit/smartsheet/endpoints/sheets/comments_test.rb
1724
require_relative '../../../../test_helper' require_relative '../endpoint_test_helper' class CommentsTest < Minitest::Test extend Smartsheet::Test::EndpointHelper attr_accessor :mock_client attr_accessor :smartsheet_client def category smartsheet_client.sheets.comments end def self.endpoints [ ...
apache-2.0
QBNemo/spring-mvc-showcase
src/main/java/org/springframework/web/servlet/view/RedirectView.java
22944
/* * Copyright 2002-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
apache-2.0
vmayoral/freeDDS
src/publication/publisher.c
959
/* OMG DDS Publisher implementation */ #include "publication/publisher.h" #include <stdlib.h> Publisher * new_Publisher(QoSPolicy* qos, DomainParticipant* dmp) { Publisher *p = (Publisher *) malloc(sizeof(Publisher)); p->qos = qos; p->domain_participant = dmp; return p; } void delete_Publisher(Publisher *self) ...
apache-2.0
shwetasshinde24/Panoply
case-studies/h2o/src/H2oEnclave/IO/sgx_fcntl.cpp
2173
#include <sgx_fcntl_util.h> #include <sgx_ocall_util.h> #include <sgx_thread.h> INIT_LOCK(ocall_open2); INIT_LOCK(ocall_creat); INIT_LOCK(ocall_openat2); INIT_LOCK(ocall_fcntl1); INIT_LOCK(ocall_fcntl2); INIT_LOCK(ocall_fcntl3); int sgx_wrapper_open(const char *pathname, int flags, ...) { va_list ap; mode_t ...
apache-2.0
aws/aws-sdk-java
aws-java-sdk-ssmincidents/src/main/java/com/amazonaws/services/ssmincidents/model/ListTimelineEventsResult.java
6834
/* * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
apache-2.0
OSEHRA/ISAAC
core/api/src/main/java/sh/isaac/api/Util.java
3905
/* * 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...
apache-2.0
agolovatjuk/alexander4j
README.md
544
# alexander4j [![Build Status](https://travis-ci.org/agolovatjuk/alexander4j.svg?branch=master)](https://travis-ci.org/agolovatjuk/alexander4j) [![codecov](https://codecov.io/gh/agolovatjuk/alexander4j/branch/master/graph/badge.svg)](https://codecov.io/gh/agolovatjuk/alexander4j) http://job4j.ru/ Моя цель - освоить j...
apache-2.0
garethahealy/jboss-fuse-examples
mbeans-expose/src/test/java/com/garethahealy/mbeans/expose/routes/CamelContextTest.java
923
/* * #%L * GarethHealy :: JBoss Fuse Examples :: MBeans Expose * %% * Copyright (C) 2013 - 2018 Gareth Healy * %% * 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-2.0
googleads/google-ads-java
google-ads-stubs-v10/src/main/java/com/google/ads/googleads/v10/resources/SharedCriterionOrBuilder.java
8879
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v10/resources/shared_criterion.proto package com.google.ads.googleads.v10.resources; public interface SharedCriterionOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.googleads.v10.resources.Shared...
apache-2.0
hilmiat/NF_android_complete
Pertemuan2/pertemuan_dua/src/main/java/com/example/DemoConditional.java
707
package com.example; /** * Created by hilmiat on 7/29/17. */ public class DemoConditional { public static char getGrade(int nilai){ char grade = 'D'; if(nilai > 85){ grade = 'A'; }else if(nilai > 69){ grade = 'B'; }else if(nilai >= 60){ grade =...
apache-2.0
resin-io-library/base-images
balena-base-images/node/beaglebone-green-wifi/fedora/34/17.6.0/build/Dockerfile
2760
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-wifi-fedora:34-build ENV NODE_VERSION 17.6.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyse...
apache-2.0
sijie/bookkeeper
bookkeeper-server/src/test/java/org/apache/bookkeeper/client/BookKeeperTest.java
49996
/* * * 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"); y...
apache-2.0
ben-ng/swift
tools/SourceKit/lib/SwiftLang/CodeCompletion.h
8445
//===--- CodeCompletion.h - -------------------------------------*- C++ -*-===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/L...
apache-2.0
efetepe/magicdocumentation
framework/php/Template.php
666
<?php class Template { protected $template; protected $variables = array(); public function __construct($template) { $this->template = $template; } public function __get($key) { return $this->variables[$key]; } public function __set($key, $value) { $th...
apache-2.0
thbonk/electron-openui5-boilerplate
libs/openui5-runtime/resources/sap/uxap/ObjectPageLayout.designtime-dbg.js
1307
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2017 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides the Design Time Metadata for the sap.uxap.ObjectPageLayout control sap.ui.define([], function() { "use strict"; retur...
apache-2.0
googleapis/gapic-generator-ruby
shared/output/cloud/showcase/test/google/showcase/v1beta1/echo_operations_test.rb
10911
# frozen_string_literal: true # Copyright 2018 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 applicabl...
apache-2.0
SeNDA-UAB/aDTN-platform
bundleAgent/executor/include/worker.h
1490
/* * Copyright (c) 2014 SeNDA * * 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 writi...
apache-2.0
cyborg314/Borg_Daniel_Project4
build/iphone/headers/JavaScriptCore/TiExport.h
7001
/** * Borg_Daniel_Project4 Borg_Daniel_Project4 License * This source code and all modifications done by Borg_Daniel_Project4 * are licensed under the Apache Public License (version 2) and * are Copyright (c) 2009-2014 by Borg_Daniel_Project4, Inc. */ /* * Copyright (C) 2013 Apple Inc. All rights reserved. * *...
apache-2.0
akiellor/selenium
java/server/test/org/openqa/selenium/server/browserlaunchers/SafariLauncherIntegrationTest.java
1913
package org.openqa.selenium.server.browserlaunchers; import junit.framework.TestCase; import org.apache.commons.logging.Log; import org.openqa.jetty.log.LogFactory; import org.openqa.selenium.browserlaunchers.AsyncExecute; import org.openqa.selenium.server.RemoteControlConfiguration; /** * {@link org.openqa.seleniu...
apache-2.0
aemino/discord.js
src/structures/Guild.js
34442
const Long = require('long'); const User = require('./User'); const Role = require('./Role'); const Emoji = require('./Emoji'); const Presence = require('./Presence').Presence; const GuildMember = require('./GuildMember'); const Constants = require('../util/Constants'); const Collection = require('../util/Collection');...
apache-2.0
zimingd/synapsePythonClient
tests/integration/test_command_line_client.py
36272
# -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function from __future__ import unicode_literals from builtins import str import six import logging import filecmp import os import re import sys import uuid import json import time from nose.plug...
apache-2.0
g8os/home
Previous Releases.md
2665
# Previous releases - October 11, 2017: **[1.1.0-alpha-8](release_notes/1.1.0-alpha-8.md)**: [0-Initramfs Builder](https://github.com/zero-os/0-initramfs/tree/1.1.0-alpha-8), [0-Core](https://github.com/zero-os/0-core/tree/1.1.0-alpha-8), [0-FS](https://github.com/zero-os/0-fs/tree/1.1.0-alpha-8), [Zero-OS Orchestrato...
apache-2.0
lisencn11/lisencn11.github.io
_posts/2016-08-20-Leetcode-256-summary.md
1654
--- layout: post title: Leetcode Problem 256 Summary date: 2016-08-20 categories: blog tags: [study] --- # 题目 There are a row of n houses, each house can be painted with one of the three colors: red, blue or green. The cost of painting each house with a certain color is different. You have to paint all the houses su...
apache-2.0
keith-turner/accumulo
core/src/main/java/org/apache/accumulo/core/metadata/TabletFileUtil.java
1705
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
apache-2.0
istio/istio.io
content/en/docs/examples/microservices-istio/setup-kubernetes-cluster/index.md
9160
--- title: Setup a Kubernetes Cluster overview: Set up your Kubernetes cluster for the tutorial. weight: 2 owner: istio/wg-docs-maintainers test: no --- {{< boilerplate work-in-progress >}} In this module, you set up a Kubernetes cluster that has Istio installed and a namespace to use throughout the tutorial. {{< wa...
apache-2.0
scarrupt/Capstone-Project
app/src/main/java/com/codefactoring/android/backlogtracker/sync/fetchers/UserDataFetcher.java
3378
package com.codefactoring.android.backlogtracker.sync.fetchers; import android.util.Log; import com.codefactoring.android.backlogapi.BacklogApiClient; import com.codefactoring.android.backlogapi.models.User; import com.codefactoring.android.backlogtracker.sync.models.BacklogImage; import com.codefactoring.android.bac...
apache-2.0
zeit/now-cli
examples/hugo/themes/ananke/exampleSite/content/about/_index.md
862
--- title: 'About' description: 'A few years ago, while visiting or, rather, rummaging about Notre-Dame, the author of this book found, in an obscure nook of one of the towers, the following word, engraved by hand upon the wall: —ANANKE.' featured_image: '' --- {{< figure src="/images/Victor_Hugo-Hunchback.jpg" title=...
apache-2.0
thobbs/cassandra-dtest
materialized_views_test.py
61309
import collections import re import sys import time import traceback from functools import partial from multiprocessing import Process, Queue from unittest import skipIf from cassandra import ConsistencyLevel from cassandra.cluster import Cluster from cassandra.query import SimpleStatement # TODO add in requirements.t...
apache-2.0
apetresc/aws-sdk-for-java-on-gae
src/main/java/com/amazonaws/services/autoscaling/model/transform/LimitExceededExceptionUnmarshaller.java
1518
/* * Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "l...
apache-2.0
MartinLoeper/KAMP-DSL
edu.kit.ipd.sdq.kamp.ruledsl/src/edu/kit/ipd/sdq/kamp/ruledsl/runtime/rule/StopwatchRule.java
2567
package edu.kit.ipd.sdq.kamp.ruledsl.runtime.rule; import java.util.concurrent.TimeUnit; import com.google.common.base.Stopwatch; import edu.kit.ipd.sdq.kamp.architecture.AbstractArchitectureVersion; import edu.kit.ipd.sdq.kamp.propagation.AbstractChangePropagationAnalysis; import edu.kit.ipd.sdq.kamp.ruledsl.suppor...
apache-2.0
Ubicall/node-red
red/ubicall/plist/utils/index.js
3754
var when = require('when'); var request = require('request'); var settings = require("../../../../settings"); var log = require("../../../log"); // view components var view_start = require('../nodes/view/start'); var view_choice = require('../nodes/view/choice'); var view_form = require('../nodes/view/form'); var view_...
apache-2.0
picklesrus/blockly
demos/code/code.js
17281
/** * @license * Copyright 2012 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 ...
apache-2.0
dyf102/blogrepo
blog/source/_posts/About-Me.md
529
title: README date: 2015-11-24 13:28:06 tags: --- # /* About ## I am a graduating Cmputer Science student from University of Alberta and looking for a Software Engineering position in North America. This is my [resume](https://www.dropbox.com/s/5r85kpjiy0ngbzg/Resume_20151130.pdf?dl=0). ##Extracurricular Activities: ...
apache-2.0
idumancic/bookify
web/src/main/java/com/bookify/web/models/PaymentViewModel.java
1184
package com.bookify.web.models; import com.bookify.core.Bill; import com.bookify.core.BillItem; import java.util.ArrayList; /** * Created by idumancic on 11/07/2017. */ public class PaymentViewModel { private Bill bill; private String username; private ArrayList<ItemViewModel> billItems; private S...
apache-2.0
spinnaker/halyard
halyard-cli/src/main/java/com/netflix/spinnaker/halyard/cli/command/v1/config/deploy/ha/AbstractHaServiceEnableDisableCommand.java
2298
/* * Copyright 2018 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 in...
apache-2.0
camunda/feel-scala
src/main/scala/org/camunda/feel/impl/builtin/ListBuiltinFunctions.scala
13252
package org.camunda.feel.impl.builtin import org.camunda.feel.impl.builtin.BuiltinFunction.builtinFunction import org.camunda.feel.{Number, logger} import org.camunda.feel.syntaxtree.{ Val, ValBoolean, ValError, ValFunction, ValList, ValNull, ValNumber, ValString } import scala.annotation.tailrec obj...
apache-2.0
Intel-EPID-SDK/epid-sdk
ext/ipp-crypto/sources/ippcp/asm_intel64/pcpsha256l9as.asm
18846
;=============================================================================== ; Copyright 2017-2020 Intel 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.apa...
apache-2.0
hochanh/hochanh.github.io
rtk/rtk3-remain/2815.md
1221
--- layout: kanji-remain v4: 2815 kanji: 鮭 keyword: salmon strokes: 17 on-yomi: カイ permalink: /rtk/鮭/ --- ## Koohii stories: 1) [<a href="http://kanji.koohii.com/profile/Megaqwerty">Megaqwerty</a>] 17-7-2007(30): <strong>Salmon</strong> are <em>fish</em> that go over <em>ivy</em> trying to get back to their breeding...
apache-2.0
tuxology/bcc
tests/cc/test_usdt_probes.cc
12086
/* * Copyright (c) 2016 GitHub, 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...
apache-2.0
alexstuart/ukftools
geteduGAIN.sh
538
#!/bin/bash # # Downloads the eduGAIN metadata aggregate # # NB: a HEAD request gets a "HTTP/1.1 405 Method Not Allowed" # Tomasz suggested http://mds.edugain.org/feed-sha256.xml # # Configuration options: DIRECTORY='/home/astuart4/eduGAIN/' eduGAIN='http://mds.edugain.org/feed-sha256.xml' eduGAINtest='http://mds-test....
apache-2.0
blueboxgroup/neutron
neutron/tests/unit/test_l3_agent.py
100926
# Copyright 2012 VMware, 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 ...
apache-2.0
Wellington-Junior/ingressos
src/app/pages/evento/evento-editar/evento-editar.component.ts
3826
import { Component, ElementRef, NgZone, OnInit, ViewChild} from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { EventoModel } from './../../../model/evento.model'; import { TipoIngressoModel } from './../../../model/tipoingresso.model'; import { EventoService } from './../../../serv...
apache-2.0
ryantenney/metrics-spring
src/main/java/com/ryantenney/metrics/spring/reporter/AbstractReporterFactoryBean.java
5530
/** * Copyright (C) 2012 Ryan W Tenney (ryan@10e.us) * * 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...
apache-2.0
mminella/composed-task-runner
spring-cloud-starter-task-composedtaskrunner/src/test/java/org/springframework/cloud/task/app/composedtaskrunner/configuration/ComposedRunnerVisitorConfiguration.java
6001
/* * Copyright 2017 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 applic...
apache-2.0
ridoo/IlwisCore
ilwiscoreui/propertyeditors/mapinformationattributesetter.cpp
1233
#include "kernel.h" #include "ilwisdata.h" #include "datadefinition.h" #include "columndefinition.h" #include "table.h" #include "visualattributemodel.h" #include "mapinformationattributesetter.h" REGISTER_PROPERTYEDITOR("mapinfopropertyeditor",MapInformationPropertySetter) MapInformationPropertySetter::MapInformatio...
apache-2.0
knative/pkg
test/upgrade/testing_operations_test.go
7868
/* Copyright 2020 The Knative 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 agreed to in writing, soft...
apache-2.0
kelltrick/roslyn
src/Features/Core/Portable/ConvertToInterpolatedString/AbstractConvertPlaceholderToInterpolatedStringRefactoringProvider.cs
13484
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeA...
apache-2.0
aws/aws-sdk-cpp
aws-cpp-sdk-migration-hub-refactor-spaces/include/aws/migration-hub-refactor-spaces/model/GetResourcePolicyRequest.h
3039
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/migration-hub-refactor-spaces/MigrationHubRefactorSpaces_EXPORTS.h> #include <aws/migration-hub-refactor-spaces/MigrationHubRefactorSpacesRequest.h> #include <aws/core/utils...
apache-2.0
heinousjay/JibbrJabbr
kernel/src/test/resources/jj/css/test/replacement.css
602
@import "test.css"; @import "http://example.com/something.css"; .box-icon { background-image: url(images/box-icon.png); } .rox-icon { background-image: url("images/other/rox-icon.png") no-repeat 1% 25%; } .sox-icon { background-image: url('images/./sox-icon.png'); } .sox-icon2 { background-image: url('/images/s...
apache-2.0
Selventa/model-builder
tools/groovy/doc/html/gapi/org/codehaus/groovy/package-frame.html
1461
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML> <HEAD> <TITLE> org.codehaus.groovy </TITLE> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <META NAME="keywords" CONTENT="org/codehaus/groovy package"> <LINK REL ="stylesheet" TYPE="text/...
apache-2.0
aol/cyclops
cyclops/src/test/java/cyclops/control/trytests/TryTest.java
8892
package cyclops.control.trytests; import cyclops.control.Either; import cyclops.control.Future; import cyclops.control.Ior; import cyclops.control.Maybe; import cyclops.control.Option; import cyclops.control.Trampoline; import cyclops.control.Try; import cyclops.function.Monoid; import cyclops.companion.Semigroups; im...
apache-2.0
mdoering/backbone
life/Plantae/Ivonia/Ivonia amplexicaulis/README.md
176
# Ivonia amplexicaulis Vell. SPECIES #### Status ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
apache-2.0
BrentDouglas/chainlink
core/src/main/java/io/machinecode/chainlink/core/jsl/fluent/task/FluentCheckpointAlgorithm.java
1211
/* * Copyright 2015 Brent Douglas and other contributors * as indicated by the @author tags. 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.or...
apache-2.0
classmethod-sandbox/sparrow
src/main/java/jp/classmethod/sparrow/model/LineMessageEntityRepository.java
1590
/* * Copyright 2017 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 applicab...
apache-2.0
nanorepublica/wedding
c4628be130c468a984728868d0f261680de56220.html
40
24d35e46ec4bd24f6cb2cfacf41fb8dfaa666fc8
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Ericales/Primulaceae/Tinus/Tinus wallichii/README.md
172
# Tinus wallichii Kuntze SPECIES #### Status ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
apache-2.0
nghiant2710/base-images
balena-base-images/node/nitrogen6xq2g/debian/sid/15.7.0/run/Dockerfile
2937
# AUTOGENERATED FILE FROM balenalib/nitrogen6xq2g-debian:sid-run ENV NODE_VERSION 15.7.0 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver k...
apache-2.0
nghiant2710/base-images
balena-base-images/golang/n510-tx2/fedora/32/1.15.8/run/Dockerfile
2069
# AUTOGENERATED FILE FROM balenalib/n510-tx2-fedora:32-run ENV GO_VERSION 1.15.8 # gcc for cgo RUN dnf install -y \ gcc-c++ \ gcc \ git \ && dnf clean all RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "0e31ea4bf53496b0f0809730520...
apache-2.0
paulswithers/Key-Dates
documentation/xpages-java/com/timtripcony/package-tree.html
6298
<!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 Tue Aug 11 18:46:50 BST 2015 --> <TITLE> com.timtripcony Class Hierarchy </TITLE> <META NAME="date" CONTENT="2015-08-11"> <LINK R...
apache-2.0
dagnir/aws-sdk-java
aws-java-sdk-ssm/src/main/java/com/amazonaws/services/simplesystemsmanagement/model/transform/InstancePatchStateMarshaller.java
5993
/* * Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
apache-2.0
common-workflow-language/cwljava
sdk-and-javadoc-generation/org/commonwl/lang/CommandOutputParameter.java
14693
/***************************************************************************************************** * * Authors: * * <b> Java SDK for CWL </b> * * @author Paul Grosu (pgrosu@gmail.com), Northeastern University * @version 0.20 * @since April 28, 2016 * ...
apache-2.0
Bersaelor/D2
iOS_app/Classes/Native/mscorlib_System_Collections_Generic_Dictionary_2_V2024483409.h
1320
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t3323877696; #include "mscorlib_System_Object4170816371.h" #ifdef __clang__ #pragma clang ...
apache-2.0
nghiant2710/base-images
balena-base-images/golang/odroid-u3+/debian/stretch/1.15.8/build/Dockerfile
2030
# AUTOGENERATED FILE FROM balenalib/odroid-u3+-debian:stretch-build ENV GO_VERSION 1.15.8 RUN mkdir -p /usr/local/go \ && curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \ && echo "bde22202576c3920ff5646fb1d19877cedc19501939d6ccd7b16ff89071abd0a go$GO_VERSI...
apache-2.0
quarkusio/quarkus
test-framework/maven/src/main/java/io/quarkus/maven/it/assertions/SetupVerifier.java
5917
package io.quarkus.maven.it.assertions; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import java.io.File; import java.io.F...
apache-2.0
emmartins/wildfly-server-migration
servers/wildfly23.0/src/main/java/org/jboss/migration/wfly/task/subsystem/microprofile/WildFly23_0AddMicroprofileJwtSmallryeSubsystem.java
2097
/* * Copyright 2021 Red Hat, 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...
apache-2.0
baishuai/leetcode
algorithms/p321/321_test.go
565
package p321 import ( "github.com/stretchr/testify/assert" "testing" ) func Test0(t *testing.T) { assert.Equal(t, []int{5, 4}, maxOneArray([]int{5, 2, 3, 4, 1}, 2)) assert.Equal(t, []int{6}, maxOneArray([]int{2, 4, 6, 5}, 1)) assert.Equal(t, []int{6, 5}, maxOneArray([]int{2, 4, 6, 5}, 2)) assert.Equal(t, []int{...
apache-2.0
lapcat/vienna-rss
Vienna/Sources/Fetching/RefreshManager.h
2093
// // RefreshManager.h // Vienna // // Created by Steve on 7/19/05. // Copyright (c) 2004-2018 Steve Palmer and Vienna contributors (see menu item 'About Vienna' for list of contributors). All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file excep...
apache-2.0
salv-orlando/MyRepo
nova/tests/api/openstack/contrib/test_volume_types.py
5886
# Copyright 2011 OpenStack 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 b...
apache-2.0
GPflow/GPflow
tests/gpflow/conditionals/test_multioutput.py
31704
from typing import Callable, List, Sequence, Tuple import numpy as np import pytest import scipy import tensorflow as tf from _pytest.fixtures import SubRequest import gpflow import gpflow.inducing_variables.multioutput as mf import gpflow.kernels.multioutput as mk from gpflow import set_trainable from gpflow.base im...
apache-2.0
googleads/google-ads-perl
lib/Google/Ads/GoogleAds/V8/Services/ConversionCustomVariableService/MutateConversionCustomVariablesResponse.pm
1150
# 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 writing, ...
apache-2.0
mongodb/mongo-ruby-driver
lib/mongo/operation/aggregate/op_msg.rb
983
# frozen_string_literal: true # encoding: utf-8 # Copyright (C) 2018-2020 MongoDB 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 # # Un...
apache-2.0
emag/codereading-undertow
core/src/test/java/io/undertow/server/WriteTimeoutTestCase.java
4935
/* * JBoss, Home of Professional Open Source. * Copyright 2014 Red Hat, Inc., and individual contributors * as indicated by the @author tags. * * 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 Licen...
apache-2.0
mdoering/backbone
life/Fungi/Basidiomycota/Agaricomycetes/Hymenochaetales/Hymenochaetaceae/Inonotus/Inonotus euphoriae/ Syn. Xanthochrous euphoriae/README.md
197
# Xanthochrous euphoriae (Pat.) Pat., 1900 SPECIES #### Status SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
NetApp/trident
cli/main.go
282
// Copyright 2018 NetApp, Inc. All Rights Reserved. package main import ( "os" "github.com/netapp/trident/cli/cmd" ) func main() { cmd.ExitCode = cmd.ExitCodeSuccess if err := cmd.RootCmd.Execute(); err != nil { cmd.SetExitCodeFromError(err) } os.Exit(cmd.ExitCode) }
apache-2.0
ldaniels528/shocktrade-server
app-server/app/com/shocktrade/models/quote/StockQuotes.scala
7187
package com.shocktrade.models.quote import akka.actor.Props import akka.pattern.ask import akka.routing.RoundRobinPool import akka.util.Timeout import com.ldaniels528.commons.helpers.OptionHelper._ import com.shocktrade.actors.QuoteMessages._ import com.shocktrade.actors.WebSockets.QuoteUpdated import com.shocktrade.a...
apache-2.0
martyanova/java_pft
mantis-tests/src/test/java/ru/stqa/pft/mantis/appmanager/ApplicationManager.java
1475
package ru.stqa.pft.mantis.appmanager; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.ie.InternetExplorerDriver; import org.openqa.selenium.remote.BrowserType; import java.io.File; import java.io.FileRe...
apache-2.0
fluent/fluentd-ui
app/models/fluentd/setting/buffer_memory.rb
302
class Fluentd module Setting class BufferMemory include Fluentd::Setting::Plugin register_plugin("buffer", "memory") def self.initial_params {} end def common_options [] end def advanced_options [] end end end end
apache-2.0
phdfbk/phdfbk.github.io
students/_posts/2016-08-23-lakew.md
432
--- layout: default id: 2016-08-23-Lakew-Surafel_Melaku surname: Lakew name: Surafel Melaku university: University of Trento date: 23/08/2016 aboutme: from: Ethiopia research_topic: Deep learning for human-in-the-loop advanced machine translation abstract: advisor: Federico Marcello keywords: website: img: lakew.j...
apache-2.0
jentfoo/aws-sdk-java
aws-java-sdk-elasticache/src/main/java/com/amazonaws/services/elasticache/model/transform/DescribeUpdateActionsResultStaxUnmarshaller.java
3071
/* * Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
apache-2.0
deyantodorov/Zeus-WebServicesCould-TeamWork
Source/ChatSystem/Server/ChatSystem.Server/Models/Account/AddExternalLoginBindingModel.cs
278
using System.ComponentModel.DataAnnotations; namespace ChatSystem.Server.Models.Account { public class AddExternalLoginBindingModel { [Required] [Display(Name = "External access token")] public string ExternalAccessToken { get; set; } } }
apache-2.0
mabetle/mcore
mtag/tag_label.go
1652
package mtag import ( "github.com/mabetle/mcore" "strings" ) // label tag format: // label="zh='' en=''" // GetLabelTag returns field "label" tag value. func GetLabelTag(v interface{}, fieldName string) (string, bool) { return GetTag(v, fieldName, "label") } // parse string to KeyValue map. func ParseKeyValueMap...
apache-2.0
liamw9534/mopidy-rtp
mopidy_rtp/sink.py
1944
from __future__ import unicode_literals import pygst pygst.require('0.10') import gst # noqa from mopidy.audio import output import logging logger = logging.getLogger(__name__) # This variable is a global that is set by the Backend # during initialization from the extension properties encoder = 'identity' class ...
apache-2.0
jentfoo/aws-sdk-java
aws-java-sdk-ssm/src/main/java/com/amazonaws/services/simplesystemsmanagement/model/transform/DescribePatchPropertiesRequestProtocolMarshaller.java
2847
/* * Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Lamiales/Lamiaceae/Scutellaria/Scutellaria purpurascens/Scutellaria purpurascens obtusifolia/README.md
198
# Scutellaria purpurascens var. obtusifolia Kuntze VARIETY #### Status ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
apache-2.0
Data-to-Insight-Center/komadu
service-core/src/main/java/edu/indiana/d2i/komadu/ingest/db/TableAttributeData.java
1714
/* # # Copyright 2014 The Trustees of Indiana University # # 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...
apache-2.0
libyal/libyal
data/dtfabric/runtime_structure.h/functions-read_file_io_handle.h
220
int ${library_name}_${structure_name}_read_file_io_handle( ${library_name}_${structure_name}_t *${structure_name}, libbfio_handle_t *file_io_handle, off64_t file_offset, libcerror_error_t **error );
apache-2.0
sagiegurari/node-go-require
README.md
5134
# node-go-require [![NPM Version](http://img.shields.io/npm/v/node-go-require.svg?style=flat)](https://www.npmjs.org/package/node-go-require) [![CI](https://github.com/sagiegurari/node-go-require/workflows/CI/badge.svg?branch=master)](https://github.com/sagiegurari/node-go-require/actions) [![Coverage Status](https://...
apache-2.0
flitzi/AC_SERVER_APPS
AC_ServiceClient/ACServiceSessionReportHandler.cs
494
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AC_ServiceClient.ACServiceReference; using AC_SessionReport; namespace AC_ServiceClient { public class ACServiceSessionReportHandler : ISessionReportHandler { public vo...
apache-2.0
sedna/sedna
kernel/tr/xqp/XQCommon.h
2596
#ifndef __XQ_COMMON_H__ #define __XQ_COMMON_H__ #include "tr/xqp/ast/ASTNode.h" #include "tr/xqp/ast/ASTVarDecl.h" #include "tr/xqp/ast/ASTVar.h" #include "tr/executor/base/dynamic_context.h" #include <string.h> #include <map> #define CREATE_INTNAME(u, l) ((u == "") ? (l) : (std::string("{") + (u) + std::string("}") ...
apache-2.0
OSBI/meteorite-core-ui
src/main/resources/docs/class/js/collections/SidebarCollection.js~SidebarCollection.html
14651
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <base data-ice="baseUrl" href="../../../"> <title data-ice="title">SidebarCollection | API Document</title> <link type="text/css" rel="stylesheet" href="css/style.css"> <link type="text/css" rel="stylesheet" href="css/prettify-tomorrow.css"> <script src="...
apache-2.0
oscarceballos/flink-1.3.2
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/utils/WebFrontendBootstrap.java
4828
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
apache-2.0
nghiant2710/base-images
balena-base-images/golang/vab820-quad/debian/sid/1.15.8/run/Dockerfile
2349
# AUTOGENERATED FILE FROM balenalib/vab820-quad-debian:sid-run ENV GO_VERSION 1.15.8 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ && apt-get ...
apache-2.0
YihuaWanglv/github-trending
oschina/2017/2017-07-22.md
20593
# oschina/2017/2017-07-22.md ## daily - [zhoubang85/zb](http://git.oschina.net/zhoubang85/zb) : 随着技术积累而慢慢开发一套分布式架构系统。全部采用目前主流技术与框架,为在技术方面有需要的朋友提供一套完整的研究学习实例。项目创建于2017年5月12日,正在慢慢成长中. - [darkidiot/DistributedSession](http://git.oschina.net/darkidiot/distributedsession) : 基于Redis的分布式Session,简单高效。 - [贝密游戏/beimi](http:/...
apache-2.0
googleapis/nodejs-kms
samples/generated/v1/key_management_service.generate_random_bytes.js
2228
// Copyright 2022 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 in ...
apache-2.0
CollegeBoreal/Tutoriel
E.Education/G.Github/1.Github-Learning-Lab/0.Installation/README.md
3004
# Github Learning https://lab.github.com/docs/install ### :o: Démarrage d'une nouvelle lecon <img src="images/github-learning/-.Start-Learning.png" width="403" height="334" ></img> ### :a: Inscription à [Github Learning Lab](https://lab.github.com/) :round_pushpin: Démarrer l'inscription Si vous n'êtes pas encor...
apache-2.0
cedral/aws-sdk-cpp
aws-cpp-sdk-directconnect/include/aws/directconnect/model/DirectConnectGateway.h
13921
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
apache-2.0