text stringlengths 7 995k |
|---|
/*
*
* Copyright 2017-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 req... |
/*
* Copyright (C) 2016 The Guava 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 agre... |
package psyco.springbean;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanNameAware;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
import org.spring... |
package net.sf.appstatus.batch;
import net.sf.appstatus.batch.jdbc.BatchDao;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.test.context.Contex... |
package rocks.inspectit.shared.cs.indexing.restriction.impl;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import org.slf4j.Logger;
import org.springframework.stereotype.Component;
import rocks.inspectit.shar... |
/*
* 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 org.apache.cassandra.predictor;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.cassandra.locator.DynamicEndpointSnitch;
import org.apache.ca... |
package se.pesd.jdbc;
import se.pesd.jdbc.annotations.Column;
import se.pesd.jdbc.annotations.Table;
/*
* TABLE_SCHEM String => schema name
TABLE_CATALOG String => catalog name (may be null)
*/
@Table(catalog = "system", schema = "information_schema", tableName = "schemas")
public class SchemaMetadata {
@Column(n... |
package io.nosqlbench.driver.mongodb;
import com.mongodb.ReadPreference;
import io.nosqlbench.engine.api.activityconfig.yaml.OpTemplate;
import io.nosqlbench.virtdata.core.bindings.BindingsTemplate;
import io.nosqlbench.virtdata.core.templates.ParsedTemplate;
import io.nosqlbench.virtdata.core.templates.StringBindings... |
/*
* 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 2011 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 applica... |
/*
* Copyright 2002-2012 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 sec.helloweb;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HelloWebController {
@RequestMapping("*")
@ResponseBody
public String home() {
... |
package com.example.demo.controller;
import com.example.demo.common.Response;
import com.example.demo.config.AliyunOSSProperties;
import com.example.demo.enums.FileTypeEnum;
import com.example.demo.exception.TestException;
import com.example.demo.model.UserInfo;
import com.example.demo.service.iface.TestService;
impor... |
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
package org.bytedeco.systems.windows;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.javacpp.presets.javacpp.*;
import static org.bytedeco.systems.global.windows.*;
// #ifdef STRICT
... |
/*
* 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 ... |
package io.redskap.swagger.brake.core.rule.path;
import java.util.ArrayList;
import java.util.Collection;
import io.redskap.swagger.brake.core.CheckerOptions;
import io.redskap.swagger.brake.core.CheckerOptionsProvider;
import io.redskap.swagger.brake.core.model.Path;
import io.redskap.swagger.brake.core.model.Specif... |
package org.apache.lucene.analysis.synonym;
/**
* 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 Lic... |
package com.example.akin.bilekpartner;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import com.example.akin.bilekpartner.Mlogic... |
/*
* 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 com.dtolabs.rundeck.core.logging;
import java.io.InputStream;
import java.util.Date;
/**
* Represents a file to be stored
*/
public interface StorageFile {
/**
* @return File type
*/
String getFiletype();
/**
* @return input stream
*/
InputStream getInputStream();
/... |
package gedi.utils.sortedNodesList;
public class Node<T> extends ImmutableNode<T> {
private Node<T> next;
public Node(T value) {
this.value = value;
}
public void setNext(Node<T> next) {
this.next = next;
}
public Node<T> getNext() {
return next;
}
public boo... |
package uk.gov.hmcts.divorce.solicitor.event.page;
import uk.gov.hmcts.divorce.common.ccd.CcdPageConfiguration;
import uk.gov.hmcts.divorce.common.ccd.PageBuilder;
import uk.gov.hmcts.divorce.divorcecase.model.Applicant;
import uk.gov.hmcts.divorce.divorcecase.model.CaseData;
public class SolAboutApplicant2 implement... |
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... |
package me.atam.atam4jdomain;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collection;
import java.util.Optional;
public final class TestsRunResult {
private final Collection<IndividualTestResult> tests;
private final Status status;
public TestsRunResult(final @JsonProperty("t... |
package kr.or.ksmart;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class JavabasicEx01 {
/*
* 실습 1. 키보드 입력 값을 숫자로 받아 해당 단수에 맞는 구구단을 출력하도록 하여라.
* */
public static void main(String[] args) throws IOException {
// System.out.println("구구단 단수를 입력하세용");
//
/... |
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.bui... |
package org.sputnikdev.bluetooth.manager;
/*-
* #%L
* org.sputnikdev:bluetooth-manager
* %%
* Copyright (C) 2017 Sputnik Dev
* %%
* 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
*
*... |
package mage.cards.s;
import mage.abilities.Ability;
import mage.abilities.costs.common.TapTargetCost;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.ExileTargetEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Ou... |
package no.cantara.file.watcher;
import com.google.common.collect.Sets;
import com.google.common.eventbus.DeadEvent;
import com.google.common.eventbus.EventBus;
import com.google.common.eventbus.Subscribe;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonObject;
import no.can... |
package com.hdekker.media.slideshows.definition;
public class MediaEvent {
public enum SlideShowMediaEventType{
ADDED,
REMOVED,
UPDATED
}
final SlideShowMediaEventType eventType;
final String objectKey;
public MediaEvent(SlideShowMediaEventType eventType, String objectKey) {
super();... |
package com.pendulab.theExchange.model;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by Anh Ha Nguyen on 6/12/2015.
*/
public class Club implements Parcelable {
private String id = "", name = "", logo = "", address = "", city = "", state = "", country = "";
private double latitude = 0d... |
package com.lcx.gulimall.order.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.lcx.common.utils.PageUtils;
import com.lcx.gulimall.order.entity.OrderSettingEntity;
import java.util.Map;
/**
* 订单配置信息
*
* @author lcx
* @email 2251727682@qq.com
* @date 2022-01-26 13:26:53
*/
public... |
package me.iLucaH.PrisonEnchants.Enchants;
import java.util.HashSet;
import java.util.Random;
import java.util.Set;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.e... |
/*
* Copyright 1999-2019 Seata.io Group.
*
* 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... |
package org.quiltmc.qsl.command.mixin;
import java.util.UUID;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.network.MessageType;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.text.Text;
import org.quiltmc.qsl.command.api.server.S2CSendContext;
import org.quiltmc.q... |
package de.rieckpil.blog;
import javax.persistence.*;
@Entity
public class FileEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String fileName;
private String contentType;
@Lob
private byte[] data;
public FileEntity() {
}
public FileEntity(String fil... |
package us.crast.mondochest.dialogue;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
import mondocommand.ChatMagic;
import org.apache.commons.lang.StringUtils;
import org.bukkit.conversations.ConversationAbandonedEvent;
import org.bukkit.conversations.Convers... |
package com.huaweicloud.sdk.cce.v3.model;
import com.huaweicloud.sdk.core.SdkResponse;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.huawe... |
/*
* Copyright 2012 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 applica... |
package modelo;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
public class BaseDeDados {
private HashMap<Character, List<Pessoa>> contatos = new HashMap<>();
public boolean adicionarContato(Pessoa novoContato) {
// pega primeira letra do nome da pessoa
Character chave = novoCo... |
package com.sensiblemetrics.api.alpenidos.pattern.commander;
import com.sensiblemetrics.api.alpenidos.pattern.commander.employee_service.EmployeeDatabase;
import com.sensiblemetrics.api.alpenidos.pattern.commander.employee_service.EmployeeHandle;
import com.sensiblemetrics.api.alpenidos.pattern.commander.exception.Dat... |
/*
* 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 ... |
package com.github.lwaddicor.springstartupanalysis;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
/**
* Created by Nemmy on 24/02/2017.
*/
@Component
public class SlowStartingComponent3 {
@PostConstruct
public void postConstruct() throws InterruptedException {
... |
package com.codetreatise.repository;
import java.util.Optional;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.codetreatise.bean.PayType;
@Repository
public interface PayTypeRepository extends JpaRepository<PayType, Long> {
PayType findBy... |
package models;
class Square {
private Piece piece;
Square() {
}
void put(Piece piece) {
this.piece = piece;
}
Piece remove() {
Piece piece = this.piece;
this.piece = null;
return piece;
}
Piece getPiece() {
return this.piece;
}
public ... |
package com.atlassian.jira.plugins.dvcs.util;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpMethod;
import org.apache.commons.httpclient.UsernamePasswordCredentials;
import org.apache.commons.httpclient.auth.AuthScope;
import org.apache.commons.httpclient.methods.DeleteMetho... |
/*
* Copyright (c) 2019-2020. Ivan Vakhrushev and others.
* https://github.com/mfvanek/pg-index-health
*
* This file is a part of "pg-index-health" - a Java library for
* analyzing and maintaining indexes health in PostgreSQL databases.
*
* Licensed under the Apache License 2.0
*/
package io.github.mfvanek.pg.... |
package ru.job4j.sort;
import org.junit.Test;
import org.junit.Before;
import java.util.ArrayList;
import java.util.List;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;
public class SortedUserTest {
SortUser sortUser = new SortUser();
ArrayList<User> users = new ArrayList<>(... |
/* JAT: Java Astrodynamics Toolkit
*
* Copyright (c) 2003 National Aeronautics and Space Administration. All rights reserved.
*
* This file is part of JAT. JAT is free software; you can
* redistribute it and/or modify it under the terms of the
* NASA Open Source Agreement
*
*
* This program is distributed ... |
/* Annot8 (annot8.io) - Licensed under Apache-2.0. */
package io.annot8.components.files.processors;
import static org.junit.jupiter.api.Assertions.*;
import com.j256.simplemagic.ContentType;
import io.annot8.api.components.responses.ProcessorResponse;
import io.annot8.api.data.Item;
import io.annot8.common.data.cont... |
package org.codehaus.mojo.versions.utils;
/*
* 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 Li... |
/*
* 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... |
/*
* 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 com.web.common.web.common.util.pay;
/**
* 因各渠道的业务差异,有些特殊值需要过渡处理
* 所以这里用于装载订单状态更新时的一些中间值,可根据需要补充;
* @author apple
*
*/
public class YilvPayUpdateBean {
private String orderNo; //订单号
private String status; //订单状态:NOTPAY, SUCCESS, FAIL, USERPAYING
//查询流水单号,用于银联渠道查询订单或退款时用,保存在chargeRecord的query_i... |
package com.hinkmond.finalproj;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.support.rowset.SqlRowSet;
import org.springframework.web.bind.annotation.*;
@RestController
public class JDBCController {
private final static String KEYFILEPATH = "./keyFile.key";
@CrossOrigin... |
/*
// Licensed to Julian Hyde under one or more contributor license
// agreements. See the NOTICE file distributed with this work for
// additional information regarding copyright ownership.
//
// Julian Hyde licenses this file to you under the Apache License,
// Version 2.0 (the "License"); you may not use this file e... |
package mg.rivolink.app.aruco;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.net.Uri;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.widget.Toast;
import android.widget.ImageView;
import java.io.InputStream;
import java.i... |
package ru.majordomo.hms.rc.user.resources.validation.validator;
import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;
import ru.majordomo.hms.rc.user.resources.validation.ValidEmail;
public class EmailValidator implements ConstraintValidator<ValidEmail, String> {
@Over... |
/*
* MIT License
*
* Copyright (c) 2020 Airbyte
*
* 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, ... |
package me.devsaki.hentoid.fragments.intro;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import me.devsaki.hentoid.R;... |
package zq.whu.zhangshangwuda.ui.ringer;
import java.util.Calendar;
import zq.whu.zhangshangwuda.base.BaseSherlockFragment;
import zq.whu.zhangshangwuda.base.PreferenceHelper;
import zq.whu.zhangshangwuda.tools.LessonsTool;
import zq.whu.zhangshangwuda.ui.MainActivityTAB;
import zq.whu.zhangshangwuda.ui.MyApplication... |
package br.com.zupacademy.transacao.kafka.listener;
import br.com.zupacademy.transacao.modelo.Transacao;
import br.com.zupacademy.transacao.repository.TransacaoRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.kafka.annotation.KafkaListener;
import org.springframewor... |
/**
* Autogenerated by Thrift Compiler (0.7.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*/
package org.apache.hadoop.hive.ql.plan.api;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
impor... |
package morningsage.particletitlescreen.utils;
import morningsage.particletitlescreen.Particle;
import morningsage.particletitlescreen.ducks.Vec2fDuck;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.util.Window;
import net.minecraft.util.math.Vec2f;
import java.util.Random;
public final cla... |
package module949packageJava0;
import java.lang.Integer;
public class Foo1089 {
Integer int0;
Integer int1;
public void foo0() {
new module949packageJava0.Foo1088().foo9();
}
public void foo1() {
foo0();
}
public void foo2() {
foo1();
}
public void foo3() {
foo2();
}
public... |
/*
* Copyright 2010-2012 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... |
package com.oissela.software.multilevelexpindlistview;
import androidx.recyclerview.widget.RecyclerView;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
/**
* Multi-level expandable indentable list adapter.
* Initially all elements in the list are single it... |
package org.apache.spark.scheduler;
public class SparkListenerNodeBlacklistedForStage$ extends scala.runtime.AbstractFunction5<java.lang.Object, java.lang.String, java.lang.Object, java.lang.Object, java.lang.Object, org.apache.spark.scheduler.SparkListenerNodeBlacklistedForStage> implements scala.Serializable {
/**... |
package de.aaschmid.taskwarrior.client;
import javax.net.ssl.SSLContext;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
import de.aaschmid.taskwarrior.config.TaskwarriorConfiguration;
import de.aaschmid.taskwarrior.message.TaskwarriorMessage;
import edu.um... |
/*
* 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 chapter05.main;
import chapter05.dao.AccountDao;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Xm... |
package com.yayandroid.locationmanager.providers.dialogprovider;
import android.app.Dialog;
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.yayandroid.locationmanager.listener.DialogListener;
import com.yayandroid.locationmanager.providers.permission... |
package im.nll.data.dq;
import com.alibaba.fastjson.JSON;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Lists;
import im.nll.data.dq.criterion.Rs;
import im.nll.data.dq.entity.Role;
import org.junit.After;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.ArrayLis... |
package com.tuyo.produtodata.produtosdata;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ProdutosdataApplication {
public static void main(String[] args) {
SpringApplication.run(ProdutosdataApplication.cl... |
/*
* 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 2016 Yahoo 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 org.bndly.rest.repository.resources.html;
/*-
* #%L
* REST Repository Resource
* %%
* Copyright (C) 2013 - 2020 Cybercon 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 ... |
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
package com.twilio.rest.proxy.v1.service;
import com.twilio.base.Creator;
import com.twilio.converter.Promoter;
import com.twilio.exception.ApiConnectionException;
import com.twilio.exception.ApiExcepti... |
package com.microsoft.bingads.campaignmanagement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymou... |
/*
* Copyright 2002-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... |
package com.nainai.service;
import com.alibaba.fastjson.JSONObject;
import com.nainai.domain.Bid;
/**
* Created by haopeng yan on 2018/1/10 16:31.
*
* @author haopeng yan
* @version 1.0
* @since 1.0
* Copyright (C) 2018. haopeng yan All Rights Received
*/
public interface BidService {
/**
* 添加一条招标信息
... |
/*
* 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 ma... |
package com.atguigu.gmall.oms.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 退款信息
*
* @author Aaron
* @email 153398483@qq.com
* @date 2020-09-21 17:48:38
*/
@D... |
/*******************************************************************************
* Copyright 2015 InfinitiesSoft Solutions 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
*
* ... |
/**
* Copyright 2017 VMware, Inc.
* <p>
* 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
* <p>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or... |
package com.funi.muyq.jhipster.web.rest;
import com.funi.muyq.jhipster.web.rest.vm.LoggerVM;
import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.LoggerContext;
import com.codahale.metrics.annotation.Timed;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpStatus;
import org.springfram... |
// https://www.hackerrank.com/challenges/permutation-equation
import java.util.Scanner;
public class SequenceEquation {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = Integer.parseInt(in.nextLine());
int[] input = new int[n];
for (int i = 0; i < input.length; i++) {
... |
/**
Copyright (c) 2010 , J. M. Dieterich and B. Hartke
2010-2013, J. M. Dieterich
2015, J. M. Dieterich and B. Hartke
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
... |
package org.globus.gsi.provider;
import org.globus.gsi.X509ProxyCertPathParameters;
import java.security.KeyStore;
import java.security.cert.CertStore;
import java.util.Map;
import javax.net.ssl.ManagerFactoryParameters;
import org.globus.gsi.proxy.ProxyPolicyHandler;
public class GlobusTrustManagerFactoryParamete... |
package com.coral.learning.dubbo.cunsmer.control;
import com.alibaba.dubbo.config.annotation.Reference;
import com.coral.learning.dubbo.api.MessageRequest;
import com.coral.learning.dubbo.api.MessageResponse;
import com.coral.learning.dubbo.api.MessageService;
import org.springframework.web.bind.annotation.GetMapping;... |
// Licensed to Cloudera, Inc. under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. Cloudera, Inc. licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this f... |
/**
* Copyright 2016 SmartBear Software
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable l... |
/*
* Copyright 2019 Web3 Labs Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... |
/*
* 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 FUJITSU LIMITED 2018
*******************************************************************************/
package org.oscm.serviceprovisioningservice.bean;
import static org.junit.Assert.assertEquals;
import static org.junit.A... |
package seedu.internhunter.ui.cards;
import static seedu.internhunter.ui.panel.PanelDisplayKeyword.TITLE_DISPLAY_NAME;
import javafx.scene.image.Image;
import javafx.scene.transform.Translate;
import seedu.internhunter.model.profile.ProfileItem;
/**
* A UI component that displays some information of a {@code Profil... |
/*
* Copyright 2016 higherfrequencytrading.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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable la... |
package divya.controller;
import java.io.File;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
impo... |
package net.minecraft.server.network;
import com.google.common.collect.Lists;
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.Channel;
import io.netty.channel.ChannelException;
import io.netty.channel.ChannelFuture;
import io.netty.chann... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.