answer
stringlengths
17
10.2M
package com.jfinal.rest; import java.io.File; import java.util.ArrayList; import java.util.List; public class ClassScanner { private ClassScanner() { } private static ClassLoader classLoader = null; private static String classPath = null; static { classLoader = ClassScanner.class.getClassLoa...
package com.joelhockey.jacknji11; import java.util.Map; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.joelhockey.codec.Buf; import com.joelhockey.codec.Hex; import com.sun.jna.Memory; import com.sun.jna.NativeLong; import com.sun.jna.Pointer; import com.sun.jna.ptr.Byte...
package com.justinsb.etcd; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.URI; import java.net.URLEncoder; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ExecutionException; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...
package com.lb_stuff.kataparty; import com.lb_stuff.kataparty.api.IPartySet; import com.lb_stuff.kataparty.api.KataPartyService; import com.lb_stuff.kataparty.api.IMessenger; import com.lb_stuff.kataparty.api.IParty; import static com.lb_stuff.kataparty.api.IParty.IMember; import com.lb_stuff.kataparty.api.PartyRank; i...
package com.stratio.specs; import com.auth0.jwt.JWTSigner; import com.ning.http.client.cookie.Cookie; import com.stratio.exceptions.DBException; import com.stratio.tests.utils.RemoteSSHConnection; import com.stratio.tests.utils.ThreadProperty; import cucumber.api.DataTable; import cucumber.api.java.en.Given; import org...
package com.uchicom.smtp; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.PrintStream; import java.io.Writer...
package com.vaadan.playground; import com.vaadin.data.Property; import com.vaadin.data.util.BeanItemContainer; import com.vaadin.data.util.ObjectProperty; import com.vaadin.event.LayoutEvents; import com.vaadin.ui.*; import java.util.List; public class Header extends HorizontalLayout { final private ObjectProperty<...
/* *\ ** SICU Stress Measurement System ** ** Project P04 | C380 Team A ** ** EBME 380: Biomedical Engineering Design Experience ** ** ...
package es.uniovi.DBUpdate.util; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class Jdbc { private static String DRIVER = "org.sqlite.JDBC"; private static String URL= "jdbc:sqlite:/sqlite/asw.db"; stati...
package eu.amidst.scai2015; import eu.amidst.core.datastream.*; import eu.amidst.core.distribution.Multinomial; import eu.amidst.core.inference.InferenceAlgorithmForBN; import eu.amidst.core.inference.messagepassing.VMP; import eu.amidst.core.io.DataStreamLoader; import eu.amidst.core.learning.StreamingVariationalBayes...
package io.github.classgraph; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.nio.file.FileSystemNotFoundException; import java.nio.file.InvalidPathException; import java.nio.file.Path; impo...
package io.pivio.ganges.maven; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import org.apache.commons.lang3.builder.EqualsBuilder; import...
package jabsc.classgen; import bnfc.abs.AbstractVisitor; import bnfc.abs.Absyn.ClassBody; import bnfc.abs.Absyn.ClassDecl; import bnfc.abs.Absyn.ClassImplements; import bnfc.abs.Absyn.ClassParamDecl; import bnfc.abs.Absyn.ClassParamImplements; import bnfc.abs.Absyn.ExtendsDecl; import bnfc.abs.Absyn.FieldAssignClassBod...
package javax.time.calendar; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectStreamException; import java.io.Serializable; import java.io.StreamCorruptedException; import java.util.Collections; import java.util.HashMap; import java.util.Map; import javax.time.CalendricalException; imp...
package kodkod.engine; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Arrays; import java.util.Iterator; import kodkod.ast.Formula; import kodkod.ast.Relation; import kod...
package mmarquee.demo; import mmarquee.automation.AutomationElement; import mmarquee.automation.AutomationException; import mmarquee.automation.AutomationTreeWalker; import mmarquee.automation.AutomationTreeWalker.AutomationElementVisitor; import mmarquee.automation.UIAutomation; public class DemoTreeWalker extends Tes...
package nl.mpi.kinnate; import java.util.ArrayList; public class GraphDataNode { enum SymbolType { // symbol terms are used here to try to keep things agnostic square, triangle, circle } public enum RelationType { sibling, ancestor, descendant, union } public static RelationT...
package nuclibook.server; import nuclibook.constants.C; import nuclibook.constants.RequestType; import nuclibook.entity_utils.SecurityUtils; import nuclibook.models.Staff; import nuclibook.routes.*; import org.apache.commons.configuration.ConfigurationException; import spark.Session; import spark.Spark; import java.awt...
package org.b3log.symphony.model; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; import java.util.regex.Pattern; import org.apache.c...
package org.basex.query; import static org.basex.core.Text.*; import static org.basex.query.QueryText.*; import static org.basex.query.util.Err.*; import static org.basex.util.Token.*; import java.io.IOException; import java.util.HashMap; import java.util.HashSet; import org.basex.core.Context; import org.basex.core.Pr...
package org.basex.query.func; import static org.basex.query.QueryTokens.*; import static org.basex.query.QueryText.*; import static javax.xml.datatype.DatatypeConstants.*; import java.io.IOException; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang....
package org.cactoos.io; import java.io.IOException; import java.io.InputStream; import org.cactoos.Input; import org.cactoos.Scalar; /** * Length of Input. * * <p>There is no thread-safety guarantee. * * @author Yegor Bugayenko (yegor256@gmail.com) * @version $Id$ * @since 0.1 */ public final class LengthOfInpu...
package org.dynmap.hdmap; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.LineNum...
package org.icij.extract.cli; import org.icij.extract.core.*; import java.util.Locale; import java.util.logging.Logger; /** * Extract * * @author Matthew Caruana Galizia <mcaruana@icij.org> * @version 1.0.0-beta * @since 1.0.0-beta */ public enum Command { QUEUE(QueueCli.class), WIPE_QUEUE(WipeQueueCli.cl...
package org.jtrfp.trcl.core; import java.util.Collection; import java.util.Collections; import java.util.Set; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class Features { private static FeaturesImpl impl = new FeaturesImpl(); ...
package org.jtrfp.trcl.obj; import java.beans.BeanInfo; import java.beans.Introspector; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.beans.PropertyDescriptor; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import...
package org.lantern.oauth; import java.io.IOException; import java.io.InputStream; import javax.security.auth.login.CredentialException; import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.StringUtils; import org.apache.http.Header; import org.apache.http.HttpEntity; import org.apache.http.StatusLine;...
package org.myrobotlab.service; import java.io.File; import java.io.IOException; import java.io.PrintWriter; import java.net.InetAddress; import java.net.URISyntaxException; import java.nio.file.Files; import java.nio.file.Paths; import java.nio.file.StandardCopyOption; import java.text.SimpleDateFormat; import java.ut...
package org.myrobotlab.service; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.URISyntaxException; import java.nio.file.Files; import java.nio.file.Paths; import java.nio.file.StandardCopyOption; import java.text.SimpleDateFormat; import java.util.ArrayList; import jav...
package org.nuxeo.common; import java.io.File; import java.util.Properties; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> */ public class Environment { /** * Constants that identifies possible hosts for the framework. */ public static final String JBOSS_HOST = "JBoss"; // Jet...
package org.weakref.jmx; public class JmxException extends RuntimeException { private static final long serialVersionUID = 1L; public enum JmxCause { CONFIG, MALFORMED_OBJECT_NAME, INSTANCE_ALREADY_EXISTS, INSTANCE_NOT_FOUND, MBEAN_REGISTRATION } private final...
package org.wiztools.restclient; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import...
package pointGroups.gui; import java.awt.BorderLayout; import javax.swing.JPanel; import pointGroups.geometry.Edge; import pointGroups.geometry.Point; import pointGroups.geometry.Schlegel; import pointGroups.gui.event.EventDispatcher; import pointGroups.gui.event.types.SchlegelResultEvent; import pointGroups.gui.event....
package rdfanalyzer.spark; import java.util.List; import org.apache.spark.api.java.function.Function; import org.apache.spark.sql.DataFrame; import org.apache.spark.sql.Row; import org.json.JSONObject; public class EntryPoint { /** * Reads the suggested entry points from initially computed files. * *...
package seedu.scheduler.ui; import java.util.Date; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import javafx.fxml.FXML; import javafx.scene.Node; import javafx.scene.control.Label; import javafx.scene.layout.HBox; import seedu.scheduler.mod...
package tbax.baxshops.items; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.DyeColor; import org.bukkit.Material; import org.bukkit.block.banner.Pattern; import org.bukkit.block.banner.PatternType; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.enchantments.Enchantme...
package io.spacedog.client; import java.util.Optional; import org.junit.Assert; import io.spacedog.sdk.SpaceDog; import io.spacedog.utils.Backends; import io.spacedog.utils.Credentials; import io.spacedog.utils.Passwords; import io.spacedog.utils.SpaceFields; import io.spacedog.utils.SpaceParams; import io.spacedog.uti...
package joliex.gwt.client; import com.google.gwt.user.client.rpc.IsSerializable; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; public class Value implements Serializable, IsSerializable { public enum Type implements IsSerializable { UNDEFINED, STRIN...
package com.couchbase.cblite.phonegap; import android.content.Context; import android.text.TextUtils; import org.apache.cordova.CallbackContext; import org.apache.cordova.CordovaPlugin; import org.apache.cordova.CordovaWebView; import org.apache.cordova.CordovaInterface; import org.apache.cordova.PluginResult; import o...
package com.db.net.http; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.InetSocketAddress; import java.net.MalformedURLException; import java.net.Socket; import java.net.URL; import java.security.KeyStore; imp...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ch.unizh.ini.jaer.projects.virtualslotcar; import com.sun.opengl.util.GLUT; import java.awt.Point; import java.awt.geom.Point2D; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; im...
package com.mebigfatguy.fbcontrib.detect; import org.apache.bcel.Repository; import org.apache.bcel.classfile.AnnotationEntry; import org.apache.bcel.classfile.Attribute; import org.apache.bcel.classfile.Code; import org.apache.bcel.classfile.Constant; import org.apache.bcel.classfile.ConstantPool; import org.apache.bc...
package com.morph.engine.graphics.shaders; import com.morph.engine.core.Game; import com.morph.engine.graphics.GLRenderingEngine; import com.morph.engine.graphics.Texture; import com.morph.engine.graphics.Uniforms; import com.morph.engine.graphics.components.RenderData; import com.morph.engine.math.Matrix4f; import com...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.slidellrobotics.reboundrumble.commands; import com.slidellrobotics.reboundrumble.RobotMap; import com.slidellrobotics.reboundrumble.subsystems.TrackingCamera; import edu.wpi.first.wpilibj.Timer; import edu.wp...
package net.formula97.andorid.car_kei_bo; public final class R { public static final class array { public static final int distanceUnit=0x7f060000; public static final int priceUnit=0x7f060001; public static final int volumeUnit=0x7f060002; } public static final class attr { } ...
package edu.psu.compbio.seqcode.projects.akshay.MultiSeq; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; import edu.psu.compbio.seqcode.projects.akshay.MultiSeq...
package edu.psu.compbio.seqcode.projects.akshay.MultiSeq; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; import edu.psu.compbio.seqcode.projects.akshay.MultiSeq...
package es.tid.tests; import java.lang.reflect.Array; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.net.Inet4Address; import java.net.Inet6Address; import java.util.ArrayList; import java.util.Arrays; import java.u...
package fr.adrienbrault.idea.symfony2plugin.ui; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.options.Configurable; import com.intellij.openapi.options.ConfigurationException; import com.intellij.openapi.project.Project; import com.intellij.ui.AnActionButton; import com.intellij.ui...
package gate.plugin.learningframework.engines; import cc.mallet.fst.CRF; import cc.mallet.fst.CRFOptimizableByLabelLikelihood; import cc.mallet.fst.CRFTrainerByLabelLikelihood; import cc.mallet.fst.CRFTrainerByStochasticGradient; import cc.mallet.fst.CRFTrainerByThreadedLabelLikelihood; import cc.mallet.fst.CRFTrainerB...
package me.coley.recaf; import me.coley.recaf.bytecode.AccessFlag; import me.coley.recaf.bytecode.InsnUtil; import org.objectweb.asm.tree.*; import me.coley.recaf.parse.assembly.Assembly; import me.coley.recaf.parse.assembly.exception.ExceptionWrapper; import org.junit.jupiter.api.Test; import java.lang.reflect.Field; ...
package org.xins.server; import java.io.IOException; import java.util.ArrayList; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.oro.text.regex.MalformedPatternException; import org.apache.oro.text.regex.Pattern; import org.apache.oro.text.regex.Perl5Compil...
package org.takes.rq; import com.google.common.base.Joiner; import com.jcabi.http.request.JdkRequest; import com.jcabi.http.response.RestResponse; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import...
package org.antlr.intellij.plugin; import com.intellij.lang.annotation.AnnotationHolder; import com.intellij.lang.annotation.ExternalAnnotator; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.util.TextRange; import com.intellij.opena...
package rocks.matchmaker; import example.ast.FilterNode; import example.ast.ProjectNode; import org.junit.jupiter.api.Test; import java.util.List; import java.util.NoSuchElementException; import java.util.stream.Stream; import static java.util.Arrays.asList; import static java.util.stream.Collectors.toList; import stat...
package uk.me.sa.cursus.app; import static eu.lp0.cursus.db.data.Gender.FEMALE; import static eu.lp0.cursus.db.data.Gender.MALE; import static uk.me.sa.cursus.app.MainTest.Country.ARMBONIA; import static uk.me.sa.cursus.app.MainTest.Country.EARBONIA; import static uk.me.sa.cursus.app.MainTest.Country.ELBONIA; import st...
package net.wendal.nutzbook.module; import static net.wendal.nutzbook.util.RedisInterceptor.jedis; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import javax.servlet.http.HttpServletResponse; import org.apache.shiro.authz.annotation.RequiresUser; import org.nutz.dao.Cnd; import org.nutz.ioc.a...
package arekkuusu.solar.common.block.tile; import arekkuusu.solar.api.entanglement.relativity.IRelativeTile; import arekkuusu.solar.api.entanglement.relativity.RelativityHandler; import arekkuusu.solar.common.block.BlockQelaion; import com.google.common.collect.ImmutableList; import com.google.common.collect.Lists; imp...
package net.zephyrizing.http_server; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; import java.net.ServerSocket; import java.net.Socket; public class HttpServer { public static void main(String[] args) throws Exception { int portNumber; if (args.length ...
package ch.uzh.csg.reimbursement.dto; import lombok.Data; @Data public class SearchExpenseDto { private String lastName; private String role; private String accountingText; }
package com.KOIFish.FishStock.backend; import org.hibernate.Session; import org.hibernate.Transaction; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import com.KOIFish.FishStock.beans.FishStockUser; @Component(value="facade") public class FishStockFacade...
package com.akiban.sql.optimizer.rule; import com.akiban.ais.model.Column; import com.akiban.server.error.UnsupportedSQLException; import com.akiban.sql.optimizer.plan.*; import com.akiban.sql.optimizer.plan.JoinNode.JoinType; import com.akiban.server.expression.std.Comparison; import com.akiban.ais.model.Group; import...
package com.btk5h.skriptmirror.skript; import com.btk5h.skriptmirror.SkriptMirror; import org.bukkit.Bukkit; import org.bukkit.event.Event; import org.bukkit.event.EventPriority; import org.bukkit.event.HandlerList; import org.bukkit.event.Listener; import org.bukkit.plugin.EventExecutor; import java.lang.reflect.Array...
package com.celements.web.plugin.cmd; import static com.google.common.base.Strings.*; import java.io.IOException; import java.io.Reader; import java.io.StringReader; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.celements.web.utils.Html2Text; public class PlainTextCommand { private static final ...
package com.cookingfox.chefling.command; import com.cookingfox.chefling.ContainerInterface; import com.cookingfox.chefling.Factory; import com.cookingfox.chefling.LifeCycle; import com.cookingfox.chefling.exception.*; import java.lang.reflect.Constructor; import java.lang.reflect.Modifier; import java.util.*; /** * Im...
package com.github.AsaiYusuke.SushMock; import java.io.File; import java.io.IOException; import org.apache.sshd.server.SshServer; import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider; import com.github.AsaiYusuke.SushMock.shell.CachedAuthenticator; import com.github.AsaiYusuke.SushMock.shell.ProxySh...
package com.github.brandtabbott; public class BlockingPoolException extends RuntimeException { private static final long serialVersionUID = 6589942387653952899L; public BlockingPoolException() { super(); } public BlockingPoolException(String message) { super(message); } public BlockingPoolException(...
package com.github.sabomichal.immutablexjc; import java.beans.Introspector; import java.io.IOException; import java.text.MessageFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.Ite...
package com.github.sbugat.rundeck.plugins; import java.io.DataOutputStream; import java.io.IOException; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import java.text.DateFormat; import java.util.Date; import java.util.Lis...
package com.gmail.nossr50.commands.admin; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import com.gmail.nossr50.datatypes.McMMOPlayer; import com.gmail.nossr50.datatypes.PlayerProfile; import com.gmail.nossr50.loc...
package com.jenjinstudios.io.concurrency; import com.jenjinstudios.io.ExecutionContext; import com.jenjinstudios.io.Message; import java.util.Collection; import java.util.Collections; import java.util.LinkedList; import java.util.List; import java.util.function.Consumer; /** * Queues incoming and outgoing messages in ...
// of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // all copies or substanti...
package com.minimajack.v8.code.impl; import java.io.File; import java.nio.file.Path; import java.nio.file.Paths; import java.util.UUID; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.minimajack.v8.code.ProjectTreeSearcher; import com.minimajack.v8.metadata.external.V8MetaData; import com.minimajack...
package com.mysterioustrousers.firehose; import java.util.ArrayList; import java.util.Calendar; import java.util.List; import java.util.TimeZone; import com.google.gson.annotations.SerializedName; import org.apache.commons.lang3.StringUtils; public class AgentSettings extends FHObject { @SerializedName("seconds_from_...
package com.nibr.oncology.util.realwordid; import joptsimple.OptionParser; import joptsimple.OptionSet; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.AnnotationConfigApplica...
// checkstyle: Checks Java source code for adherence to a set of rules. // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // This library is distributed in the hope that it will be useful, // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE...
package com.raphydaphy.vitality.spell; import java.util.AbstractMap.SimpleEntry; import com.raphydaphy.vitality.api.essence.Essence; import com.raphydaphy.vitality.api.spell.Spell; import com.raphydaphy.vitality.api.wand.WandEnums.CoreType; import com.raphydaphy.vitality.api.wand.WandEnums.TipType; import com.raphydaph...
package com.redhat.ceylon.compiler.js; import java.util.ArrayList; import java.util.Map; import java.util.Objects; import com.redhat.ceylon.compiler.typechecker.model.Class; import com.redhat.ceylon.compiler.typechecker.model.Declaration; import com.redhat.ceylon.compiler.typechecker.model.Method; import com.redhat.cey...
package com.universeprojects.web; import com.universeprojects.common.shared.log.Logger; import com.universeprojects.common.shared.util.Strings; import javax.servlet.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; /** * This servlet takes care ...
package com.witchworks.common.item.baubles; import baubles.api.BaublesApi; import baubles.api.IBauble; import baubles.api.cap.IBaublesItemHandler; import com.witchworks.common.item.ItemMod; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInv...
package com.youcruit.mailchimp.client.http; import java.net.URI; import java.util.Locale; public enum APIBaseUrl { US1, US2, US3, US4, US5, US6, US7, US8, US9, US10, US11, US12, US13; private final String API_BASE_URL = "https://%s.api.mailchimp.com/3.0"; public URI getUri() { return URI.create(String.f...
package crazypants.enderio.machine.buffer; import net.minecraft.block.Block; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net...
package de.ehex.foss.gematik.specifications; import static de.ehex.foss.gematik.specifications.PTStBs.gemProdT_CM_KOMLE_PTV1_2_0; import static de.ehex.foss.gematik.specifications.PTStBs.gemProdT_FD_KOMLE_PTV1_2_0; import static de.ehex.foss.gematik.specifications.PTStBs.gemProdT_FD_VSDM_PTV1_5_0_1; import static de.eh...
package de.proteinms.omxparser.util; import com.compomics.util.Util; import com.compomics.util.experiment.biology.AminoAcidPattern; import com.compomics.util.experiment.biology.PTM; import com.compomics.util.experiment.biology.Peptide; import com.compomics.util.experiment.identification.Advocate; import com.compomics.u...
package de.tblsoft.solr.pipeline.filter; import com.google.common.base.Strings; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import de.tblsoft.solr.elastic.AliasManager; import de.tblsoft.solr.http.ElasticHelper; import de.tblsoft.solr.http.HTTPHelper; import de.tblsoft.solr.pipeline.AbstractFilter;...
package exnihiloadscensio.compatibility.jei; import java.util.List; import com.google.common.collect.Lists; import exnihiloadscensio.blocks.BlockSieve.MeshType; import exnihiloadscensio.blocks.ENBlocks; import exnihiloadscensio.compatibility.jei.barrel.fluidtransform.FluidTransformRecipe; import exnihiloadscensio.compa...
package genepi.imputationserver.steps.vcf; import genepi.hadoop.command.Command; import genepi.io.FileUtil; import genepi.io.text.LineReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.Collections;...
package gov.nasa.jpl.mbee.generator; import gov.nasa.jpl.mbee.lib.Utils; import gov.nasa.jpl.mbee.viewedit.PresentationElement; import gov.nasa.jpl.mbee.viewedit.PresentationElement.PEType; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Queue; impo...
package info.faceland.loot.listeners; import static info.faceland.loot.utils.inventory.InventoryUtil.broadcast; import static info.faceland.loot.utils.inventory.InventoryUtil.getFirstColor; import com.tealcube.minecraft.bukkit.shade.apache.commons.lang3.StringUtils; import com.tealcube.minecraft.bukkit.shade.apache.com...
package info.gameboxx.gameboxx.components; import info.gameboxx.gameboxx.exceptions.OptionAlreadyExistsException; import info.gameboxx.gameboxx.game.Game; import info.gameboxx.gameboxx.components.internal.GameComponent; import info.gameboxx.gameboxx.game.GameSession; import info.gameboxx.gameboxx.util.SoundEffect; impo...
package land.face.strife.managers; import static org.bukkit.attribute.Attribute.GENERIC_FOLLOW_RANGE; import com.tealcube.minecraft.bukkit.shade.apache.commons.lang3.StringUtils; import java.util.HashMap; import java.util.Map; import java.util.Objects; import land.face.strife.StrifePlugin; import land.face.strife.data....
package me.deftware.client.framework.fonts; import me.deftware.client.framework.main.Bootstrap; import me.deftware.client.framework.utils.ChatColor; import me.deftware.client.framework.utils.TexUtil; import me.deftware.client.framework.utils.Texture; import org.apache.commons.lang3.ArrayUtils; import org.lwjgl.opengl.G...
package me.nallar.javatransformer.api; import com.github.javaparser.JavaParser; import com.github.javaparser.ParseException; import com.github.javaparser.ast.CompilationUnit; import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; import com.github.javaparser.ast.body.TypeDeclaration; import lombok.*; import...
package me.unrealization.jeeves.jsonModels; public class EdsmModels { public static class EDStatus { public String lastUpdate; public String type; public String message; public String status; } public static class CommanderLocation { public String msgnum; ...
package mil.nga.geopackage.extension.style; import java.util.ArrayList; import java.util.List; import mil.nga.geopackage.db.GeoPackageDataType; import mil.nga.geopackage.extension.related.simple.SimpleAttributesTable; import mil.nga.geopackage.user.custom.UserCustomColumn; import mil.nga.geopackage.user.custom.UserCust...
package net.galaxygaming.dispenser.event; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.HashSet; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import net.galaxygaming.dispenser.GameDispenser; import net.galaxygaming.dispenser.game.Game; i...
package opendap.wcs.v2_0; import opendap.PathBuilder; import opendap.wcs.srs.SimpleSrs; import org.apache.commons.codec.binary.Hex; import org.apache.http.client.CredentialsProvider; import org.jdom.Element; import org.jdom.JDOMException; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; import org.sl...
package org.adligo.i.log.client; import java.util.HashMap; import org.adligo.i.util.client.I_Map; import org.adligo.i.util.client.MapFactory; import org.adligo.j2se.util.MapWrapper; import org.adligo.tests.ATest; public class SimpleLogTests extends ATest implements I_LogOutput { private String currentLog = ""; ...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tonegod.gui.controls.extras; import com.jme3.font.LineWrapMode; import com.jme3.input.event.KeyInputEvent; import com.jme3.input.event.MouseButtonEvent; import com.jme3.math.ColorRGBA; import com.jme3.math.Vector...
package net.coobird.thumbnailator; import java.awt.Point; import net.coobird.thumbnailator.filters.Caption; import net.coobird.thumbnailator.filters.ImageFilter; import net.coobird.thumbnailator.filters.Watermark; /** * An enum of predefined {@link Position}s. * <p> * Primary use of this enum is for selecting a posi...