repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
splicemachine/splice-community-sample-code
spark-streaming-splice-adapter/src/main/resources/scripts/run-kafka-spark-streaming.sh
745
#!/usr/bin/env bash export CLASS_NAME="com.splicemachine.tutorials.spark.SparkStreamingKafka" export APPLICATION_JAR="splice-tutorial-file-spark-2.6.1.1736.jar" export SPARK_JARS_DIR="${SPARK_HOME}/jars" CURRENT_IP=$(ifconfig eth0 | grep inet | awk '{print $2}') SPARK_IMAGE=${SPARK_IMAGE:-"splicemachine/tutorial-spar...
apache-2.0
Abnaxos/guards
annotations/src/main/java/ch/raffael/guards/Pure.java
1167
/* * Copyright 2015 Raffael Herzog * * 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 ...
apache-2.0
ckeita/training-java
computer-database/core/src/main/java/fr/ebiz/computer_database/model/Role.java
457
package fr.ebiz.computer_database.model; import javax.persistence.*; /** * Created by ebiz on 31/05/17. */ @Entity @Table(name = "role") public class Role { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long id; private String role; public long getId() { return id; } public void setId(l...
apache-2.0
svn2github/hwmail-mirror
hedwig-server/src/test/java/com/hs/mail/smtp/processor/hook/DNSRBLHandlerTest.java
640
package com.hs.mail.smtp.processor.hook; import java.util.StringTokenizer; import org.junit.AfterClass; import org.junit.Test; public class DNSRBLHandlerTest { @AfterClass public static void tearDownAfterClass() throws Exception { } @Test public void test() { String ipAddress = "1.2.3.4"; ...
apache-2.0
nghiant2710/base-images
balena-base-images/node/jetson-nano/debian/sid/15.6.0/run/Dockerfile
2931
# AUTOGENERATED FILE FROM balenalib/jetson-nano-debian:sid-run ENV NODE_VERSION 15.6.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 key...
apache-2.0
arnaud71/webso-db
docs/solr-core/org/apache/solr/util/ConcurrentLFUCache.EvictionListener.html
8905
<!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.6.0_27) on Thu Jan 23 20:22:09 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>ConcurrentLFU...
apache-2.0
newmana/rtree
lib/rtree/bounding_box.rb
1520
module Rtree class BoundingBox < Struct.new(:top_left, :bottom_right) def self.from_points(points) x0 = points.min { |a,b| a.x <=> b.x }.x y0 = points.min { |a,b| a.y <=> b.y }.y x1 = points.max { |a,b| a.x <=> b.x }.x y1 = points.max { |a,b| a.y <=> b.y }.y BoundingBox.new(Point.ne...
apache-2.0
jbload/Muscularity
Muscularity.Web/Infrastructure/JwtTokenServiceOptions.cs
444
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.IdentityModel.Tokens; namespace Muscularity.Web.Infrastructure { public class JwtTokenServiceOptions { public TimeSpan TimeToLive { get; set; } public string Issu...
apache-2.0
aws/aws-sdk-java
aws-java-sdk-greengrassv2/src/main/java/com/amazonaws/services/greengrassv2/model/transform/EffectiveDeploymentMarshaller.java
5040
/* * 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
jentfoo/aws-sdk-java
aws-java-sdk-mediatailor/src/main/java/com/amazonaws/services/mediatailor/model/ListTagsForResourceResult.java
4860
/* * 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
NewpTone/stacklab-nova
debian/nova-doc/usr/share/doc/nova-doc/html/api/nova.virt.connection.html
7536
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The nova.virt.connection Module &mdash; nova 2012....
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Gentianales/Rubiaceae/Genipa/Genipa americana/ Syn. Genipa americana jörgensenii/README.md
186
# Genipa americana f. jörgensenii FORM #### Status SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
jatin9896/incubator-carbondata
processing/src/main/java/org/apache/carbondata/processing/loading/sort/unsafe/holder/UnsafeSortTempFileChunkHolder.java
10153
/* * 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
LQJJ/demo
126-go-common-master/app/service/main/feed/service/article.go
2972
package service import ( "context" "sync" artmdl "go-common/app/interface/openplatform/article/model" accmdl "go-common/app/service/main/account/model" "go-common/app/service/main/feed/dao" "go-common/library/log" "go-common/library/sync/errgroup" ) const _upsArtBulkSize = 50 // attenUpArticles get new arti...
apache-2.0
mdoering/backbone
life/Plantae/Rhodophyta/Florideophyceae/Batrachospermales/Batrachospermaceae/Batrachospermum/Batrachospermum fluitans/README.md
189
# Batrachospermum fluitans Kerner SPECIES #### Status ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
midonet/orizuru
lib/orizuru/operations.py
17776
#!/usr/bin/python -Werror # # Copyright (c) 2015 Midokura SARL, All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unl...
apache-2.0
MattHubble/carbon
Source/Test/Xdt/Merge.cs
1981
// Copyright 2012 Aaron Jensen // // 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...
apache-2.0
aws/aws-sdk-java
aws-java-sdk-redshiftdataapi/src/main/java/com/amazonaws/services/redshiftdataapi/model/transform/BatchExecuteStatementResultJsonUnmarshaller.java
4194
/* * 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
PENGUINLIONG/GaLiong
GaLiong/Bmp.cpp
2500
// // Bitmap.hpp // GaLiong // // Created by Liong on ??/??/??. // #include "Include/Bmp.hpp" _L_BEGIN namespace Media { // Public Bmp::Bmp(Image& instance) { } Bmp::~Bmp() { } bool Bmp::InitHeader() { FileHeader f; InfoHeader i; stream.read((char *)&f,...
apache-2.0
tonywu522/biu_server
doc/api/classes/ActionDispatch/Cookies/VerifyAndUpgradeLegacySignedMessage.html
7516
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ActionDispatch::Cookies::VerifyAndUpgradeLegacySignedMessage</title> ...
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Myrtales/Onagraceae/Oenothera/Oenothera auricula/Oenothera auricula williamsoni/README.md
197
# Oenothera auricula subvar. williamsoni Levl. SUBVARIETY #### Status ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
apache-2.0
elisska/cloudera-cassandra
DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/utils/memory/MemtableAllocator.html
23224
<!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_51) on Thu Apr 28 18:37:25 UTC 2016 --> <title>MemtableAllocator (apache-cassandra API)</title> <meta name="date" content="2016-04-28">...
apache-2.0
AKSahu/WebAutomationFrameworks
SeleniumUIAutoTest/src/coreaf/ui/pages/HomePage.java
53
package coreaf.ui.pages; public class HomePage { }
apache-2.0
root0301/MyMap
app/src/main/java/com/wjc/slience/mymap/activity/MsgActivity.java
1450
package com.wjc.slience.mymap.activity; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.KeyEvent; import android.widget.TextView; import com.wjc.slience.mymap.R; import com.wjc.slience.mymap.common.ActivityCollector; import com.wjc.slience.mymap.common.LogUtil...
apache-2.0
sivaprasadreddy/springboot-learn-by-example
chapter-13/springboot-thymeleaf-security-demo/src/main/java/com/sivalabs/demo/security/AuthenticatedUser.java
1192
/** * */ package com.sivalabs.demo.security; import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Set; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.AuthorityUtils; import com.sivalabs.demo.entities.Role; imp...
apache-2.0
utsaslab/crashmonkey
code/tests/seq1/j-lang138.cpp
3828
#include <fcntl.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <string> #include <iostream> #include <dirent.h> #include <cstring> #include <errno.h> #include <attr/xattr.h> #include "../BaseTestCase.h" #include "../../user_tools/api/workload.h" #include "../../user_tools/api/actions.h" ...
apache-2.0
mdoering/backbone
life/Plantae/Bryophyta/Bryopsida/Funariales/Funariaceae/Entosthodon/Entosthodon usambaricus/README.md
193
# Entosthodon usambaricus Paris, 1896 SPECIES #### Status ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
ijuma/kafka
clients/src/main/java/org/apache/kafka/common/utils/ByteUtils.java
11546
/* * 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 n...
apache-2.0
training4developers/angular_11162015
app/www/index_filters.html
1265
<!DOCTYPE html> <html> <head> <title>Welcome to Angular.js</title> <script src="/libs/jquery/dist/jquery.js"></script> <script src="/libs/angular/angular.js"></script> </head> <body> <div ng-app="MyApp"> <div ng-controller="MyCtrl"> {{message | higUpperCase | higAppend:'!!!!!!!'}} <ul> ...
apache-2.0
alexhersh/calico-docker
docs/calicoctl.md
2702
<!--- master only --> > ![warning](images/warning.png) This document applies to the HEAD of the calico-docker source tree. > > View the calico-docker documentation for the latest release [here](https://github.com/projectcalico/calico-docker/blob/v0.12.0/README.md). <!--- else > You are viewing the calico-docker documen...
apache-2.0
google/grr
grr/server/grr_response_server/gui/ui/components/flow_args_form/collect_files_by_known_path_form.ng.html
1392
<div> <mat-form-field appearance="outline" class="w100"> <mat-label>Absolute paths</mat-label> <textarea matInput placeholder="/some/path&#10;/another/path" [formControl]="controls.paths" class="monospace tall" name="paths" autocomplete="of...
apache-2.0
Xyrotechnology/Project-Anthrax
SD/libraries/Scripts/Pixhawk/Firmware-master/src/modules/px4iofirmware/px4io.h
8251
/**************************************************************************** * * Copyright (c) 2012-2014 PX4 Development Team. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Red...
apache-2.0
Hexworks/zircon
docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.internal.resource/-color-theme-resource/-s-o-l-a-r-i-z-e-d_-d-a-r-k_-v-i-o-l-e-t/color-theme.html
3673
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <title>colorTheme</title> <link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../../";</script> <script type="text/javascript" src="../../../../...
apache-2.0
lgobinath/siddhi
modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/output/ratelimit/snapshot/PerSnapshotOutputRateLimiter.java
5177
/* * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you 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
vigov5/planes
README.md
8
# planes
apache-2.0
idaholab/raven
framework/contrib/PythonFMU/pythonfmu/pythonfmu-export/cpp/cppfmu_cs.cpp
2874
/* Copyright 2016-2019, SINTEF Ocean. * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "cppfmu/cppfmu_cs.hpp" #include <stdexcept> namespace cppfmu { ...
apache-2.0
baade-org/eel
eel-core/src/main/java/org/baade/eel/core/player/IPlayer.java
290
package org.baade.eel.core.player; import org.baade.eel.core.ILifecycle; import org.baade.eel.core.message.IMessage; import org.baade.eel.core.processor.IProcessor; public interface IPlayer extends ILifecycle { public void send(IMessage message); public IProcessor getProcessor(); }
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Rosales/Rosaceae/Acaena/Acaena eupatoria/ Syn. Acaena montevidensis/README.md
185
# Acaena montevidensis Hook.f. SPECIES #### Status SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
allure-framework/allure-java
allure-java-commons/src/test/java/io/qameta/allure/testdata/DummyCard.java
1043
/* * Copyright 2019 Qameta Software 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 ...
apache-2.0
aspnet/AspNetCore
src/Mvc/Mvc.RazorPages/src/IPageActivatorProvider.cs
1873
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc.Rendering; namespace Microsoft.AspNetCore.Mvc.RazorPages { /// <summary> /// Provides methods to c...
apache-2.0
nivanov/ignite
modules/platforms/cpp/odbc-test/src/sql_test_suite_fixture.cpp
10627
/* * 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
hazendaz/assertj-core
src/test/java/org/assertj/core/api/date/DateAssert_isBetween_Test.java
1673
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under t...
apache-2.0
Ztiany/AndroidBase
lib_base/src/main/java/com/android/base/app/dagger/ContextType.java
438
package com.android.base.app.dagger; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import javax.inject.Qualifier; import static java.lang.annotation.RetentionPolicy.RUNTIME; @Qualifier @Documented @Retention(RUNTIME) public @interface ContextType { String ACTIVITY = "Activity"...
apache-2.0
tensorflow/tensorboard
tensorboard/plugins/histogram/vz_histogram_timeseries/vz-histogram-timeseries.ts
22012
/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
apache-2.0
bojanvu23/android_packages_apps_Trebuchet_Gradle
Trebuchet/src/main/java/com/lite/android/launcher3/Insettable.java
906
/* * Copyright (C) 2013 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...
apache-2.0
velmuruganvelayutham/jpa
examples/Chapter4/11-tableIdGeneration/src/model/examples/model/Address.java
1622
package examples.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.TableGenerator; @Entity public class Address { @TableGenerator(name="Address_Gen", table="ID_GEN", ...
apache-2.0
zjshen/presto
presto-main/src/main/java/com/facebook/presto/operator/aggregation/AbstractMinMaxByNAggregation.java
8905
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribut...
apache-2.0
donnadionne/grpc
src/python/grpcio_health_checking/grpc_version.py
710
# Copyright 2016 gRPC authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing...
apache-2.0
muuki88/docmatcher
src/main/java/de/mukis/docmatcher/csv/Columns.java
1454
package de.mukis.docmatcher.csv; import java.util.Arrays; import java.util.Objects; import de.mukis.docmatcher.csv.matcher.CsvMatcher; public class Columns { private final int[] columns; private Columns(int[] columns) { this.columns = columns; } public static Columns columns(int first, int...
apache-2.0
kunickiaj/datacollector
sdc-kafka_0_9/src/main/java/com/streamsets/pipeline/kafka/impl/KafkaProducer09.java
4703
/* * Copyright 2017 StreamSets 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...
apache-2.0
pechemann/jec-glasscat-core
src/com/onsoft/glasscat/security/session/managers/EjpSessionManager.ts
4312
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. // // Copyright 2016-2018 Pascal ECHEMANN. // // 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.apac...
apache-2.0
ambasta/aws-sdk-cpp
aws-cpp-sdk-autoscaling/source/model/DeleteAutoScalingGroupRequest.cpp
1408
/* * Copyright 2010-2016 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
mdoering/backbone
life/Fungi/Ascomycota/Leotiomycetes/Helotiales/Cylindrosporium/Cylindrosporium paludosum/README.md
203
# Cylindrosporium paludosum J. Schröt. SPECIES #### Status ACCEPTED #### According to Index Fungorum #### Published in null #### Original name Cylindrosporium paludosum J. Schröt. ### Remarks null
apache-2.0
baowp/platform
biz/src/main/java/com/abbcc/service/CellbindService.java
1720
/** * Copyright (c) 2010 Abbcc Corp. * No 225,Wen Yi RD, Hang Zhou, Zhe Jiang, China. * All rights reserved. * * "AdminService.java is the copyrighted, * proprietary property of Abbcc Company and its * subsidiaries and affiliates which retain all right, title and interest * therein." * * Revision History * ...
apache-2.0
vincent99/cattle
code/iaas/model/src/main/java/io/cattle/platform/core/model/tables/ConfigItemStatusTable.java
7442
/* * This file is generated by jOOQ. */ package io.cattle.platform.core.model.tables; import io.cattle.platform.core.model.CattleTable; import io.cattle.platform.core.model.Keys; import io.cattle.platform.core.model.tables.records.ConfigItemStatusRecord; import io.cattle.platform.db.jooq.converter.DateConverter; im...
apache-2.0
alibehzadian/Smartlab
Custom Views/PersianDatePicker-Example/src/com/example/persiandatepicker/PersianDatePicker.java
2282
package com.example.persiandatepicker; import java.util.Date; import android.content.Context; import android.content.res.TypedArray; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; import android.widget.LinearLayout; import android.widget.NumberPicker; import android.wi...
apache-2.0
UniversalDependencies/docs
treebanks/no_bokmaal/no_bokmaal-pos-PART.md
7980
--- layout: base title: 'Statistics of PART in UD_Norwegian-Bokmaal' udver: '2' --- ## Treebank Statistics: UD_Norwegian-Bokmaal: POS Tags: `PART` There are 4 `PART` lemmas (0%), 4 `PART` types (0%) and 6998 `PART` tokens (2%). Out of 17 observed tags, the rank of `PART` is: 17 in number of lemmas, 17 in number of t...
apache-2.0
rock3r/detekt
docs/pages/kdoc/detekt-api/io.gitlab.arturbosch.detekt.api/-context/report.md
2442
--- title: Context.report - detekt-api --- [detekt-api](../../index.html) / [io.gitlab.arturbosch.detekt.api](../index.html) / [Context](index.html) / [report](./report.html) # report `abstract fun ~~report~~(finding: `[`Finding`](../-finding/index.html)`, aliases: `[`Set`](https://kotlinlang.org/api/latest/jvm/stdl...
apache-2.0
phoxy/phoxy
subsystem/internal.js
2785
phoxy.internal = { ChangeURL : function (url) { url = phoxy.ConstructURL(url); phoxy.Log(4, "History push", url); if (url[0] !== '/') url = '/' + url; history.pushState({}, document.title, url); return false; } , Reset : function (url) { if ((url || true) ...
apache-2.0
lucky-code/Practice
kuaichuan2.0/app/src/main/java/com/ckt/io/wifidirect/fragment/DeviceListFragment.java
6668
package com.ckt.io.wifidirect.fragment; import android.app.ListFragment; import android.app.ProgressDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.net.wifi.WifiManager; import android.net.wifi.p2p.WifiP2pConfig; import android.net.wifi.p2p....
apache-2.0
ascrutae/sky-walking
oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/meter/function/avg/AvgFunction.java
7837
/* * 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
sheshkovsky/jaryan
comments/forms.py
9802
import time import django from django import forms try: from django.forms.utils import ErrorDict except ImportError: from django.forms.util import ErrorDict from django.conf import settings from django.contrib.contenttypes.models import ContentType from django.utils.crypto import salted_hmac, constant_time_c...
apache-2.0
google-code/android-scripting
jruby/src/test/externals/ruby_test/test/core/Process/class/tc_gid.rb
1434
###################################################################### # tc_gid.rb # # Test case for the Process.gid and Process.gid= module methods. # # NOTE: The Process.gid= tests are only run if the test is run as the # root user. ###################################################################### require 'test/...
apache-2.0
wapalxj/Java
javaworkplace/SXT/src/C00_data/Test_code.java
1493
package C00_data; /** * Created by Administrator on 2016/8/30. * 进制问题 * * 二进制显示的是补码,计算机接收的直接量也是补码 */ public class Test_code { public static void main(String[] args) { /* 二进制显示的是补码,计算机接收的直接量也是补码 */ byte a=-5; System.out.println("a:"+a); System.out.println("a...
apache-2.0
aspoman/flink-china-doc
libs/gelly_guide.md
1059
--- title: "Gelly: Flink Graph API" --- <!-- 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...
apache-2.0
theoddbeard/PanzerParty
core/app.js
1246
/** * Main framework */ var http = require('http'); var fs = require('fs'); var url = require('url'); var querystring = require('querystring'); var mime = require('mime'); var engineMod = require('./engine.js') var WebApp = function(path,config){ console.log('Starting PanzerParty at '+path); var basepath = path...
apache-2.0
UniversalDependencies/universaldependencies.github.io
treebanks/swl_sslc/swl_sslc-dep-advcl.html
8515
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Statistics of advcl in UD_Swedi...
apache-2.0
ZGRTech/Arinna
nortwind/Arinna.Northwind.ProductService.Business/CategoryManager.cs
529
using Arinna.Northwind.ProductService.Business.Contract; using Arinna.Northwind.ProductService.Data.Repository.Interface; using System; using System.Collections.Generic; using System.Text; namespace Arinna.Northwind.ProductService.Business { public class CategoryManager: ICategoryManager { private rea...
apache-2.0
lian-yue/lianyue-server
app/viewModels/token/routes.js
155
import Router from 'viewModels/router' import read from './read' const router = new Router; router.get('token/read', '/', read); export default router
apache-2.0
tcat-tamu/crypto
bundles/edu.tamu.tcat.crypto.bouncycastle/src/edu/tamu/tcat/crypto/bouncycastle/internal/Activator.java
2300
/* * Copyright 2014 Texas A&M Engineering Experiment Station * * 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 ...
apache-2.0
boundary/boundary-event-sdk
src/test/java/com/boundary/sdk/event/esper/NewEmployeeEvent.java
1889
// Copyright 2014-2015 Boundary, 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 agree...
apache-2.0
YaelMendes/jboss-eap-quickstarts
contacts-jquerymobile/src/main/webapp/index.html
20643
<!-- JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual contributors by the @authors tag. See the copyright.txt in the distribution for a full listing of individual contributors. Licensed under the Apache License, Version 2.0 (the "License");...
apache-2.0
etechi/ServiceFramework
Projects/Server/Common/SF.Common.Abstractions/Auth/Permissions/IRoleManager.cs
1380
#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2017 Yang Chen (cy2000@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 the License at htt...
apache-2.0
ua-eas/ua-rice-2.1.9
krad/krad-web-framework/src/main/java/org/kuali/rice/krad/web/form/MaintenanceForm.java
2006
/** * Copyright 2005-2014 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless requ...
apache-2.0
hallielaine/DecaFS
test/persistent_stl_test/persistent_map_unittest.cc
2002
#include <cstdlib> #include <cstring> #include <unistd.h> #include <utility> #include "gtest/gtest.h" #include "persistent_map.h" using ::std::make_pair; const char *testfile = "test.map"; class MapTest : public ::testing::Test { protected: PersistentMap<int, int> pm; virtual void SetUp() { } ...
apache-2.0
MorganR/wizards-chess
WizardsChess/WizardsChessUtils/Chess/Pieces/ChessPiece.cs
1218
using System; using System.Collections; using System.Collections.Generic; using WizardsChess.Movement; // Board arranged in A-H, 1-8. where A-H is replaced by 9-16 namespace WizardsChess.Chess.Pieces { public abstract class ChessPiece{ public ChessPiece(ChessTeam team){ Team = team; HasMoved = false; CanJ...
apache-2.0
nemtsov/lightbox
src/templates.js
1861
import 'style!../sass/spinner.scss'; const backdrop = ` <div class="js-blocking" id="lightbox-blocking"> <span class="lightbox-spinner"></span> </div> `; const prevControl = ` <div class="lightbox-extra control prev js-control js-prev"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" w...
apache-2.0
mdoering/backbone
life/Chromista/Oomycota/Oomycetes/Eurychasmataceae/Eurychasmidium/Eurychasmidium joyceae/ Syn. Eurychasmidium joycei/README.md
201
# Eurychasmidium joycei (Sparrow) M.W. Dick SPECIES #### Status SYNONYM #### According to Index Fungorum #### Published in null #### Original name Eurychasma joyceae Sparrow, 1969 ### Remarks null
apache-2.0
nghiant2710/base-images
balena-base-images/golang/odroid-c1/alpine/3.13/1.14.13/run/Dockerfile
2468
# AUTOGENERATED FILE FROM balenalib/odroid-c1-alpine:3.13-run ENV GO_VERSION 1.14.13 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ] && ec...
apache-2.0
tensorflow/tfhub.dev
assets/docs/sayakpaul/deeplabv3-xception65-ade20k/1/default/lite/2.md
1900
# Lite sayakpaul/deeplabv3-xception65-ade20k/1/default/2 Lightweight deep learning model for semantic image segmentation. <!-- parent-model: sayakpaul/deeplabv3-xception65-ade20k/1 --> <!-- asset-path: legacy --> <!-- interactive-visualizer: tflite_image_segmenter --> <!-- colab: https://colab.research.google.com/gith...
apache-2.0
lesjaw/Olmatix
olmatix/src/main/java/com/olmatix/model/SpinnerObject.java
641
package com.olmatix.model; /** * Created by Rahman on 12/28/2016. */ public class SpinnerObject { private String databaseId; private String databaseValue; public SpinnerObject() { this.databaseId = databaseId; this.databaseValue = databaseValue; } public String getDatabaseId(...
apache-2.0
trasa/aws-sdk-java
aws-java-sdk-elasticloadbalancing/src/main/java/com/amazonaws/services/elasticloadbalancing/model/LoadBalancerAttributeNotFoundException.java
1217
/* * Copyright 2010-2016 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
citrix/terraform-provider-netscaler
citrixadc/resource_citrixadc_transformaction.go
8186
package citrixadc import ( "github.com/citrix/adc-nitro-go/resource/config/transform" "github.com/citrix/adc-nitro-go/service" "github.com/hashicorp/terraform/helper/schema" "fmt" "log" ) func resourceCitrixAdcTransformaction() *schema.Resource { return &schema.Resource{ SchemaVersion: 1, Create: c...
apache-2.0
yeminhtut/yeminhtut.github.io
css/freelancer.css
7900
/*! * Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com) * Code licensed under the Apache License v2.0. * For details, see http://www.apache.org/licenses/LICENSE-2.0. */ body { overflow-x: hidden; } p { font-size: 20px; } p.small { font-size: 16px; } a, a:hover, a:focus, a:acti...
apache-2.0
tthomas48/databean
BuyPlayTix/DataBean/ObjectAdapter.php
19538
<?php namespace BuyPlayTix\DataBean; class ObjectAdapter implements IAdapter { public static $DB_DIR; private $tables = []; private $queries = []; public function __construct() {} function load($databean, $param = "") { $table = $databean->getTable(); $pk = $databean->get...
apache-2.0
seattlepublicrecords/seattlepublicrecords.github.io
information/agencies/city_of_seattle/seattle_police_department/copbook/5336/index.md
194
--- layout: page title: Seattle Police Officer 5336 Suzanne M. Ross permalink: /information/agencies/city_of_seattle/seattle_police_department/copbook/5336/ --- **Age as of Feb. 24, 2016:** 55
apache-2.0
spark/photon-tinker-android
firmwareprotos/src/main/java/io/particle/firmwareprotos/ctrl/cloud/Cloud.java
42941
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: cloud.proto package io.particle.firmwareprotos.ctrl.cloud; public final class Cloud { private Cloud() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistryLite registry) { } public static void registerAl...
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Ranunculales/Ranunculaceae/Delphinium/README.md
169
# Delphinium L. GENUS #### Status ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
dtgm/chocolatey-packages
automatic/_output/cyberduck.install/6.2.4.26305/tools/chocolateyInstall.ps1
656
$packageName = 'cyberduck.install' $installerType = 'exe' $silentArgs = '/S' $url = 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.2.4.26305.exe' $checksum = '8710700d0fb30a44606c7b68699c0b5b003019a754db22cb715c7aa2240feed0' $checksumType = 'sha256' $validExitCodes = @(0) Install-ChocolateyPackage -Package...
apache-2.0
thbonk/electron-openui5-boilerplate
libs/openui5-runtime/resources/sap/m/PDFViewer-dbg.js
19266
/*! * 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. */ /* global ActiveXObject:false */ // Provides control sap.m.PDFViewer. sap.ui.define([ "jquery.sap.global", "./library", "sap/u...
apache-2.0
arash16/madson
src/index.js
901
var madson = (function () { import "nxutils/generic/base"; import "./utils"; import "./write"; import "./read"; import "./preset"; function mEncode(input, options) { var encoder = new EncodeBuffer(options); encode(encoder, cloneDecycle(input)); return encoder.read(); ...
apache-2.0
dahlstrom-g/intellij-community
platform/platform-impl/src/com/intellij/openapi/wm/impl/ToolWindowsPane.java
40236
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.openapi.wm.impl; import com.intellij.ide.RemoteDesktopService; import com.intellij.ide.ui.UISettings; import com.intellij.ide.ui.UISettingsListener; import c...
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Caryophyllales/Caryophyllaceae/Cerastium/Cerastium arvense/ Syn. Cerastium subulatum/README.md
183
# Cerastium subulatum Greene SPECIES #### Status SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
mdoering/backbone
life/Fungi/Ascomycota/Lecanoromycetes/Pertusariales/Pertusariaceae/Pertusaria/Pertusaria cinerella/README.md
193
# Pertusaria cinerella Müll. Arg. SPECIES #### Status ACCEPTED #### According to Index Fungorum #### Published in null #### Original name Pertusaria cinerella Müll. Arg. ### Remarks null
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Malpighiales/Salicaceae/Salix/Salix arctica/Salix arctica arctica/README.md
174
# Salix arctica subvar. arctica SUBVARIETY #### Status ACCEPTED #### According to NUB Generator [autonym] #### Published in null #### Original name null ### Remarks null
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Magnoliales/Annonaceae/Uvaria/Uvaria cornuana/README.md
187
# Uvaria cornuana Engl. & Diels SPECIES #### Status ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0
mdoering/backbone
life/Fungi/Ascomycota/Dothideomycetes/Pleosporales/Leptosphaeriaceae/Ophiobolus/Ophiobolus arenarius/README.md
189
# Ophiobolus arenarius E. Bommer, M. Rousseau, Sacc. SPECIES #### Status ACCEPTED #### According to Belgian Species List #### Published in null #### Original name null ### Remarks null
apache-2.0
mdoering/backbone
life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Vernonia/Vernonia pulchella/README.md
182
# Vernonia pulchella Small SPECIES #### Status ACCEPTED #### According to Integrated Taxonomic Information System #### Published in null #### Original name null ### Remarks null
apache-2.0
mdoering/backbone
life/Fungi/Ascomycota/Lecanoromycetes/Teloschistales/Physciaceae/Physcia/Physcia tricolor/README.md
212
# Physcia tricolor (Zahlbr.) Yoshim. SPECIES #### Status ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name Lobaria tricolor Zahlbr. ### Remarks null
apache-2.0
mdoering/backbone
life/Bacteria/Proteobacteria/Alphaproteobacteria/Caulobacterales/Caulobacteraceae/Caulobacter/Caulobacter segnis/README.md
220
# Caulobacter segnis (Urakami et al., 1990) Abraham et al., 1999 SPECIES #### Status ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
apache-2.0