max_stars_count int64 301 224k | text stringlengths 6 1.05M | token_count int64 3 727k |
|---|---|---|
530 | package com.bladecoder.engineeditor.qa;
import com.bladecoder.engine.actions.Action;
import com.bladecoder.engine.model.InteractiveActor;
import com.bladecoder.engine.model.Scene;
import com.bladecoder.engine.model.Verb;
public interface ActionVisitor extends Visitor {
public void visit(Scene scn, InteractiveActor a... | 106 |
2,542 | <reponame>gridgentoo/ServiceFabricAzure
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ----------------------------------------------------... | 3,583 |
713 | package org.infinispan.query.blackbox;
import org.infinispan.configuration.cache.CacheMode;
import org.testng.annotations.Test;
/**
* Testing query functionality on RAM directory for DIST_SYNC cache mode with enabled Topology aware nodes.
*
* @author <NAME>
*/
@Test(groups = "functional", testName = "query.blackb... | 166 |
1,444 | <reponame>GabrielSturtevant/mage
package mage.cards.b;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.SacrificeSourceCost;
import mage.abilities.costs.mana.ColoredManaCost;
import mage.abilities.effect... | 472 |
14,668 | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_VOICE_TEXT_TO_SPEECH_LISTENER_H_
#define IOS_CHROME_BROWSER_VOICE_TEXT_TO_SPEECH_LISTENER_H_
#import <Foundation/Foundation.h>... | 585 |
663 | from six import iteritems
from datadog_checks.mongo.collectors.base import MongoCollector
from datadog_checks.mongo.common import MongosDeployment, ReplicaSetDeployment
from datadog_checks.mongo.metrics import TOP_METRICS
class TopCollector(MongoCollector):
"""Additional metrics coming from the 'top' command. Ne... | 477 |
5,607 | <reponame>Paullo612/micronaut-core
package io.micronaut.inject.ordered;
import io.micronaut.core.annotation.Order;
import io.micronaut.core.order.Ordered;
import jakarta.inject.Singleton;
@Order(Ordered.LOWEST_PRECEDENCE)
@Singleton
public class LowValueProduct implements Product {
}
| 104 |
578 | <reponame>GerHobbelt/CacheLib
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | 2,282 |
1,346 | from plugin.models.core import db
from plugin.models.account import Account
from exception_wrappers.libraries.playhouse.apsw_ext import *
class ConfigurationOption(Model):
class Meta:
database = db
db_table = 'configuration.option'
primary_key = CompositeKey('account', 'key')
accoun... | 145 |
808 | /*
* Copyright DDDplus Authors.
*
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.github.dddplus.runtime.registry;
import io.github.dddplus.annotation.DomainAbility;
import io.github.dddplus.ext.IDomainExtension;
import io.github.dddplus.runtim... | 957 |
403 | #ifndef VKPP_SURFACE_HH
#define VKPP_SURFACE_HH
#include <vulkan/vulkan.h>
#include <vector>
namespace vkhr { class Window; }
namespace vkpp {
class Surface final {
public:
Surface() = default;
Surface(VkInstance& instance,
VkSurfaceKHR& surface);
~Surface() noexcept;... | 613 |
357 | <reponame>wfu8/lightwave<filename>vmidentity/rest/idm/client/src/integration-test/java/com/vmware/identity/rest/idm/client/test/integration/util/SolutionUserGenerator.java
/*
* Copyright (c) 2012-2015 VMware, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not... | 680 |
310 | <reponame>dreeves/usesthis
{
"name": "CoPathPlus",
"description": "Pathology lab software.",
"url": "https://store.cerner.com/items/311"
} | 56 |
469 | //----------------------------------------------------------------------------//
//|
//| MachOKit - A Lightweight Mach-O Parsing Library
//| DyldInfoUtil.h
//|
//| D.V.
//| Copyright (c) 2014-2015 D.V. All rights reserved.
//|
//| Permission is hereby granted, free of cha... | 1,729 |
705 | {"id":1,"first_name":"Ilyse","last_name":"Ladbrooke","email":"<EMAIL>"}
{"id":2,"first_name":"Marjory","last_name":"Speakman","email":"<EMAIL>"}
{"id":3,"first_name":"Lib","last_name":"Life","email":"<EMAIL>"}
{"id":4,"first_name":"Annie","last_name":"Jickells","email":"<EMAIL>"}
{"id":5,"first_name":"Wait","last_name"... | 286 |
406 | /***************************************************************************
* tests/mng/test_buf_streams.cpp
*
* Part of the STXXL. See http://stxxl.sourceforge.net
*
* Copyright (C) 2002 <NAME> <<EMAIL>>
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.t... | 1,196 |
1,144 | package de.metas.hostkey.api;
import java.util.function.Supplier;
import de.metas.hostkey.spi.IHostKeyStorage;
import de.metas.util.ISingletonService;
/**
* Service used for manipulating HostKey
*
* @author tsa
*
*/
public interface IHostKeyBL extends ISingletonService
{
/**
* Sets the storage to be used w... | 236 |
22,688 | /******************************************************************************
* Copyright 2020 The Apollo 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
... | 1,355 |
605 | <filename>libc/src/__support/FPUtil/FEnvImpl.h
//===-- Floating point environment manipulation functions -------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLV... | 497 |
726 | <filename>code/44.java
class Solution {
public int findNthDigit(int n) {
if(n==0)
return 0;
//数字的长度为len; 从长度为1的数字开始, 也就是从个位数开始
int len = 1;
//长度为len的数字有count个
long count = 9;
//长度为len的第一个数字
int start = 1;
//确定第n位对应的数字的长度
while(n > l... | 596 |
1,020 | package org.robobinding.codegen.presentationmodel.processor;
import java.util.Set;
import org.junit.Before;
import org.junit.Test;
import org.robobinding.codegen.presentationmodel.processor.DependencyValidation;
import com.google.common.collect.Sets;
/**
*
* @since 1.0
* @version $Revision: 1.0 $
... | 462 |
1,236 | <gh_stars>1000+
// The MIT License (MIT)
// Copyright (c) 2016, Microsoft
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// ... | 1,966 |
729 | """
@author: lileilei
@file: __init__.py.py
@time: 2018/1/31 13:19
"""
from app.case.views import case
from app.case import views, urls
| 57 |
14,425 | /**
* 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... | 1,363 |
391 | <reponame>jookovjook/torch2coreml
from setuptools import setup, find_packages
from codecs import open
from os import path
VERSION = '0.2.0'
here = path.abspath(path.dirname(__file__))
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_descript... | 500 |
14,668 | <reponame>zealoussnow/chromium<filename>android_webview/nonembedded/component_updater/aw_component_installer_policy_unittest.cc
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "android_webview/... | 2,640 |
1,844 | <reponame>gomez-javier-github/killbill<filename>api/src/main/java/org/killbill/billing/events/InvoicePaymentInternalEvent.java
/*
* Copyright 2016 Groupon, Inc
* Copyright 2016 The Billing Project, LLC
*
* The Billing Project licenses this file to you under the Apache License, version 2.0
* (the "License"); you ma... | 446 |
642 | /**
*
*/
package com.jeesuite.mybatis.crud.builder;
import org.apache.ibatis.jdbc.SQL;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.mapping.SqlCommandType;
import org.apache.ibatis.session.Configuration;
import com.jeesuite.mybatis.crud.helper.ColumnMapper;
import com.jeesuite.mybatis... | 467 |
567 | <reponame>CrushedPixel/hiberlite
#ifndef COMMON_H_
#define COMMON_H_
#include <string>
#include <vector>
#include <map>
#include <set>
#include <list>
#include <stdexcept>
#include <iostream>
#include <algorithm>
#include <sqlite3.h>
namespace hiberlite{
class noncopyable
{
protected:
noncopyable() {}
~n... | 218 |
879 | <filename>header/src/main/java/org/zstack/header/network/l3/APISetL3NetworkRouterInterfaceIpEvent.java
package org.zstack.header.network.l3;
import org.zstack.header.message.APIEvent;
import org.zstack.header.rest.RestResponse;
@RestResponse(fieldsTo = {"all"})
public class APISetL3NetworkRouterInterfaceIpEvent exten... | 270 |
2,332 | <reponame>paleale/remark42
{
"compilerOptions": {
"incremental": true,
"target": "es6",
"module": "esnext",
"lib": ["es2019", "dom"],
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"noEmit": true,
"strict": true,
"allowJs": true,
"moduleResolution":... | 249 |
1,664 | /*
* 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 ... | 488 |
713 | <filename>commons/all/src/main/java/org/infinispan/commons/dataconversion/internal/JsonUtils.java
package org.infinispan.commons.dataconversion.internal;
import java.util.Collection;
import java.util.function.Function;
import java.util.stream.Stream;
/**
* Utility function for {@link Json}
*
* @author <NAME>
* @s... | 344 |
653 | // -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===------------... | 2,284 |
579 | /*
* Copyright (c) 2015-2021 Valve Corporation
* Copyright (c) 2015-2021 LunarG, 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.... | 947 |
2,231 | <reponame>cmarincia/defold<filename>engine/glfw/lib/stream.c
//========================================================================
// GLFW - An OpenGL framework
// Platform: Any
// API version: 2.7
// WWW: http://www.glfw.org/
//------------------------------------------------------------------------
//... | 1,707 |
945 | <reponame>zhichaochen/iotdb
/*
* 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,092 |
1,104 | <filename>Barbaric/sheet.json<gh_stars>1000+
{
"html": "barbaric.html",
"css": "barbaric.css",
"authors": "<NAME>.",
"roll20userid": "1223200",
"preview": "preview.png",
"instructions": "This is the Official character sheet for **Barbaric!** by [Stellagama Publishing](https://www.drivethrurpg.com/browse/pub/9571/... | 284 |
1,162 | package io.digdag.core.repository;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
public class ArchiveType
{
public static final ArchiveType DB = ArchiveType.of("db");
public static final ArchiveType NONE = ArchiveType.of("non... | 434 |
310 | #pragma once
#ifndef GPU_H
#define GPU_H
#ifndef __DATE__
#define __DATE__
#endif
#ifndef __TIME__
#define __TIME__
#endif
#ifndef __FUNCTION__
#define __FUNCTION__
#endif
#ifndef __LINE__
#define __LINE__ 0
#endif
#ifndef __FILE__
#define __FILE__
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef GPU
... | 2,034 |
421 | <filename>library/Box2D/examples/vertical_stack.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# C++ version Copyright (c) 2006-2007 <NAME> http://www.box2d.org
# Python version by <NAME> / sirkne at gmail dot com
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will th... | 1,430 |
1,402 | <gh_stars>1000+
/* ----------------------------------------------------------------------------
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
* Atlanta, Georgia 30332-0415
* All Rights Reserved
* Authors: <NAME>, et al. (see THANKS for the full author list)
* See LICENSE for the license information
... | 1,722 |
309 | //
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "utils.hpp"
std::vector<uint8_t> PrepareImageTensor(const std::string& imagePath,
unsigned int newWidth,
unsigned int newHeight,
... | 764 |
4,283 | /*
* Copyright (c) 2008-2021, Hazelcast, 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 ... | 1,888 |
416 | <gh_stars>100-1000
package org.simpleflatmapper.jdbc;
import java.sql.SQLException;
public interface SQLFunction<P, R> {
R apply(P p) throws SQLException;
}
| 65 |
903 | <gh_stars>100-1000
/*
* Copyright 2021 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
*
* o... | 2,222 |
14,668 | <reponame>zealoussnow/chromium
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/services/quarantine/quarantine.h"
#include <iterator>
#include <string>
#include "base/bind.h"
#incl... | 955 |
398 | package io.joyrpc.codec.serialization;
/*-
* #%L
* joyrpc
* %%
* Copyright (C) 2019 joyrpc.io
* %%
* 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/licen... | 8,119 |
576 | <reponame>rickardcronholm/SimpleITK<gh_stars>100-1000
/*=========================================================================
*
* Copyright NumFOCUS
*
* 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 t... | 10,480 |
337 | #ifndef LUAWH_H
#define LUAWH_H
#include "common.h"
#include "net.h"
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
int luaW_version(lua_State *L);
void* luaW_newsecret(lua_State* L, size_t len);
void* luaW_tosecret(lua_State* L, int idx, size_t len);
void* luaW_checksecret(lua_State* L, int idx, size_t ... | 811 |
403 | import logging
from pylons import request, response, session, tmpl_context as c, url
from pylons.controllers.util import abort, redirect
from nipapwww.lib.base import BaseController, render
from pynipap import VRF
log = logging.getLogger(__name__)
class VrfController(BaseController):
def index(self):
... | 1,043 |
965 | <gh_stars>100-1000
PX_Picture(pPX, _T("ControlPicture"), m_pic); | 28 |
2,293 | /* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_vlog_q31
* Description: Q31 vector log
*
* $Date: 19 July 2021
* $Revision: V1.10.0
*
* Target Processor: Cortex-M and Cortex-A cores
* ------------------------------------... | 2,453 |
1,545 | <gh_stars>1000+
/**
*
* 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... | 1,288 |
1,144 | // Generated Model - DO NOT CHANGE
package org.compiere.model;
import java.math.BigDecimal;
import java.sql.ResultSet;
import java.util.Properties;
import javax.annotation.Nullable;
/** Generated Model for C_Task
* @author metasfresh (generated)
*/
@SuppressWarnings("unused")
public class X_C_Task extends org.com... | 1,347 |
2,268 | <reponame>joshmartel/source-sdk-2013
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Deals with precaching requests from client effects
//
// $Revision: $
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#i... | 597 |
662 | <filename>autobahn/src/main/java/io/crossbar/autobahn/wamp/messages/Subscribed.java
///////////////////////////////////////////////////////////////////////////////
//
// AutobahnJava - http://crossbar.io/autobahn
//
// Copyright (c) Crossbar.io Technologies GmbH and contributors
//
// Licensed under the MIT Licen... | 502 |
4,224 | #!/bin/python3
import parse_cmake.parsing as cmp
import glob
import pprint
import re
import os
__location__ = os.path.realpath(
os.path.join(os.getcwd(), os.path.dirname(__file__)))
serial_regex = r"(\D\D\D\d):(/dev/ttyS\d+)"
io_regex = r"IO (.*)"
romfs_regex = r"ROMFSROOT (.*)"
arch_regex = r"ARCHITECTURE (.*)"... | 1,517 |
12,718 | #define _GNU_SOURCE
#include <math.h>
int finitef(float x)
{
return isfinite(x);
}
| 38 |
545 | #include <vector>
#include <list>
#include <iterator>
#include <iostream>
int main() {
int ia[] = {0, 1, 1, 2, 3, 5, 8, 13, 21, 55, 89};
std::vector<int> iv(std::begin(ia), std::end(ia));
std::list<int> il(std::begin(ia), std::end(ia));
std::cout << "Before erase:" << std::endl;
std::cout << "vector iv: ";
... | 465 |
22,481 | <reponame>tbarbette/core<filename>homeassistant/components/signal_messenger/notify.py
"""Signal Messenger for notify component."""
import logging
from pysignalclirestapi import SignalCliRestApi, SignalCliRestApiError
import voluptuous as vol
from homeassistant.components.notify import (
ATTR_DATA,
PLATFORM_SC... | 1,133 |
5,169 | <reponame>Gantios/Specs<filename>Specs/1/a/e/XiaoDXTestPod/0.0.1/XiaoDXTestPod.podspec.json<gh_stars>1000+
{
"name": "XiaoDXTestPod",
"version": "0.0.1",
"summary": "A short description of XiaoDXTestPod.",
"description": "Hello World Xiao",
"homepage": "https://github.com/XiaoDongXie1024/XiaoDXTestPod",
"li... | 295 |
2,659 | <filename>java/openmldb-jmh/src/main/java/com/_4paradigm/sql/jmh/MemSQLBenchmark.java
/*
* Copyright 2021 4Paradigm
*
* 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... | 2,276 |
412 | import cvzone
import cv2
fpsReader = cvzone.FPS()
cap = cv2.VideoCapture(0)
while True:
success, img = cap.read()
fps, img = fpsReader.update(img, pos=(50, 80), color=(0, 255, 0), scale=5, thickness=5)
cv2.imshow("Image", img)
cv2.waitKey(1)
| 116 |
887 | <filename>gazebo/rendering/Grid.cc
/*
* Copyright (C) 2012 Open Source Robotics 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/LICENS... | 2,850 |
1,521 | <gh_stars>1000+
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# This file convert.py is referred and derived from project NetworkX,
#
# https://github.com/networkx/networkx/blob/master/networkx/convert.py
#
# which has the following license:
#
# Copyright (C) 2004-2020, NetworkX Developers
# <NAME> <<EMAIL>>
# <NAM... | 2,717 |
2,118 | // Copyright (c) 2006-2018 <NAME>
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef CDSUNIT_QUEUE_TEST_GENERIC_QUEUE_H
#define CDSUNIT_QUEUE_TEST_GENERIC_QUEUE_H
#include <cds_test/check_size.h>
namespace cds_te... | 3,647 |
892 | {
"schema_version": "1.2.0",
"id": "GHSA-qcqp-7wq3-95m2",
"modified": "2022-05-13T00:01:15Z",
"published": "2022-05-04T00:00:14Z",
"aliases": [
"CVE-2022-20108"
],
"details": "In voice service, there is a possible out of bounds write due to a stack-based buffer overflow. This could lead to local escal... | 451 |
6,580 | # QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
# Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect 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 Licen... | 1,821 |
392 | <reponame>mouthwater/rgb
/*
* Triangle with 3D vertex coordinates.
*/
#ifndef MATH__GEOMETRY__TRIANGLE_3D_HH
#define MATH__GEOMETRY__TRIANGLE_3D_HH
#include "io/streams/ostream.hh"
#include "math/geometry/point_3D.hh"
namespace math {
namespace geometry {
/*
* Imports.
*/
using io::streams::ostream;
/*
* Triang... | 627 |
777 | /*
* Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in... | 863 |
427 | <gh_stars>100-1000
"""
Test the lldb disassemble command on each call frame when stopped on C's ctor.
"""
from __future__ import print_function
import os
import time
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class IterateFrameAndDi... | 1,885 |
308 | <filename>libfairygui/Classes/tween/TweenPropType.h
#ifndef __TWEENPROPTYPE_H__
#define __TWEENPROPTYPE_H__
#include "FairyGUIMacros.h"
#include "cocos2d.h"
NS_FGUI_BEGIN
class TweenValue;
class GObject;
enum class TweenPropType
{
None,
X,
Y,
Position,
Width,
Height,
S... | 319 |
764 | <reponame>dchain01/token-profile
{
"symbol": "VIC",
"address": "0xA5D1Eb8bBB42b7f2EBBebF174B3966510243F30c",
"overview":{
"en": "Value of Individual",
"zh": "个性价值通证化"
},
"email": "<EMAIL>",
"website": "https://vichome.github.io/",
"whitepaper": "https://vichome.github.io/2019/20190828.whit... | 263 |
2,151 | //===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------... | 866 |
32,544 | package com.baeldung.batch.understanding.exception;
import javax.batch.api.chunk.listener.RetryProcessListener;
import javax.inject.Named;
@Named
public class MyRetryProcessorListener implements RetryProcessListener {
@Override
public void onRetryProcessException(Object item, Exception ex) throws Exception {
... | 105 |
3,024 | """Test std rule import."""
class Rule_L000:
"""Test std rule import."""
pass
| 32 |
675 | <filename>selendroid-server/src/main/java/io/selendroid/server/handler/Actions.java<gh_stars>100-1000
package io.selendroid.server.handler;
import java.util.ArrayList;
import java.util.List;
import io.selendroid.server.action.ActionContext;
import io.selendroid.server.action.ActionHandler;
import io.selendroid.server... | 1,130 |
1,545 | /*
*
* 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... | 4,268 |
2,743 | from __future__ import unicode_literals
from django.template import Library
from ..classes import Menu, SourceColumn
from ..forms import MultiItemForm
register = Library()
@register.simple_tag(takes_context=True)
def get_menu_links(context, name, source=None):
return Menu.get(name).resolve(context=context, sou... | 703 |
8,772 | <gh_stars>1000+
{
"dependencies": "swagger,reports",
"properties": [
"--springdoc.show.actuator=true",
"--management.endpoints.enabled-by-default=true",
"--management.endpoints.web.exposure.include=*",
"--cas.monitor.endpoints.endpoint.defaults.access=ANONYMOUS"
]
}
| 116 |
1,558 | [
{
"name": "MVVMToolkit",
"displayName": "MVVM Toolkit",
"summary": "Eine moderne, schnelle, modulare MVVM-Bibliothek und Teil des Windows Community Toolkits."
},
{
"name": "None",
"displayName": "None",
"summary": "Keine Framework- oder Ordnerstrukturgenerierung. Es wird nur der minimal... | 154 |
1,056 | /*
* 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 ... | 32,349 |
5,169 | <filename>Specs/4/1/b/SuCommon/0.1.8/SuCommon.podspec.json<gh_stars>1000+
{
"name": "SuCommon",
"version": "0.1.8",
"summary": "共同库",
"description": "TODO: Add long description of the pod here.",
"homepage": "https://github.com/yyyear/SuCommon",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"... | 328 |
521 | <reponame>Fimbure/icebox-1<gh_stars>100-1000
/**
* @file tests/llvmir2hll/llvm/llvmir2bir_converters/new_llvmir2bir_converter/llvm_value_converter_tests/llvm_instruction_converter_tests.cpp
* @brief Tests for instructions conversion in @c LLVMInstructionConverter.
* @copyright (c) 2017 Avast Software, licensed under th... | 7,930 |
1,144 | <gh_stars>1000+
package de.metas.materialtracking.qualityBasedInvoicing.impl;
/*
* #%L
* de.metas.materialtracking
* %%
* Copyright (C) 2015 metas GmbH
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free S... | 891 |
2,338 | //===-- ARM64_DWARF_Registers.h ---------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | 922 |
806 | <gh_stars>100-1000
package com.github.davidmoten.rx.jdbc.tuple;
import java.util.ArrayList;
import java.util.List;
/**
* Variable length tuple backed by a List.
*
* @param <T>
*/
public class TupleN<T> {
private final List<T> list;
/**
* Constructor.
*
* @param list
*/
public T... | 581 |
315 | <reponame>cebe/yii2support<filename>src/com/nvlad/yii2support/i18n/MessageLookupElement.java
package com.nvlad.yii2support.i18n;
import com.intellij.codeInsight.completion.InsertionContext;
import com.intellij.codeInsight.lookup.AutoCompletionPolicy;
import com.intellij.codeInsight.lookup.LookupElement;
import com.int... | 2,042 |
614 | load("//third_party/flatbuffers:workspace.bzl", flatbuffers = "repo")
load("//third_party/kissfft:workspace.bzl", kissfft = "repo")
load("//third_party/ruy:workspace.bzl", ruy = "repo")
load("//third_party:repo.bzl", "tf_http_archive")
def initialize_third_party():
""" Load third party repositories. See above loa... | 1,238 |
17,481 | <filename>java/dagger/model/testing/BindingGraphSubject.java
/*
* Copyright (C) 2018 The Dagger 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/licen... | 1,717 |
614 | <reponame>sahilsethi160492/FootballData
[
{ "home": "Sunderland", "away": "Everton", "homescore": "0", "awayscore": "3" },
{ "home": "Empoli", "away": "Crotone", "homescore": "2", "awayscore": "1" },
{ "home": "Feirense", "away": "Tondela", "homescore": "2", "awayscore": "1" },
{ "home": "<NAME>", "away": "Ural... | 1,240 |
343 | <reponame>paddlelaw/keenwrite<filename>src/main/java/com/keenwrite/preview/MathRenderer.java
/* Copyright 2020-2021 White Magic Software, Ltd. -- All rights reserved. */
package com.keenwrite.preview;
import com.whitemagicsoftware.tex.*;
import com.whitemagicsoftware.tex.graphics.SvgDomGraphics2D;
import org.w3c.dom.D... | 818 |
1,823 | import numpy as np
import pandas as pd
DEFAULT_GRAPH_PARAMS = {
'charset': "latin1",
'outputorder': "edgesfirst",
'overlap': "prism"
}
DEFAULT_NODE_PARAMS = {
'fontname': "'IBM Plex Sans'",
'fontsize': 10
}
class ComponentDiGraph(object):
def __init__(self, orig_edge_df, id_node_df, node_df,... | 1,409 |
6,989 | <filename>contrib/libs/python/Include/pystrhex.h
#pragma once
#ifdef USE_PYTHON3
#include <contrib/tools/python3/src/Include/pystrhex.h>
#else
#error "No <pystrhex.h> in Python2"
#endif
| 83 |
2,494 | /* 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 "builtins.h"
/*
* builtins/instance.c
*
* This file implements the NSSCKMDInstance object for the
*... | 812 |
764 | <reponame>tangyanf/ppl.nn
// 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 (... | 1,058 |
769 | #ifndef _DOTMATMUL8_
#define _DOTMATMUL8_
const char m_a[] = {
2,
-4,
-3,
2,
0,
3,
-1,
-4,
2,
3,
0,
1,
-1,
0,
0,
-3,
-3,
-3,
-3,
-4,
1,
0,
-4,
0,
-1,
-1,
0,
-3,
-2,
2,
-4,
-1,
-2,
0,
-3,
-4,
0,
0,
-4,
-1,
0,
-1,
1,
-2,
1,
1,
-3,
3,
-3,
1,
-2,
-4,
1,
-3,
0,
3,
-3,
1,
2,
3,
2,
-1,
-1,
1,
};
const char m_b[] = {
1,
-4,
0... | 731 |
1,338 | <filename>src/add-ons/accelerants/skeleton/engine/crtc2.c
/* second CTRC functionality for GeForce cards */
/* Author:
<NAME> 11/2002-9/2004
*/
#define MODULE_BIT 0x00020000
#include "std.h"
/*Adjust passed parameters to a valid mode line*/
status_t eng_crtc2_validate_timing(
uint16 *hd_e,uint16 *hs_s,uint16 *hs... | 10,688 |
5,169 | <reponame>Gantios/Specs<filename>Specs/7/1/1/GPJDataDrivenTableView/0.6.0/GPJDataDrivenTableView.podspec.json
{
"name": "GPJDataDrivenTableView",
"version": "0.6.0",
"summary": "A data-driven way to use UITableView.",
"description": "The data-drive way is simple, steady, extendable, It is friendly to evolve wit... | 349 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.