answer
stringlengths
17
10.2M
package org.aeonbits.owner.loaders; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; import org.xml.sax.ext.DefaultHandler2; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.pa...
package org.agmip.ace.util; import java.util.ArrayList; import java.util.HashMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.agmip.ace.AcePathfinder; /** * A collection of utilities to interact with the AcePathfinder. * * <pre>AcePathfinderUtil</pre> is a collection of static methods used to...
package org.agmip.functions; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.HashMap; import java.util.Map; import org.agmip.ace.AcePathfinder; import org.agmip.ace.util.AcePathfinderUtil; import org.agmip.common.Event; import org.agmip.common.Functions; import static or...
package com.metamatrix.platform.security.api.service; import java.io.Serializable; import java.util.List; import java.util.Set; import com.metamatrix.admin.api.exception.security.MetaMatrixSecurityException; import com.metamatrix.api.exception.security.InvalidPrincipalException; import com.metamatrix.api.exception.secu...
package org.ansj.app.keyword; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.TreeSet; import org.ansj.dic.LearnTool; import org.ansj.domain.Term; import org.ansj.splitWord.analysis.NlpAnalysis; public class KeyWordComputer...
package com.commercetools.pspadapter.payone.mapping; import com.commercetools.pspadapter.payone.config.PayoneConfig; import com.commercetools.pspadapter.payone.config.ServiceConfig; import com.commercetools.pspadapter.payone.domain.ctp.PaymentWithCartLike; import com.commercetools.pspadapter.payone.domain.payone.model....
package org.reactfx.util; import static org.reactfx.util.Either.*; import static org.reactfx.util.LL.*; import static org.reactfx.util.Tuples.*; import java.util.ArrayList; import java.util.List; import java.util.NoSuchElementException; import java.util.Optional; import java.util.function.BiFunction; import java.util.f...
package org.xbill.DNS; import java.io.*; import java.util.*; /** * A DNS Zone. This encapsulates all data related to a Zone, and provides * convienient lookup methods. * * @author Brian Wellington */ public class Zone extends NameSet { class AXFREnumeration implements Enumeration { private Enumeration znames;...
package org.jboss.as.cli.gui; import com.sun.tools.jconsole.JConsoleContext; import com.sun.tools.jconsole.JConsolePlugin; import java.awt.BorderLayout; import java.awt.Component; import java.io.IOException; import java.security.AccessController; import java.util.HashMap; import java.util.Map; import java.util.concurre...
package model; import java.util.ArrayList; import java.util.HashMap; import controller.Database; public class Employee implements Comparable<Employee> { //private static Employee loggedIn = Employee.loadFromID(Employee.getIDForLogin("rkaye", "rkaye"), null); private static Employee loggedIn; private int emp...
package com.yagadi.enguage; import com.yagadi.enguage.interpretant.Allopoiesis; import com.yagadi.enguage.interpretant.Autoload; import com.yagadi.enguage.interpretant.Concepts; import com.yagadi.enguage.interpretant.Repertoire; import com.yagadi.enguage.object.Overlay; import com.yagadi.enguage.object.Sofa; import com...
package org.smoothbuild.bytecode.type; import static com.google.common.truth.Truth.assertThat; import static org.smoothbuild.util.collect.Lists.list; import java.util.List; import java.util.function.Function; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; impor...
package br.ufrj.cos.expline.swing; import java.awt.BasicStroke; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Font; import java.awt.Frame; import java.awt.GradientPaint; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Gr...
package com.example.training01; import java.util.HashMap; import java.util.Map; import android.app.Activity; import android.content.Intent; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import android.os.Bundle; import android.view.Menu; import android.view.View; import andr...
package com.cedricziel.idea.typo3.container; import com.cedricziel.idea.typo3.domain.TYPO3RouteDefinition; import com.cedricziel.idea.typo3.psi.visitor.RouteDefinitionParserVisitor; import com.intellij.openapi.project.Project; import com.intellij.openapi.vfs.VirtualFile; import com.intellij.psi.PsiFile; import com.inte...
package com.cmput301.cs.project.serialization; /** * This class allows any class implementing Saveable to be saved and retrived from an elastic search server. * * The given Type must be a SearchResponse<Claim> due to Java restrictions. * * Example Usage: * * Type type = new TypeToken<SearchResponse<Claim>>() {}....
package com.renomad.capsaicin; import android.database.Cursor; import android.content.Intent; import android.content.ContentResolver; import android.content.CursorLoader; import android.provider.MediaStore; import android.os.Bundle; import android.os.AsyncTask; import android.support.v4.app.Fragment; import android.sup...
import java.util.*; public class RandomPermutation { static void swap(int[] a, int i, int j) { int t = a[i]; a[i] = a[j]; a[j] = t; } public static int[] getRandomPermutation(int n, Random rnd) { int[] res = new int[n]; for (int i = 0; i < n; i++) res[i] =...
package ca.corefacility.bioinformatics.irida.ria.web.projects; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.attribute.BasicFileAttributes; import java.security.Principal; import java.util.*; import java.util.stream.Collectors; import java.util.zip.ZipEntry; imp...
package com.comcast.oscar.examples; import com.comcast.oscar.configurationfile.ConfigurationFile; import com.comcast.oscar.configurationfile.ConfigurationFileExport; import com.comcast.oscar.configurationfile.ConfigurationFileImport; import com.comcast.oscar.test.TestDirectoryStructure; public class NetSNMPBinToTextToT...
package org.basex.http.restxq; import static org.basex.http.restxq.RestXqText.*; import static org.basex.util.Token.*; import java.io.*; import org.basex.http.*; import org.basex.io.*; import org.basex.io.serial.*; import org.basex.query.*; import org.basex.query.expr.Expr.Use; import org.basex.query.func.*; import org...
package com.after_sunrise.cryptocurrency.cryptotrader.service.bitflyer; import com.after_sunrise.cryptocurrency.bitflyer4j.Bitflyer4j; import com.after_sunrise.cryptocurrency.bitflyer4j.Bitflyer4jFactory; import com.after_sunrise.cryptocurrency.bitflyer4j.core.ConditionType; import com.after_sunrise.cryptocurrency.bitf...
package com.intellij.psi.impl.source.xml; import com.intellij.j2ee.ExternalResourceManager; import com.intellij.lang.ASTNode; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.progress.ProgressManager; import com.intellij.pom.PomModel; import com.intellij.pom.event.PomModelEvent; import com.int...
package org.buildobjects.process; import java.io.*; import java.util.*; import static java.util.Arrays.asList; import static org.buildobjects.process.Helper.asSet; /** A builder to construct a new process. The process gets configured by the withXXX-methods and * spawned by the run() method*/ public class ProcBuilder {...
package in.twizmwaz.cardinal.module.modules.regions.type.combinations; import in.twizmwaz.cardinal.module.ModuleCollection; import in.twizmwaz.cardinal.module.modules.regions.RegionModule; import in.twizmwaz.cardinal.module.modules.regions.parsers.modifiers.CombinationParser; import in.twizmwaz.cardinal.module.modules....
package org.codice.nitf.filereader; import java.io.InputStream; import java.text.ParseException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBElement; import javax.xml.bind.JAXBException; import javax.xml....
package net.shadowfacts.enfusion.machine.zinchoriumfurnace; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Items; import net.minecraft.inventory.ISidedInventory; import net.minecraft.item.ItemStack; import net.mine...
package com.genymobile.scrcpy; import android.graphics.Rect; import android.media.MediaCodecInfo; import android.os.BatteryManager; import android.os.Build; import java.io.IOException; import java.util.List; import java.util.Locale; public final class Server { private Server() { // not instantiable } ...
package com.github.andlyticsproject.console.v2; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import android.util.Log; import com.github.andlyticsproject.model.AppInfo; import com.github.andlyticsproject.mo...
package org.sagebionetworks.web.client.widget.entity.renderer; import org.gwtbootstrap3.client.ui.Button; import org.gwtbootstrap3.client.ui.constants.ButtonSize; import org.gwtbootstrap3.client.ui.constants.ButtonType; import org.sagebionetworks.web.client.DisplayUtils; import org.sagebionetworks.web.client.GWTWrapper...
package com.github.igotyou.FactoryMod.utility; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.UUID; import org.bukkit.ChatColor; import org.bukkit.DyeColor; import org.bukkit.Material; import org.bukkit.block.BlockFace; im...
package musician101.itembank.commands.dwcommands; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import musician101.itembank.Config; import musician101.itembank.ItemBank; import musician101.itembank.exceptions.InvalidAliasException; import musician101.itembank.lib.Commands; impor...
package org.helioviewer.plugins.eveplugin.radio.data; import java.awt.Rectangle; import java.util.Arrays; import java.util.Date; import java.util.concurrent.ExecutionException; import javax.swing.SwingWorker; import org.helioviewer.base.logging.Log; import org.helioviewer.viewmodel.changeevent.ChangeEvent; import org.h...
package net.java.sip.communicator.impl.gui.main.menus; import java.awt.*; import java.awt.event.*; import java.util.*; import javax.swing.*; import javax.swing.event.*; import net.java.sip.communicator.impl.gui.*; import net.java.sip.communicator.impl.gui.customcontrols.*; import net.java.sip.communicator.impl.gui.i18n...
package org.databene.commons.bean; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.databene.commons.BeanUtil; import org.databene.commons.ConfigurationError; import org.databene.commons.StringUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** *...
package com.gmail.alexellingsen.g2skintweaks; import android.content.res.XModuleResources; import android.content.res.XResources; import android.graphics.Color; import android.graphics.PorterDuffColorFilter; import android.graphics.drawable.Drawable; import android.util.TypedValue; import android.view.View; import andr...
package net.sf.jaer.hardwareinterface.usb.cypressfx2; import java.awt.Component; import java.util.logging.Level; import net.sf.jaer.hardwareinterface.usb.*; import net.sf.jaer.aemonitor.*; import net.sf.jaer.aemonitor.AEMonitorInterface; import net.sf.jaer.chip.*; //import ch.unizh.ini.caviar.chip.EventExtractor2D; imp...
package org.embulk.input; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.embulk.config.*; import org.embulk.spi.BufferAllocator; import org.embulk.spi.Exec; import org.embulk.spi.FileInputPlugin; i...
package com.omniti.labs; import java.io.IOException; import java.net.InetSocketAddress; import java.net.SocketAddress; import java.net.Socket; import java.net.SocketException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.channels.Selector; import java.nio.channels.spi.AbstractSelector; import ...
package net.runelite.api; import lombok.Getter; import lombok.RequiredArgsConstructor; @RequiredArgsConstructor public enum Quest { BLACK_KNIGHTS_FORTRESS(299, "Black Knights' Fortress"), COOKS_ASSISTANT(300, "Cook's Assistant"), THE_CORSAIR_CURSE(301, "The Corsair Curse"), DEMON_SLAYER(302, "Demon Slay...
package org.giweet.step; import java.lang.annotation.Annotation; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Type; public class MethodStepDescriptor extends StepDescriptor { private final Method method; private final Object instance; public M...
package com.jebysun.android.maptracker; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import and...
package org.ensembl.healthcheck.testcase; import org.ensembl.healthcheck.DatabaseRegistryEntry; import org.ensembl.healthcheck.ReportManager; import java.sql.Connection; /** * Subclass of EnsTestCase for tests that apply to a <em>single</em> database. Such tests should * subclass <em>this</em> class and implement the...
package org.jboss.netty.buffer; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.channels.GatheringByteChannel; import java.nio.channels.ScatteringByteChannel; import java.nio.charset.UnsupportedCharsetException; ...
package com.jme.scene.model.XMLparser.Converters; import com.jme.util.BinaryFileReader; import com.jme.scene.*; import com.jme.scene.model.Face; import com.jme.scene.model.XMLparser.JmeBinaryWriter; import com.jme.animation.KeyframeController; import com.jme.scene.model.EmptyTriMesh; import com.jme.math.Vector2f; impor...
package org.ensembl.healthcheck.testcase.variation; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import java.util.ArrayList; import org.ensembl.healthcheck.DatabaseRegistryEntry; import org.ensembl.healthcheck.ReportManager; import org.ensembl.healthcheck.Species; import org.ensembl...
/** * Simplistic <em>internal-use-only</em> logging layer which allows a user to * decide what logging framework Netty should use. * * @apiviz.hidden */ package org.jboss.netty.logging;
package com.mebigfatguy.fbcontrib.detect; import java.util.BitSet; import java.util.HashMap; import java.util.Map; import org.apache.bcel.classfile.Code; import org.apache.bcel.generic.Type; import com.mebigfatguy.fbcontrib.utils.BugType; import com.mebigfatguy.fbcontrib.utils.FQMethod; import com.mebigfatguy.fbcontrib...
/* * @author <a href="mailto:novotny@aei.mpg.de">Jason Novotny</a> */ package org.gridlab.gridsphere.portlet.impl; import org.gridlab.gridsphere.portlet.*; import org.apache.commons.fileupload.DiskFileUpload; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileUploadException; impo...
package com.miviclin.droidengine2d.util; import android.app.Activity; import android.app.ActivityManager; import android.content.Context; import android.content.pm.ConfigurationInfo; import android.content.res.Configuration; import android.os.Build; import android.view.Display; import android.view.Surface; import com.m...
package org.jetbrains.plugins.scala.compiler; import com.intellij.compiler.OutputParser; import com.intellij.compiler.impl.javaCompiler.FileObject; import com.intellij.openapi.compiler.CompilerMessageCategory; import com.intellij.openapi.vfs.LocalFileSystem; import com.intellij.openapi.vfs.VirtualFileManager; import co...
package org.mycat.web.task.server; import java.util.Date; import java.util.List; import java.util.Map; import org.hx.rainbow.common.core.SpringApplicationContext; import org.mycat.web.service.ShowService; import org.mycat.web.task.common.ITask; /* * mycat */ public class SyncSysSql implements ITask { private stat...
// ZAP: 2011/04/08 Changed to support clearview() in HttpPanels // ZAP: 2011/04/08 Changed to use PopupMenuResendMessage // ZAP: 2011/07/23 Use new add alert popup // ZAP: 2011/09/06 Fix alert save plus concurrent mod exceptions // ZAP: 2011/10/23 Fix add note and manage tags dialogs // ZAP: 2011/11/20 Set order // ZAP...
package org.myrobotlab.service; import java.util.HashMap; import java.util.Map; import org.myrobotlab.framework.Instantiator; import org.myrobotlab.framework.Service; import org.myrobotlab.framework.ServiceType; import org.myrobotlab.jme3.interfaces.Jme3App; import org.myrobotlab.logging.LoggerFactory; import org.myrob...
package org.pentaho.agilebi.pdi.modeler; import org.pentaho.di.core.database.DatabaseMeta; import org.pentaho.di.core.row.RowMetaInterface; import org.pentaho.di.trans.steps.tableoutput.TableOutputMeta; import org.pentaho.metadata.model.Domain; import org.pentaho.metadata.model.LogicalModel; /** * Provides information...
package com.thaiopensource.relaxng.parse.sax; import com.thaiopensource.relaxng.parse.DataPatternBuilder; import com.thaiopensource.relaxng.parse.Grammar; import com.thaiopensource.relaxng.parse.GrammarSection; import com.thaiopensource.relaxng.parse.IllegalSchemaException; import com.thaiopensource.relaxng.parse.Inclu...
package org.opencloudb.sharejoin; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.Map; import java.util.Map.Entry; import org.apache.log4j.Logger; public class TableFilter { protected static final Logger LOGGER = Logger.getLogger(TableFilter.class); private LinkedHashMap<String,Strin...
package org.phenoscape.obd.loader; import java.io.IOException; import java.net.MalformedURLException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import javax.xml.parsers.ParserConfigurationException; import org.a...
package com.vinsol.expensetracker.helpers; 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.SQLiteException; import android.database.sqlite.SQLiteOpenH...
package org.petapico.nanopub.indexer; import java.io.IOException; import java.io.InputStream; import java.sql.PreparedStatement; import java.sql.SQLException; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.zip.GZIPInputStream; import org.apache.http.H...
package org.ow2.proactive.scheduler.common.util; import java.io.Serializable; import java.security.KeyException; import java.security.PublicKey; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import java.util.concurrent.atomic.AtomicLong; import javax.security.auth.log...
// PaletteView.java // palette-gwt-demo package com.willshex.palette.demo.client.part; import com.google.gwt.core.client.GWT; import com.google.gwt.dom.client.Element; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.user.client.ui.Composite; import ...
package org.simpleframework.xml.load; import org.simpleframework.xml.Attribute; import org.simpleframework.xml.Element; import org.simpleframework.xml.ElementArray; import org.simpleframework.xml.ElementList; import org.simpleframework.xml.ElementMap; import org.simpleframework.xml.Order; import org.simpleframework.xml...
package ca.corefacility.bioinformatics.irida.ria.integration.samples; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.openqa.selenium.WebDriver; import org.openqa.s...
package me.nallar.patched.entity; import java.util.List; import net.minecraft.block.Block; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.item.ItemArmor; impor...
package ca.corefacility.bioinformatics.irida.ria.unit.web.services; import ca.corefacility.bioinformatics.irida.model.project.Project; import ca.corefacility.bioinformatics.irida.model.sample.Sample; import ca.corefacility.bioinformatics.irida.model.user.Role; import ca.corefacility.bioinformatics.irida.model.user.User...
package org.teachingkidsprogramming.section04mastery; import java.awt.Color; import org.teachingextensions.logo.Tortoise; import org.teachingextensions.logo.utils.ColorUtils.ColorWheel; import org.teachingextensions.logo.utils.ColorUtils.PenColors; public class DigiFlower { public static void main(String[] args) { ...
package seedu.taskboss.model.task; import java.util.Calendar; import java.util.Date; import seedu.taskboss.commons.exceptions.IllegalValueException; import seedu.taskboss.model.category.Category; import seedu.taskboss.model.category.UniqueCategoryList; public class Recurrence { public enum Frequency { DAILY...
package me.shoutto.sdk; import android.util.Log; import com.android.volley.Response; import com.android.volley.VolleyError; import com.google.gson.reflect.TypeToken; import org.json.JSONException; import org.json.JSONObject; import java.lang.reflect.Type; import java.text.DateFormat; import java.text.ParseException; im...
package com.polonium.linechart; import java.util.ArrayList; import com.polonium.linechart.LinePoint.Type; import com.polonium.linechart.R; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Bitmap; import android.graphics.Bitmap.Config; import android.graphics.BitmapShader; i...
// This file was generated by RobotBuilder. It contains sections of // code that are automatically generated and assigned by robotbuilder. // These sections will be updated in the future when you export to // Java from RobotBuilder. Do not put any code or make any change in // the blocks indicating autogenerated code o...
package com.vimeo.stag.processor.generators; import com.google.gson.Gson; import com.google.gson.TypeAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.reflect.TypeToken; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.squareup.javapoet.Clas...
package slavetest; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import org.neo4j.kernel.ha.zookeeper.ZooKeeperServerWrapper; public class LocalZooKeeperCluster { private final int size; private final DataDirectoryPolicy d...
package utask.logic.parser; import static utask.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT; import static utask.logic.parser.CliSyntax.PREFIX_DEADLINE; import static utask.logic.parser.CliSyntax.PREFIX_DONE; import static utask.logic.parser.CliSyntax.PREFIX_FREQUENCY; import static utask.logic.parser.CliSynta...
package xyz.vsngamer.elevator; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.EnumDyeColor; import net.minecraft.item.Item; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import xyz.vsngamer.elevator.init.ModItems; public class ElevatorModTab ...
/** * Abstract Syntax Tree for JUnit. * * <pre> * CompilationUnit ::= ClassDecl * * ClassDecl ::= TestMethod* * * TestMethod ::= Statement* ActionStatement* * * Expr ::= QuotedExpr | StubExpr | MatcherExpr | NewExpr | StrLitExpr * * StubExpr ::= QuotedExpr StubBehavior * StubBehavior ::= MethodPattern Expr...
package org.quickserver.net.client; import java.io.*; import java.net.*; import java.security.KeyStore; import java.security.SecureRandom; import java.util.logging.*; import javax.net.ssl.KeyManager; import javax.net.ssl.KeyManagerFactory; import javax.net.ssl.SSLContext; import javax.net.ssl.SSLSocketFactory; import j...
package org.bunkr.gui; import javafx.scene.control.Button; import javafx.scene.control.Label; /** * Creator: benmeier * Created At: 2016-01-08 */ public class Icons { public static final String ICON_SETTINGS = "\uf013"; public static final String ICON_MAGNIFY = "\uf002"; public static final String ICON_M...
package io.spine.tools.protojs.knowntypes; import io.spine.tools.protojs.code.JsOutput; import io.spine.tools.protojs.code.JsWriter; import org.gradle.api.Project; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Pat...
package org.subethamail.smtp.command; import java.util.ArrayList; import java.util.List; import java.util.StringTokenizer; import org.subethamail.smtp.session.Session; /** * @author Ian McFarland &lt;ian@neo.com&gt; */ public class BaseCommand implements Command { // TODO(imf): Extract commandRegistry into its ow...
package org.subethamail.smtp.command; import java.io.IOException; import org.subethamail.smtp.server.BaseCommand; import org.subethamail.smtp.server.ConnectionContext; import org.subethamail.smtp.server.Session; /** * @author Ian McFarland &lt;ian@neo.com&gt; * @author Jon Stevens * @author Jeff Schnitzer */ public...
import java.util.Vector; import com.sun.star.awt.ItemEvent; import com.sun.star.awt.TextEvent; import com.sun.star.awt.VclWindowPeerAttribute; import com.sun.star.awt.XControl; import com.sun.star.awt.XListBox; import com.sun.star.awt.XRadioButton; import com.sun.star.beans.PropertyValue; import com.sun.star.beans.XPro...
package consulo.javaee.jsp.psi.impl.java.psi; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import com...
package logic_subsystem; import com.badlogic.gdx.math.Vector2; import backend.PlayerEntityHandler; import entities.PlayerEntity; import player.ActualPlayerClass; import player.HumanPlayer; import player.StatsClass; import render_subsystem.Loader; import render_subsystem.Renderer; import xidecsc.ExistenceCreator; import...
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.util.AbstractList; impo...
package com.esri.geoevent.transport.twitter; import java.nio.ByteBuffer; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.http.HttpRequest; import com.esri.ges.core.component.ComponentException; import com.esri.ges.transport.TransportContext; import com.esri.ges.tra...
package hudson.model; import hudson.util.IOException2; import org.dom4j.CharacterData; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentFactory; import org.dom4j.Element; import org.dom4j.io.SAXReader; import org.dom4j.io.XMLWriter; import org.kohsuke.stapler.QueryParameter; impor...
package hudson.model; import hudson.util.IOException2; import org.dom4j.CharacterData; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentFactory; import org.dom4j.Element; import org.dom4j.io.SAXReader; import org.dom4j.io.XMLWriter; import org.kohsuke.stapler.QueryParameter; impor...
package dae.prefabs.ui.collection.editor; import com.google.common.eventbus.Subscribe; import dae.GlobalObjects; import dae.prefabs.Prefab; import dae.prefabs.ui.collection.DictionaryTableModel; import dae.prefabs.ui.events.GizmoEvent; import dae.prefabs.ui.events.GizmoType; import dae.prefabs.ui.events.PickEvent; impo...
package org.eclipse.birt.report.viewer.utilities; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.Locale; import java.util.Random; import java.util.TreeMap; import org.eclipse.birt.report.viewer.ViewerPlugin; import org.eclipse.birt.report.viewer.browsers.BrowserAccessor; impor...
package org.pentaho.di.ui.trans.step; import java.util.ArrayList; import java.util.List; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CCombo; import org.eclipse.swt.events.ModifyEvent; import org.eclipse.swt.events.ModifyListener; import org.eclipse.swt.event...
package hudson.model; import hudson.ExtensionPoint; import hudson.Util; import hudson.Functions; import hudson.model.Descriptor.FormException; import hudson.tasks.BuildTrigger; import hudson.tasks.LogRotator; import hudson.util.ChartUtil; import hudson.util.ColorPalette; import hudson.util.CopyOnWriteList; import hudso...
package edu.northwestern.bioinformatics.studycalendar.restlets; import edu.northwestern.bioinformatics.studycalendar.domain.Role; import edu.northwestern.bioinformatics.studycalendar.domain.User; import edu.northwestern.bioinformatics.studycalendar.service.UserService; import org.acegisecurity.Authentication; import or...
package de.mrapp.android.adapter.list; import static de.mrapp.android.adapter.util.Condition.ensureNotNull; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.Iterator; import java.util.List; import java.ut...
package org.carrot2.workbench.editors; import java.lang.annotation.Annotation; import org.carrot2.util.RangeUtils; import org.carrot2.util.attribute.AttributeDescriptor; import org.carrot2.util.attribute.constraint.IntRange; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse....
package de.robv.android.xposed.mods.appsettings; import static de.robv.android.xposed.XposedHelpers.findAndHookMethod; import static de.robv.android.xposed.XposedHelpers.getObjectField; import static de.robv.android.xposed.XposedHelpers.setFloatField; import static de.robv.android.xposed.XposedHelpers.setIntField; impo...
package ro.isdc.wro.extensions.processor; import static org.junit.Assert.assertEquals; import java.io.File; import java.io.FileReader; import java.io.StringReader; import java.io.StringWriter; import java.net.URL; import java.util.concurrent.Callable; import org.junit.After; import org.junit.AfterClass; import org.juni...
package com.yy.cloud.core.assess.service.impl; import com.querydsl.core.QueryResults; import com.querydsl.core.types.Order; import com.querydsl.core.types.OrderSpecifier; import com.querydsl.core.types.dsl.BooleanExpression; import com.querydsl.jpa.JPAExpressions; import com.querydsl.jpa.impl.JPAQuery; import com.query...
package com.salesforce.dva.argus.service.metric.transform; import com.google.common.primitives.Doubles; import com.salesforce.dva.argus.entity.Metric; import com.salesforce.dva.argus.service.metric.MetricReader; import com.salesforce.dva.argus.system.SystemAssert; import org.apache.commons.math3.stat.descriptive.moment...
package dr.evomodel.arg.operators; import dr.evomodel.arg.ARGModel; import dr.inference.model.Parameter; import dr.inference.model.VariableSizeCompoundParameter; import dr.inference.operators.OperatorFailedException; import dr.inference.operators.SimpleMCMCOperator; import dr.math.MathUtils; import dr.xml.AttributeRule...