text stringlengths 7 995k |
|---|
package vip.incolor.dto;
/**
* @author LiYizhan
* @email 1062585732@qq.com
* @description
* @date 2018/4/23
* @time 20:08
*/
public class MultiInvoices {
private String personalName;
private String companyName;
private String code;
public String getPersonalName() {
return personalName;
... |
package net.thumbtack.tyunkov.lessons;
import net.thumbtack.tyunkov.lessons.fifth.Trainee;
import net.thumbtack.tyunkov.lessons.fifth.TraineeException;
import org.junit.Test;
import java.util.Set;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fa... |
package com.tui.proof.exception;
public class ClientNotFoundException extends Exception {
public ClientNotFoundException(String message) {
super(message);
}
} |
package BHL5.behavior;
/*Generated by MPS */
import jetbrains.mps.core.aspects.behaviour.BaseBHDescriptor;
import org.jetbrains.mps.openapi.language.SAbstractConcept;
import jetbrains.mps.smodel.adapter.structure.MetaAdapterFactory;
import java.util.List;
import jetbrains.mps.core.aspects.behaviour.api.SMethod;
impor... |
import java.io.Serial;
import java.util.*;
/**
* Represents Students information and account
* @extends User
*/
public class Student extends User {
/**
* @generated
*/
private Integer yearOfStudy;
/**
* @generated
*/
private Faculty faculty;
/**
* @generated
*/
... |
package it.alessangiorgi.ndt7clientandroidjava;
import android.os.AsyncTask;
import android.util.Log;
import com.google.gson.Gson;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import speedtest.Ndt7ServerSearch;
import speedtest.model.Results;
import speedtest.m... |
package main;
import java.util.ArrayList;
public interface SparseReadLocation {
public double getScore();
public void setScore(double score);
public long getFilePointer();
public void setFilePointer(long filePointer);
public ArrayList<Pair<Integer,Integer>> getCoordinates();
public int getAmbiguityFac... |
package ru.javabegin.training.fastjava2.shop.goods;
public class Televisor extends ElectronicDevice {
private String company;
private String department;
private String model;
public Televisor (String name) {
super(name);
}
public Televisor (double price, boolean hasGuarantee, String... |
package org.mintcode.errabbit.core.rabbit.name;
import org.junit.Test;
import org.mintcode.errabbit.model.RabbitGroup;
import static org.junit.Assert.*;
/**
* Created by soleaf on 9/29/15.
*/
public class RabbitGroupNameComparatorTest {
@Test
public void testCompare() throws Exception {
RabbitGrou... |
/**
* Copyright (C) 2006-2017 INRIA and contributors
* Spoon - http://spoon.gforge.inria.fr/
*
* This software is governed by the CeCILL-C License under French law and
* abiding by the rules of distribution of free software. You can use, modify
* and/or redistribute the software under the terms of the CeCILL-C li... |
package de.andrena.et14.spring.vortrag;
import java.io.Serializable;
import java.util.Objects;
import org.joda.time.DateTime;
import de.andrena.et14.spring.konferenz.Konferenz;
public class Vortrag implements Serializable {
private static final long serialVersionUID = 1L;
private final Long id;
private final K... |
//package com.mc.gateway.utils;
//
//import cn.hutool.core.util.StrUtil;
//import lombok.extern.slf4j.Slf4j;
//import org.springframework.http.server.reactive.ServerHttpRequest;
//
//import java.net.InetAddress;
//import java.net.UnknownHostException;
//import java.util.Map;
//
///**
// * [ReactiveAddrUtil ]
// *
// * ... |
/*
* 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 ... |
/*
* Copyright (c) 2008-2019, 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 ... |
/*
* Copyright (C) 2012-2013 VMware, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required b... |
package com.blog.manager.dto;
import lombok.Data;
/**
* @Title: UserSearchDTO
* @Description:
* @author: dongwn
* @version: 1.0
*/
@Data
public class UserSearchDTO {
private String sysUserName;
private String userPhone;
private String startTime;
private String endTime;
} |
package org.swtk.commons.dict.wiktionary.generated.e.d.m; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.swtk.common.dict.dto.wiktionary.Entry; import com.trimc.blogger.commons.utils.GsonUtils; public class WiktionaryEDM000 { private static Map<String, Entry> map = new Has... |
package com.xian.mall.third;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
public class ThirdA... |
package ij.plugin;
import java.awt.*;
import java.io.*;
import java.util.*;
import ij.*;
import ij.gui.*;
import ij.io.*;
import ij.util.*;
import ij.plugin.frame.Editor;
import ij.text.TextWindow;
/** Compiles and runs plugins using the javac compiler. */
public class Compiler implements PlugIn, FilenameFilter {
pr... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package spiritshared;
/**
*
* @author jamesw
*/
public class LoginInfo {
public String username;
public byte[] password;
public LoginInfo(String u, byte[] p){
username = u;
password = p;
... |
/*
* Copyright (c) 2008-2019, 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 ... |
package p;
class Generic<E> {
enum A implements {
ONE() {
A getSquare() {
return ONE;
}
}
, TWO() {
A getSquare() {
return MANY;
}
}
, MANY() {
A getSquare() {
r... |
package com.dibujaron.feudalism.terrcreator;
import java.awt.Color;
import java.awt.Graphics;
import java.io.PrintWriter;
import java.util.ArrayList;
public class Territory {
ArrayList<Point> points;
String name;
public Territory(ArrayList<Point> points, String name){
this.points = new ArrayList<Point>();
fo... |
package org.ovirt.engine.core.bll.network.vm;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.Mo... |
/*
* 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 ... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See License.txt in the repository root.
package com.microsoft.tfs.client.common.ui.vc.serveritem;
import com.microsoft.tfs.client.common.git.json.TfsGitRepositoryJson;
public class TypedServerGitRepository extends TypedServerItem {
... |
package com.baomidou.mybatisplus.extension.plugins.inner;
import com.baomidou.mybatisplus.core.metadata.OrderItem;
import org.junit.jupiter.api.Test;
import java.util.Arrays;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author miemie
* @since 2020-06-28
*/
class PaginationInnerInterceptorTest... |
package com.qiangdong.reader.service;
import com.qiangdong.reader.entity.Goods;
import com.qiangdong.reader.entity.User;
import com.qiangdong.reader.entity.UserGoods;
import com.baomidou.mybatisplus.extension.service.IService;
import com.qiangdong.reader.request.user_goods.BuyUserGoodsRequest;
import com.qiangdong.rea... |
package org.motechproject.mots.domain;
import java.util.UUID;
import javax.persistence.Column;
import javax.persistence.EntityListeners;
import javax.persistence.JoinColumn;
import javax.persistence.MappedSuperclass;
import javax.persistence.OneToOne;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombo... |
package org.cache2k.impl.xmlConfiguration.generic;
/*
* #%L
* cache2k implementation
* %%
* Copyright (C) 2000 - 2020 headissue GmbH, Munich
* %%
* 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 L... |
package cn.dustlight.auth.controllers.resources;
import cn.dustlight.auth.ErrorEnum;
import cn.dustlight.auth.entities.DefaultPublicUser;
import cn.dustlight.auth.entities.DefaultUser;
import cn.dustlight.auth.entities.DefaultUserRole;
import cn.dustlight.auth.entities.User;
import cn.dustlight.auth.services.oauth.Enh... |
package com.adyen.model.nexo;
import io.swagger.v3.oas.annotations.media.Schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Data related to the batch of tr... |
/*
* This software is provided "AS IS" without a warranty of any kind. You use it
* on your own risk and responsibility!!! This file is shared under BSD v3
* license. See readme.txt and BSD3 file for details.
*/
package kendzi.josm.kendzi3d.action;
import static org.openstreetmap.josm.tools.I18n.*;
import java.a... |
package net.hongkuang.ditui.project.busi.orderCancelApproval.domain;
import net.hongkuang.ditui.framework.web.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 订单取消审批表 busi_order_cancel_approval
*
* @author yj
* @date 2019-01-... |
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* 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 right... |
package net.nemerosa.ontrack.json;
public class JsonMissingFieldException extends RuntimeException {
public JsonMissingFieldException(String field) {
super("Required field missing: " + field);
}
} |
/*
* Copyright 2015-2021 Real Logic Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... |
package com.nlf.resource.i18n.comparator;
import java.util.Comparator;
import com.nlf.App;
/**
* i18n文件比较器,按名称比较,越大的越前,但框架里面的除外(框架内的始终排在框架外的后面)。
*
* @author 6tail
*
*/
public class I18nComparator implements Comparator<String>{
public int compare(String o1,String o2){
String pkg = App.class.getPackage().... |
/*
* Generated by ASN.1 Java Compiler (https://www.asnlab.org/)
* From ASN.1 module "DefPositionOffset"
*/
package com.hisense.hiatmp.asn.v2x.Map;
import org.asnlab.asndt.runtime.conv.AsnConverter;
import org.asnlab.asndt.runtime.conv.EncodingRules;
import org.asnlab.asndt.runtime.conv.IntegerConverter;
import org.... |
/*
* 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.example.pass.activities.mainActivity.fragments.mineFragment.presenter;
import com.example.pass.activities.mainActivity.fragments.mineFragment.view.impls.IMineView;
import com.example.pass.base.BasePresenter;
public class MinePresenter<V extends IMineView> extends BasePresenter<V> {
} |
/*
* Copyright 2011-2022 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... |
/* ###
* IP: GHIDRA
*
* 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 writin... |
/*
* Copyright (C) 2015 Atanas Gegov
*
* 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... |
/*
* Copyright (C) 2007 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 com.vamonossoftware.core;
import org.junit.Assert;
import org.junit.Test;
public class TextTableTest {
@Test
public void testTable() {
final TextTable table = new TextTable("xxx", TextTable.ALIGN.CENTER, TextTable.ALIGN.RIGHT, TextTable.ALIGN.LEFT);
table.add("AAA", "BBBBB", "CC");
... |
// Copyright 2014 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.
package org.chromium.chrome.browser.media.remote;
import android.annotation.TargetApi;
import android.app.PendingIntent;
import android.content.Component... |
/*
* @(#)LinkedList.java 1.46 03/01/23
*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java2.util2.linkedlist;
import gov.nasa.jpf.vm.Verify;
import java2.util2.*;
public class LinkedListDriverAdd_All {
private static L... |
package com.packtpub.java7.concurrency.chapter6.recipe09.task;
import java.util.concurrent.atomic.AtomicIntegerArray;
/**
* This task implements an incrementer. It increments by 1
* all the elements of an array
*
*/
public class Incrementer implements Runnable {
/**
* Array that store the elements to incremen... |
/*
* Copyright 2013 (c) MuleSoft, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... |
package zsir.model;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.testfx.framework.junit.ApplicationTest;
public class UserValidatorTest {
UserDAO ud;
UserValidator uv;
@Before
public void initialize() {
ud = UserDAOFactory.getInstance().createDAO();
ud.cre... |
package com.alibaba.json.bvt.parser;
import java.util.List;
import org.junit.Assert;
import com.alibaba.fastjson.JSON;
import junit.framework.TestCase;
public class ReadOnlyCollectionTest_final_field extends TestCase {
public void test_readOnlyNullList() throws Exception {
String text = "{\"list\"... |
package org.spaceroots.mantissa.random;
import junit.framework.*;
public class UniformRandomGeneratorTest
extends TestCase {
public UniformRandomGeneratorTest(String name) {
super(name);
}
public void testMeanAndStandardDeviation() {
UniformRandomGenerator generator = new UniformRandomGenerator(1739... |
package cl.json.social;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import java.io.File;
import android.os.Environment;
import android.net.Uri;
import cl.json.ShareFile;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.rea... |
package com.fasterxml.jackson.core.base;
import java.io.*;
import java.net.URL;
import java.nio.file.Path;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.core.io.IOContext;
import com.fasterxml.jackson.core.io.UTF8Writer;
/**
* Intermediate {@link TokenStreamFactory} sub-class used as the base fo... |
/*
*
* This file is part of the iText (R) project.
Copyright (c) 1998-2020 iText Group NV
* Authors: Balder Van Camp, Emiel Ackermann, et al.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License version 3
* as published by the ... |
package io.github.wendergalan.producer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ProducerApplication {
public static void main(String[] args) {
SpringApplication.run(ProducerApplication.class, args);... |
/*
* Copyright 2018 Felipe Joglar Santos
*
* 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 ... |
package net.minecraftforge.common.util;
import java.lang.reflect.*;
import java.util.*;
import cpw.mods.fml.common.FMLLog;
import net.minecraft.block.BlockPressurePlate.Sensitivity;
import net.minecraft.block.material.Material;
import net.minecraft.enchantment.EnumEnchantmentType;
import net.minecraft.entity.Entity.E... |
/*
* Copyright 2016 The Error Prone 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 ... |
package com.rsoft.app.services;
import java.util.List;
import com.rsoft.app.domain.User;
public interface IUserService {
public List<User> getUsers();
public User getUser(Long id);
public User save(User user);
public User delete(Long id);
} |
package com.adailsilva.iotenergymeter.api.system.services.exceptions;
public class NonexistentOrInactivePersonException extends RuntimeException {
private static final long serialVersionUID = 1L;
} |
package com.start-app.web.security.auth;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.authentication.AccountExpiredException;
import org.springframework.security.auth... |
/*
* TaskUnifier
* Copyright (c) 2013, Benjamin Leclerc
* All rights reserved.
*/
package com.leclercb.taskunifier.plugin.organitask.calls;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.... |
/*
* 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 club.csmrobotics.wss.service;
import club.csmrobotics.wss.domain.data.Package;
import club.csmrobotics.wss.persistance.data.PackageRep;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
@Service
@AllArgsConstructor
public class PackageService {
private final PackageRep packa... |
// --------------------------------------------------------------------------------
// Copyright 2002-2021 Echo Three, 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:/... |
package algs.model.network;
import algs.model.list.DoubleLinkedList;
/**
* Encapsulate algorithm by which the augmenting path for a flow network
* is found.
* <p>
* Use Breadth-first search as implemented using DoubleLinkedList as a queue.
* Only works with FlowNetwork classes parameterized to use EdgeInfo[][] a... |
package org.minbox.framework.api.boot.sample;
import org.minbox.framework.api.boot.common.model.ApiBootResult;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.... |
/*
* Created on Feb 5, 2011
*
* 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... |
package com.gdkm.weixin;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.beans.factory.annotation.Autowir... |
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... |
/*
* Copyright 2015-2017 Austin Keener & Michael Ritter
*
* 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 ... |
package com.luck.picture.lib.widget.longimage;
import android.content.ContentResolver;
import android.content.Context;
import android.content.pm.PackageManager;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.text.TextU... |
package rip.orbit.hcteams.map.killstreaks;
import com.google.common.collect.Lists;
import lombok.Getter;
import net.frozenorb.qlib.command.Command;
import net.frozenorb.qlib.command.FrozenCommandHandler;
import net.frozenorb.qlib.command.Param;
import net.frozenorb.qlib.util.ClassUtils;
import org.bukkit.ChatColor;
im... |
package com.server.Puzzle.domain.board.dto.response;
import com.server.Puzzle.domain.board.enumType.Purpose;
import com.server.Puzzle.domain.board.enumType.Status;
import com.server.Puzzle.global.enumType.Field;
import com.server.Puzzle.global.enumType.Language;
import lombok.*;
import java.time.LocalDateTime;
import... |
package com.msb.mall.member.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.my... |
package com.msr.edu.controller;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.msr.common.vo.R;
import com.msr.edu.entity.Teacher;
import com.msr.edu.query.TeacherQuery;
import com.msr.edu.service.TeacherService;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.... |
// 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.tama.chat.utils.listeners;
public interface ChatUIHelperListener {
void onScreenResetPossibilityPerformLogout(boolean canPerformLogout);
} |
package the_warlord.cards.warlord;
import com.megacrit.cardcrawl.actions.AbstractGameAction;
import com.megacrit.cardcrawl.actions.common.DamageAction;
import com.megacrit.cardcrawl.actions.common.DrawCardAction;
import com.megacrit.cardcrawl.cards.DamageInfo;
import com.megacrit.cardcrawl.characters.AbstractPlayer;
i... |
package entity.cards;
import com.megacrit.cardcrawl.actions.AbstractGameAction;
import com.megacrit.cardcrawl.actions.common.ApplyPowerAction;
import com.megacrit.cardcrawl.actions.common.DamageAction;
import com.megacrit.cardcrawl.actions.common.GainBlockAction;
import com.megacrit.cardcrawl.cards.DamageInfo;
import ... |
package com.castellanos94.components.impl;
import java.util.ArrayList;
import java.util.Iterator;
import com.castellanos94.components.Ranking;
import com.castellanos94.solutions.Solution;
public class FastNonDominatedSort<S extends Solution<?>> implements Ranking<S> {
protected ArrayList<ArrayList<S>> fronts;
... |
/**
*
*/
package com.brooks.poker.game.progress;
import com.brooks.poker.command.PlayerCommand;
import com.brooks.poker.game.GameActions;
import com.brooks.poker.game.data.GamePhase;
import com.brooks.poker.game.data.GameState;
import com.brooks.poker.game.data.Table;
import com.brooks.poker.player.Player;
/**
* ... |
package org.jenkinsci.plugins.gitclient;
import hudson.EnvVars;
import hudson.FilePath;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.Collection;
import hudson.model.TaskListener;
import org.eclipse.jgit.lib.ObjectId;
import static org.junit.Assert.assertEquals;
import st... |
package org.umlg.sqlg.util;
import org.apache.tinkerpop.gremlin.process.traversal.step.util.Tree;
import java.io.Serializable;
import java.util.Comparator;
import java.util.TreeMap;
/**
* This is used by clients. Do not delete.
* Date: 2016/08/29
* Time: 11:08 AM
*/
public class SortedTree<T> extends TreeMap<T, ... |
/*
* Copyright (c) 2008-2018, 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 ... |
package com.novoda.downloadmanager;
import java.io.IOException;
import java.io.InputStream;
import okhttp3.Response;
import okhttp3.ResponseBody;
class WrappedOkHttpResponse implements NetworkResponse {
private final Response response;
WrappedOkHttpResponse(Response response) {
this.response = resp... |
/*
* Copyright 2008 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.ruoyi.common.core.text;
import com.ruoyi.common.core.utils.StringUtils;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.text.NumberFormat;
import java.util.Set;
/**
* 类型转换器
*
* @author ruoyi
*/
public class Convert {
... |
/*
* Copyright 2021 Siphalor
*
* 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 writ... |
/*********************************************************************************
* *
* The MIT License (MIT) *
* ... |
package com.github.stefvanschie.inventoryframework.util;
import com.github.stefvanschie.inventoryframework.pane.PaginatedPane;
import com.github.stefvanschie.inventoryframework.pane.Pane;
import com.github.stefvanschie.inventoryframework.pane.StaticPane;
import org.junit.jupiter.api.Test;
import java.util.Collection;... |
/****************************************************************
* 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... |
package com.st.BlueMS.demos.fftAmpitude;
import android.arch.lifecycle.ViewModelProviders;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.DialogFragment;
import android.view.LayoutInflater;
import android.view.View;
import ... |
package com.github.sladecek.maze.jmaze.properties;
//REV1
import com.github.sladecek.maze.jmaze.maze.MazeGenerationException;
import com.github.sladecek.maze.jmaze.print.Color;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream... |
/*
* 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.example.myapplication;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.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 ... |
package lab.stem.vim.guideFactory;
import java.util.ArrayList;
import java.util.List;
import lab.stem.vim.core.User;
import lab.stem.vim.core.DetectedPoiInfo;
import lab.stem.vim.core.NavInfo;
import lab.stem.vim.core.VIMSTATE;
public class SafetyGuideInfoFactory extends PoiGuideInfoFactory{
@Override
protec... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.