text stringlengths 7 995k |
|---|
/*
* Copyright 2016-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
*
* or in the "licen... |
package com.javanorth.spring.springbootkafka.response;
public class ResponseUtil<T> {
private String code;
private String path;
private String message;
private T data;
public ResponseUtil(String code, String message) {
this.code = code;
this.message = message;
}
public Res... |
package me.banbeucmas.oregen3.listeners;
import me.banbeucmas.oregen3.Oregen3;
import me.banbeucmas.oregen3.data.DataManager;
import me.banbeucmas.oregen3.data.MaterialChooser;
import me.banbeucmas.oregen3.utils.BlockUtils;
import me.banbeucmas.oregen3.utils.PluginUtils;
import org.bukkit.*;
import org.bukkit.block.Bl... |
/*
* Copyright (c) 2021, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* 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... |
/*
* 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 ... |
package kn.uni.sen.joblibrary.tartar.convert.smt2modify;
/**
* Reduce the length of a trace to certain depth
*
* @author Martin Koelbl
*/
public class SMT2ReduceLength extends Smt2Clone
{
public SMT2ReduceLength(int difLength)
{
this.reduceLength = difLength;
}
} |
/* Copyright 2018 Telstra Open Source
*
* 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 la... |
package com.example.zeebe.task;
import com.example.zeebe.autoconfigure.ZeebeObjectMapperAutoConfiguration;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsCons... |
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distribute... |
/*
* (C) Packt Publishing Ltd, 2017-2018
*/
package chapter4.fxroot;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
/**
*
* @author sgrinev
*/
public class MyController impl... |
package org.hm8090.cordova;
import android.app.AlertDialog;
import android.app.DownloadManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
... |
package com.inflectra.spiratest.addons.testnglistener.soap;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotat... |
package org.kanpiaoxue.exportiteyeblog.service;
/**
* BlogService.java
*
* @author kanpiaoxue
* @version 1.0
* Create Time 2018年12月8日 下午10:23:24
* Description : 博客导出服务类接口
*/
public interface BlogService {
/**
* @throws Exception
* @author kanpiaoxue
* Create Time 2... |
package com.prupe.mcpatcher.basemod.ext18;
import com.prupe.mcpatcher.ClassMod;
import com.prupe.mcpatcher.InterfaceMethodRef;
import com.prupe.mcpatcher.Mod;
public class IModelMod extends ClassMod {
public static final InterfaceMethodRef getFaces = new InterfaceMethodRef("IModel", "getFaces", "(LDirection;)Ljav... |
package chapter06;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class ScoredIndex implements Comparable<ScoredIndex> {
private final int indx;
private final double score;
public ScoredIndex(int indx, double score) {
this.indx = indx;
this.score =... |
// Copyright 2015-2021 Nkisi 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... |
package com.devcharly.onedev.plugin.imports.redmine;
import java.io.Serializable;
import java.util.Collection;
import com.google.common.collect.Lists;
import io.onedev.commons.loader.AbstractPluginModule;
import io.onedev.server.imports.IssueImporter;
import io.onedev.server.imports.IssueImporterContribution;
/**
... |
/*
* Copyright 2018 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
package com.example.oauth2pwd.common;
import javax.persistence.AttributeConverter;
import org.springframework.util.StringUtils;
public class UserRoleConverter implements AttributeConverter<UserRole, String> {
@Override
public String convertToDatabaseColumn(UserRole userRole) {
if (userRole == null) {
r... |
package es.janyma.rx;
import rx.Observable;
public class RxTest {
static String result = "";
static String resultFinal = "";
public static void main(String arg[]) {
Observable<String> observable = Observable.just("Hello");
observable.subscribe(s -> result = s);
if(result.equals("Hello")) {
System.out.... |
/*******************************************************************************
* Copyright 2019 Cu Pham
*
* 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... |
/*
* Copyright 2016-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
*
* or in the "licen... |
/**
* Copyright (c) 2016-present, RxJava Contributors.
*
* 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 l... |
/*
* Copyright 2015 Sergej Meister
*
* 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... |
package data.cleaning.core.utils;
public enum FileCache {
USE_MATCHES_CACHE, REFRESH_MATCHES_CACHE, NONE;
} |
package com.entfrm.biz.system.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.entfrm.biz.system.entity.RoleMenu;
/**
* <p>
* 角色和菜单关联表 服务类
* </p>
*
* @author entfrm
* @since 2019-01-30
*/
public interface RoleMenuService extends IService<RoleMenu> {
} |
/*
* ScreenLineManager.java - Manage screen line counts
* :tabSize=8:indentSize=8:noTabs=false:
* :folding=explicit:collapseFolds=1:
*
* Copyright (C) 2004 Slava Pestov
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published... |
package io.github.thesixonenine.product.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;
import ... |
/*
* Copyright ConsenSys AG.
*
* 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... |
package com.wumeng.jetpackproject.lifecycle;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import com.wumeng.jetpackproject.R;
/**
* @author WuMeng
*/
public class LifeCycleActivity extends AppCompatActivity {
private static final String TAG = LifeCycleAc... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.j... |
package com.github.daggerok;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
... |
package com.anji_ahni.util;
import java.text.DecimalFormat;
public class Misc {
static DecimalFormat nf1 = new DecimalFormat("00");
public static String formatTimeInterval(long duration) {
long days = duration / (24 * 60 * 60);
duration -= days * 24 * 60 * 60;
long hours = duration / (60 * 60);
duration -=... |
/*
* Copyright 2014 The Netty Project
*
* The Netty Project 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:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Algorithms.PatternMatching;
import java.util.Scanner;
/**
*
* @author mankank
*/
public class NaivePatternMatchingAlgorith... |
/* 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... |
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE
package org.bytedeco.tensorflow;
import org.bytedeco.tensorflow.Allocator;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.tensorflow.global.tensorflow.*;
// ------------------... |
package me.star.system.dto;
import lombok.Data;
import me.star.annotation.Query;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* @author Star Chou
* @description /
* @create 2022/1/8 20:26
*/
@Data
public class UserQueryCriteria... |
package edu.sjtu.naocemis.service.impl;
import edu.sjtu.naocemis.dao.NewsDao;
import edu.sjtu.naocemis.entity.News;
import edu.sjtu.naocemis.service.NewsService;
import org.apache.commons.collections.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.anno... |
/*
* 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 ... |
/**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Sun Nov 29 12:05:14 GMT 2020
*/
package com.eteks.sweethome3d.model;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit... |
package ga.strikepractice.events;
import java.util.HashSet;
import ga.strikepractice.fights.party.partyfights.PartySplit;
import ga.strikepractice.party.Party;
public class PartySplitEndEvent extends FightEndEvent {
private final Party party;
private final HashSet<String> losers, winners;
public PartyS... |
package com.xiangzi.sapanywhere.info;
public class UomGroupInfo extends BaseInfo {
private String id;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = na... |
/**
* eGov suite of products aim to improve the internal efficiency,transparency,
accountability and the service delivery of the government organizations.
Copyright (C) <2015> eGovernments Foundation
The updated version of eGov suite of products as by eGovernments Foundation
is available at http://www... |
/*
* 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 ... |
/*
* Copyright 2015-2018 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* 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... |
/*
* Copyright (c) 2019 SKB Kontur
*
* 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
* to use, copy, modify, merge, publish,... |
/**
* Copyright (c) 2013, 2020 Yasutaka Nishimura
*
* 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... |
/**
* Copyright 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the
* LICENSE-examples file in the root directory of this source tree.
*/
package com.facebook.samples.litho;
import com.facebook.yoga.YogaAlign;
import com.facebook.yoga.YogaFlexDire... |
package com.dimowner.audiorecorder.util;
import android.content.res.ColorStateList;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.GradientDrawable;
import android.graphics.drawable.RippleDrawable;
import android.graphics.drawable.ShapeDrawab... |
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, softw... |
package ru.job4j.array;
import org.junit.Test;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;
public class CheckTest {
@Test
public void whenDataMonoByTrueThenTrue() {
Check check = new Check();
boolean[] input = new boolean[] {true, true, true, true};
... |
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you m... |
/*
* (C) Copyright 2017 Boni Garcia (http://bonigarcia.github.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/licenses/LICENSE-2.0
*
* Unless require... |
package com.opencloud.portal.uaa.server.configuration;
import com.opencloud.common.exception.OpenOAuth2WebResponseExceptionTranslator;
import com.opencloud.common.security.OpenHelper;
import com.opencloud.common.security.OpenTokenEnhancer;
import org.springframework.beans.factory.annotation.Autowired;
import org.sprin... |
/*
* Licensed to GraphHopper GmbH under one or more contributor
* license agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* GraphHopper GmbH licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may n... |
/*
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
package com.nuist.library.scancode;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import com.nuist.library.R;
import com.nuist.library.base.BaseActivity;
public class ScancodeActivity extends BaseActivity {
public static void launch(Context context) {
Inten... |
/*
* Camel ApiCollection generated by camel-api-component-maven-plugin
*/
package camelinaction.internal;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import camelinaction.HiWorldConfiguration;
import camelinaction.HiWorldFileHelloEndpoint... |
package net.gvsun.gsexam.domain;
import javax.persistence.*;
import java.io.Serializable;
/**************************************************************************
* Description:预约考试的信息domain
*
* @author:lixueteng
* @date:2017/10/20 0020
*************************************************************************... |
/*
* 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 ... |
/************************************************************************
HideHandler.java is part of Ti4j 3.1.0 Copyright 2013 Emitrom 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
... |
// Copyright 2019 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 writi... |
/*
*
* * Copyright (C) 2014 Camptocamp
* *
* * This file is part of MapFish Print
* *
* * MapFish Print 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 Software Foundation, either version 3 of the License, or
... |
package com.djdch.simpleeventsystem.event;
public interface Sourceable {
public Object getSource();
} |
package imports.k8s;
/**
* Deployment enables declarative updates for Pods and ReplicaSets.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.39.0 (build 8af72c2)", date = "2021-10-15T13:35:33.482Z")
@software.amazon.jsii.Jsii(module = imports.k8s.$Module.class, fqn = "k8s.KubeDeployment")
public class KubeDeplo... |
/*
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... |
/*
* Copyright 2008-2009 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... |
package org.endeavourhealth.skeleton.api.endpoints;
import com.codahale.metrics.annotation.Timed;
import io.astefanutti.metrics.aspectj.Metrics;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.endeavourhealth.skeleton.api.logic.TemplateLo... |
/*
* Copyright (C) 2016 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... |
package com.gitee.pagesmanager.server.common;
import com.gitee.easyopen.message.ErrorMeta;
/**
* 定义错误的地方
* @author tanghc
*/
public class AdminErrors {
private AdminErrors(){}
static String isvModule = "isv.error_"; // error_zh_CN2.properties内容前缀
public static final ErrorMeta NO_LOGIN = new Erro... |
/*
Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable
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... |
package com.ruoyi.project.system.menu.service;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import com.ruoyi.project.system.role.domain.RoleMenu;
... |
package com.ibm.pojo.GoalResource;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
public class Identifier {
public String value;
public String getValue() { return value; }
public void setValue(String value) { this.value = value; }
public String toString() { return ReflectionToSt... |
/*
* Copyright 2012-2019 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
package kodkod.examples.pardinus.decomp;
import java.util.ArrayList;
import java.util.List;
import kodkod.ast.Expression;
import kodkod.ast.Formula;
import kodkod.ast.IntConstant;
import kodkod.ast.IntExpression;
import kodkod.ast.Relation;
import kodkod.ast.Variable;
import kodkod.engine.decomp.DModel;
import kodkod... |
package net.lecousin.framework.web.services.soap.filters;
import net.lecousin.framework.web.WebRequest;
import net.lecousin.framework.web.security.LoginRequest;
import net.lecousin.framework.web.security.TokenRequest;
import net.lecousin.framework.web.services.soap.SOAP;
import net.lecousin.framework.web.services.soap... |
package de.uni_jena.cs.fusion.semantic.datasource.fallback;
/*-
* #%L
* LakeBase Semantic Service
* %%
* Copyright (C) 2018 Heinz Nixdorf Chair for Distributed Information Systems, Friedrich Schiller University Jena
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this fi... |
import java.nio.file.Files;
import java.nio.file.Path;
public class Files05 {
public static void main(String[] args) throws Exception {
Files.delete(Path.of("prefix14956008266795807605"));
boolean isDelete = Files.deleteIfExists(Path.of("prefix17311423759899869910"));
System.out.println(... |
/*===========================================================================
Copyright (C) 2009 by the Okapi Framework contributors
-----------------------------------------------------------------------------
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in com... |
package odms.commons.model._enum;
/**
* Enum constructor for Blood Types
*/
public enum BloodTypes {
AMINUS("A-"),
APLUS("A+"),
BPLUS("B+"),
BMINUS("B-"),
OMINUS("O-"),
OPLUS("O+"),
ABMINUS("AB+"),
ABPLUS("AB-");
private final String name;
BloodTypes(String s) {
name... |
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package org.unimodules.adapters.react;
public final class R {
private R() {}
public static final class attr {
private ... |
package com.zhy.authproject.module.home;
/**
* Created by zhanghaoye on 10/21/16.
*/
public class HomeComponent {
} |
/*
* This file is part of fabric-loom, licensed under the MIT License (MIT).
*
* Copyright (c) 2016-2021 FabricMC
*
* 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,... |
package gov.nasa.jpf.symbc.branchcoverage;
import com.ibm.wala.classLoader.IBytecodeMethod;
import com.ibm.wala.classLoader.IMethod;
import com.ibm.wala.ipa.callgraph.AnalysisCacheImpl;
import com.ibm.wala.ipa.callgraph.AnalysisOptions;
import com.ibm.wala.ipa.callgraph.IAnalysisCacheView;
import com.ibm.wala.ipa.call... |
package org.zalando.nakadi.exceptions.runtime;
public class InvalidStreamIdException extends NakadiBaseException {
private final String streamId;
public InvalidStreamIdException(final String message, final String streamId) {
super(message);
this.streamId = streamId;
}
public String g... |
package com.bumptech.glide.supportapp.github._700_tall_image;
import java.io.IOException;
import android.content.Context;
import android.graphics.*;
import com.bumptech.glide.load.model.ImageVideoWrapper;
class RegionImageVideoDecoder extends RegionResourceDecoder<ImageVideoWrapper> {
public RegionImageVideoDecode... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package model.bean;
/**
*
* @author Leonardo de Jesus
*/
public class UsuarioClass {
private int id;
private String no... |
package net.silentchaos512.mechanisms.block.generator.lava;
import net.minecraft.entity.player.PlayerInventory;
import net.minecraft.inventory.container.Container;
import net.minecraft.item.BucketItem;
import net.minecraft.item.ItemStack;
import net.minecraft.tags.FluidTags;
import net.minecraft.util.Direction;
import... |
package datos;
import java.sql.Connection;
import java.sql.SQLException;
import org.apache.commons.dbcp.BasicDataSource;
public class poolConexion {
private static poolConexion INSTANCE = null;
private static Connection con = null;
private static BasicDataSource dataSource;
private static String url ... |
package com.yodiwo.androidagent.plegma;
/**
* Created by ApiGenerator Tool (Java) on 28/08/2015 18:34:42.
*/
/**
* Globally unique identifier of a Graph's Block
*/
public class BlockKey {
public com.yodiwo.androidagent.plegma.GraphKey GraphKey;
public int BlockId;
public BlockKey() {
}
pub... |
/*
* 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 not ... |
package net.idik.lib.cipher.so.encrypt;
import android.util.Base64;
import java.io.UnsupportedEncodingException;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import javax.crypto.Ba... |
package io.split.engine.segments;
import com.google.common.collect.Sets;
import io.split.engine.SDKReadinessGates;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.Set;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledEx... |
package edu.isi.nlp.corpora.ere;
public interface ERESpanning {
public String getID();
public ERESpan getExtent();
} |
/*
* #%L
* SciJava UI components for Java Swing.
* %%
* Copyright (C) 2010 - 2020 SciJava developers.
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the ab... |
package com.baiyi.opscloud.facade.template.factory;
import com.google.common.collect.HashBasedTable;
import com.google.common.collect.Table;
import lombok.extern.slf4j.Slf4j;
/**
* @Author baiyi
* @Date 2021/12/7 3:15 PM
* @Version 1.0
*/
@Slf4j
public class TemplateFactory {
private TemplateFactory() {
... |
/*
* Copyright 2019 EPAM Systems
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
package org.ccctc.common.commonidentity.openidc.validator;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpEntity;
import org.springf... |
package com.coderperu.exchangerate;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ExchangeRateServiceApplication {
public static void main(String[] args) {
SpringApplication.run(ExchangeRateServiceApplica... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.