text
stringlengths
3.52k
24k
package com.cyc.cycjava.cycl; import static com.cyc.tool.subl.jrtl.nativeCode.subLisp.ConsesLow.append; import static com.cyc.tool.subl.jrtl.nativeCode.subLisp.ConsesLow.cons; import static com.cyc.tool.subl.jrtl.nativeCode.subLisp.ConsesLow.list; import static com.cyc.tool.subl.jrtl.nativeCode.subLisp.ConsesLow.list...
package com.cdnetworks.resumeparser; import java.io.File; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Queue; import java.util.Stack; import java.util.Arrays; import jav...
/* * 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 edu.umass.cs.pig.vm; import static edu.umass.cs.pig.util.Assertions.notNull; import java.util.ArrayList; import java.util.Deque; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import org.apache.pig.backend.executionengine.ExecException; import org.apache.pig.impl.logicalLayer...
package seedu.address.ui; import java.text.DateFormatSymbols; import java.util.Calendar; import java.util.logging.Logger; import javafx.beans.value.ObservableValue; import javafx.collections.ObservableList; import javafx.collections.transformation.FilteredList; import javafx.fxml.FXML; import javafx.geometry.Insets; ...
/* * This file is part of ClassGraph. * * Author: <NAME> * * Hosted at: https://github.com/classgraph/classgraph * * -- * * The MIT License (MIT) * * Copyright (c) 2018 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated * documentation f...
package k8s.example.client.k8s; import java.io.IOException; import java.io.PrintWriter; import java.io.StringWriter; import java.util.Iterator; import java.util.Map; import org.slf4j.Logger; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jacks...
/* * Copyright (c) 2015-2022 <NAME> * * This file is part of SAMOS Model Analytics and Management Framework. * * 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, ...
/* * Copyright 2008 <NAME>. * * 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://cake.codehaus.org/LICENSE * * Unless required by applicable law or agreed to in wri...
import java.util.*; public class Geometry { /** * Convex polygon * * n = x.length - 1 * x[n] == x[0] */ static void sliceWithEachIntegerLine(int[] x, int[] y) { int n = x.length - 1; int xmin = Integer.MAX_VALUE; int xmax = Integer.MIN_VALUE; for (int i = 0; i < n; i++) { xmin = Math.min(xmin, ...
/** * Copyright (c) 2010 Istituto Scienze della Terra - SUPSI * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright * ...
/* * 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) 2015-2016 EMC Corporation * All Rights Reserved */ package com.emc.storageos.volumecontroller.impl.file; import static java.util.Arrays.asList; import java.net.URI; import java.util.HashSet; import java.util.List; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; i...
package hr.fer.zemris.optjava.dz7.algorithms; import hr.fer.zemris.optjava.dz7.ANNTrainer; import hr.fer.zemris.optjava.dz7.Utils; import hr.fer.zemris.optjava.dz7.models.Antibody; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; i...
package gnu.kawa.reflect; import gnu.bytecode.ClassType; import gnu.bytecode.Method; import gnu.bytecode.ObjectType; import gnu.bytecode.Type; import gnu.expr.Compilation; import gnu.expr.Expression; import gnu.expr.GenericProc; import gnu.expr.Language; import gnu.expr.PrimProcedure; import gnu.expr.QuoteExp; import ...
package com.mygdx.game.android.ControlPanel; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.graphics.Paint; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManag...
package ee.ioc.phon.android.speechutils.utils; import android.app.Activity; import android.app.PendingIntent; import android.app.SearchManager; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.content.pm.Resolv...
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ciedayap.ipd.states; import java.io.Serializable; import java.util.ArrayList; import javax.xml.bind.annotation.XmlElement;...
package org.jfree.chart.axis; import java.awt.BasicStroke; import java.awt.Graphics2D; import java.awt.Paint; import java.awt.RenderingHints; import java.awt.Stroke; import java.awt.geom.Line2D; import java.awt.geom.Rectangle2D; import java.awt.geom.Rectangle2D.Double; import java.io.Serializable; import org.jfree.cha...
/* * 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.italankin.mvp.example.ui.widget; import android.content.Context; import android.content.res.TypedArray; import android.graphics.drawable.Drawable; import android.os.Parcel; import android.os.Parcelable; import android.support.annotation.CheckResult; import android.support.annotation.DrawableRes; import and...
/* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
/* * 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 rrdl.be4care.Views.Activities; import android.Manifest; import android.app.Dialog; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.pm.PackageManager; import android.media.Image; import android.net...
/** * OSHI (https://github.com/oshi/oshi) * * Copyright (c) 2010 - 2019 The OSHI Project Team: * https://github.com/oshi/oshi/graphs/contributors * * 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 ...
/*! ****************************************************************************** * * Log Helper plugin for Pentaho Data Integration * * Author: <NAME> * https://github.com/inquidia/LogHelper * ******************************************************************************* * * Licensed under the Apache License, V...
/** * This file is part of Aion-Lightning <aion-lightning.org>. * * Aion-Lightning is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later ver...
package me.s1mple.GameMode; import com.boydti.fawe.object.schematic.Schematic; import com.sk89q.worldedit.Vector; import com.sk89q.worldedit.bukkit.BukkitWorld; import com.sk89q.worldedit.extent.clipboard.io.ClipboardFormat; import com.sk89q.worldedit.regions.CuboidRegion; import me.s1mple.MysticNavigator; import org....
/* * Licensed to Sematext Group, Inc * * See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Sematext Group, Inc licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the Li...
package org.springframework.beans.factory.support; import org.apache.log4j.Logger; import org.springframework.beans.factory.BeanDefinitionStoreException; import org.springframework.beans.factory.BeanFactoryUtils; import org.springframework.beans.factory.config.BeanDefinition; import org.springframework.beans.factory...
package fiji.plugin.trackmate.visualization.hyperstack; import ij.ImagePlus; import java.awt.AlphaComposite; import java.awt.BasicStroke; import java.awt.Color; import java.awt.Composite; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Rendering...
/** * Copyright © 2014-2018 Darwino, 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 ...
package data.scripts.world.systems; import com.fs.starfarer.api.campaign.*; import com.fs.starfarer.api.campaign.econ.Industry; import com.fs.starfarer.api.campaign.econ.MarketAPI; import com.fs.starfarer.api.impl.campaign.econ.impl.HeavyIndustry; import com.fs.starfarer.api.impl.campaign.econ.impl.InstallableItemEffe...
/* * Copyright 2020 American Express Travel Related Services Company, 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 requ...
/* Copyright (c) 2012, 2013, 2014, Groupon, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copy...
/** * Mars Simulation Project * BotMind.java * @version 3.1.0 2017-12-16 * @author <NAME> */ package org.mars_sim.msp.core.robot.ai; import java.io.Serializable; import java.util.concurrent.TimeUnit; import java.util.logging.Level; import java.util.logging.Logger; import org.mars_sim.msp.core.Simulation; import ...
package cn.mulanbay.pms.handler.qa; import cn.mulanbay.business.handler.BaseHandler; import cn.mulanbay.common.util.BeanCopy; import cn.mulanbay.common.util.StringUtil; import cn.mulanbay.persistent.query.PageRequest; import cn.mulanbay.persistent.query.Sort; import cn.mulanbay.persistent.service.BaseService; import c...
package cscd437.assignment6; //Contributors: <NAME>, <NAME>, <NAME> import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.PrintWriter; import java.io.IOException; import java.io.*; import java.math.BigInteger; import jav...
package com.inventage.airmock.kernel.proxy.internal; import com.auth0.jwt.interfaces.DecodedJWT; import com.inventage.airmock.kernel.Constants; import com.inventage.airmock.kernel.proxy.HttpProxy; import com.inventage.airmock.kernel.route.RoutingContextUtils; import io.vertx.core.AsyncResult; import io.vertx.core.Futu...
package com.hilton.effectiveandroid.networks; import java.util.List; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.app.ProgressDialog; import android.content.BroadcastReceiver; import android.content.Context; import android.content.DialogInterface; import andro...
package yahtzee; import com.sun.istack.internal.NotNull; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.control.*; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.image.Image;...
/* * $Id: PropertyTokenizer.java,v 1.4.2.2 2003/02/25 12:56:58 jeremias Exp $ * ============================================================================ * The Apache Software License, Version 1.1 * ============================================================================ * * Copyright (...
package april.tag; import java.awt.*; import java.awt.image.*; import java.io.*; import java.util.*; import javax.imageio.*; /** Generic class for all tag encoding families **/ public class TagFamily { /** How many pixels wide is the outer-most white border? This is * only used when rendering a tag, not for ...
package edu.southwestern.tasks.mario.level; import java.util.HashMap; import java.util.List; import ch.idsia.mario.engine.level.Level; import ch.idsia.mario.engine.level.SpriteTemplate; import ch.idsia.mario.engine.sprites.Enemy; import java.util.ArrayList; /** * This is the upgraded version of LevelParser that all...
/** * */ package org.openforis.collect.manager.codelistimport; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern;...
package com.haringeymobile.ukweather; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import android.app.Activity; import android.content.Context; import android.content.res.Resources; import android.graphics.Bitmap...
package io.github.jocelynmutso.zoe.staticontent.spi.visitor; /*- * #%L * zoe-static-content * %% * Copyright (C) 2021 Copyright 2021 ReSys 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 ...
package com.yox89.ld32.actors; import box2dLight.ConeLight; import box2dLight.PointLight; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.Texture.TextureFilter; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.glutils.Shape...
package hex.tree; import hex.*; import static hex.tree.SharedTree.printGenerateTrees; import water.*; import water.util.*; import java.util.Arrays; public abstract class SharedTreeModel<M extends SharedTreeModel<M,P,O>, P extends SharedTreeModel.SharedTreeParameters, O extends SharedTreeModel.SharedTreeOutput> exten...
/** * Copyright 2021 UCloud Technology Co., Ltd. * * <p>Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License at * * <p>http://www.apache.org/licenses/LICENSE-2.0 * * <p>Unless required by applicabl...
/* * copyright© 2017 ueyudiud */ package equ.lib.func.builtin; import static equ.lib.type.STypes.BYTE; import static equ.lib.type.STypes.CHAR; import static equ.lib.type.STypes.DOUBLE; import static equ.lib.type.STypes.FLOAT; import static equ.lib.type.STypes.INT; import static equ.lib.type.STypes.LONG; i...
/* Copyright 2019 FXCM Global Services, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files 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 agr...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ //<EMAIL> //<EMAIL> package talitakumi.medicos.ctrl; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.Mou...
package com.k0gshole.statue; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.util.Random; import java.util.logging.Logger; import net.coreprotect.CoreProtect; import net.coreprotect.CoreProtectAPI; import net.milkbowl.vault.permission.Permission; import org.bukkit...
package com.vesperin.reflects; import java.util.AbstractMap; import java.util.Arrays; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; import java.util.StringJoiner; import java.util.function.BinaryOperator; import java....
/* * Copyright 2009 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
/** * This software was developed and / or modified by Raytheon Company, * pursuant to Contract DG133W-05-CQ-1067 with the US Government. * * U.S. EXPORT CONTROLLED TECHNICAL DATA * This software product contains export-restricted data whose * export/transfer/disclosure is restricted by U.S. law. Dissemination ...
/******************************************************************************* * Copyright (c) 2018 <NAME>. * All rights reserved. * All code is written by <NAME>, http://simonbaars.com/. ******************************************************************************/ package com.simonbaars.seleniumframework.core....
/* * jGnash, a personal finance application * Copyright (C) 2001-2018 <NAME> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any l...
/** * Copyright 2017 Syncleus, Inc. * with portions copyright 2004-2017 <NAME> * * 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 * *...
package com.mercari.solution.util.gcp; import com.google.api.client.http.HttpRequestInitializer; import com.google.auth.Credentials; import com.google.auth.http.HttpCredentialsAdapter; import com.google.cloud.Date; import com.google.cloud.hadoop.util.ChainingHttpRequestInitializer; import com.google.common.collect.Imm...
package com.edasaki.rpg.quests; import java.util.HashMap; import java.util.Map.Entry; import org.bukkit.ChatColor; import org.bukkit.Location; import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; import com.edasaki.core.unlocks.Unlock; import com.edasaki.core.utils.RUtils; import com.edasaki.rpg.P...
package nachos.cop4610; import java.io.StringWriter; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.concurrent.locks.*; import java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock; im...
/* * Copyright 2021-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...
package com.xiaomi.push.service; import android.app.ActivityManager; import android.app.ActivityManager.RunningTaskInfo; import android.app.Notification; import android.app.Notification.BigTextStyle; import android.app.Notification.Builder; import android.app.NotificationManager; import android.app.PendingIntent; impo...
/* ***** BEGIN LICENSE BLOCK ***** Version: Apache 2.0/GPL 3.0/LGPL 3.0 CCT - Computational Chemistry Tools Jamberoo - Java Molecules Editor Copyright 2008-2015 Dr. <NAME> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License...
package com.boya.kites.liberator.domain; import com.mongodb.BasicDBObject; import org.bson.types.BasicBSONList; import org.canedata.field.Fields; import java.io.Serializable; import java.util.ArrayList; import java.util.List; /** * Created IN BOYA by lz on 15-5-22. */ public class Magazine_article implements Seri...
/* * Copyright 2020 zml * * 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) 2010 <NAME> http://javaflacencoder.sourceforge.net/ All Rights Reserved. This library is free software; * you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your...
package common.parameter; import java.util.Calendar; import java.util.TimeZone; import java.util.Timer; import java.util.TimerTask; import java.util.Vector; import org.trianacode.taskgraph.Unit; /** * Trigger by crontab-like scheduling * * @author <NAME> * @version $Revision: 2921 $ */ public class TriggerCron...
package dev.pje.bots.apoiadorrequisitante.handlers.docs; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import com.devplatform.model.jira.Jira...
package rita.support; import static rita.support.Constants.StemmerType.Lancaster; import static rita.support.Constants.StemmerType.Pling; import static rita.support.Constants.StemmerType.Porter; import java.text.DecimalFormat; import rita.RiTa; import rita.RiTaException; // TODO: test with word-list (+stems) from h...
import java.awt.BorderLayout; import java.awt.Color; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.GridLayout; import java.awt.Insets; import java.awt.Point; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Random; import javax.sw...
package com.moelle.deepdarkness; import android.animation.Animator; import android.animation.ValueAnimator; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.graphics.ColorFilter; import android.graphics.PorterDuff; import android.graphics.PorterDuffColorFilte...
/* * This file is part of Cubic Chunks Mod, licensed under the MIT License (MIT). * * Copyright (c) 2015-2019 OpenCubicChunks * Copyright (c) 2015-2019 contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "So...
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common * Development and Distribution License("CDDL") (...
/* * Copyright (c) 2011-2014, <NAME>. All Rights Reserved. * * This file is part of BoofCV (http://boofcv.org). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apach...
/* * Copyright (c) 2017. <NAME> * Modifications Copyright (c) 2017. <NAME> * * This file is part of VOSP and may be covered under one or more licenses. * Refer to the project LICENSE and NOTICE files for details. */ package com.meowsbox.vosp.service; import android.net.ConnectivityManager; import android.os.Bui...
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ package com.twilio.rest.supersim.v1; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProper...
package net.xxtime.utils; import android.content.Context; import android.location.Address; import android.location.Geocoder; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.util.Log; import android.widget.TextView; import com.longtu.base.util.StringUtils; import net.sourceforge...
/* * Copyright (c) 2010, 2014, Oracle and/or its affiliates. * All rights reserved. Use is subject to license terms. * * This file is available and licensed under the following license: * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the followin...
/** * Copyright 2015 Crown Copyright * * 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 t...
package de.dc.entity.lang.ui.project; import java.net.URI; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.IWorkspace; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.runtime.IPath; import org.eclipse.core.r...
package com.easycodebox.common.xml; import com.easycodebox.common.lang.DataConvert; import com.easycodebox.common.validate.Assert; import org.apache.commons.lang.StringUtils; import org.dom4j.Attribute; import org.dom4j.Element; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.management.modelmbe...
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package snake; import java.awt.event.ActionListener; import javax.swing.JPanel; import java.awt.*; import java.awt.event.*; ...
package com.langmy.terminal.modules.sys.model; import java.util.List; import com.langmy.terminal.common.model.BaseModel; /** * 环境变量model类 * * @author lxj * */ public class ParkingEnvirModel extends BaseModel { /** * */ private static final long serialVersionUID = -3698888948215847743L;...
/* * Created by <EMAIL> on 17-12-27 下午3:51 * Copyright (c) 2017. All rights reserved */ import edu.princeton.cs.algs4.Queue; import edu.princeton.cs.algs4.StdOut; import edu.princeton.cs.algs4.StdRandom; import java.util.Iterator; //参考 //https://github.com/joyossarian/CourseraAlgo/blob/master/Board.java#L108:36,这...
package com.sonaive.v2ex.ui; import android.app.FragmentManager; import android.app.SearchManager; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.support.v7.widget.Toolbar; import android.view.MenuItem; impor...
package com.oxygenxml.prolog.updater.utils; import java.util.ArrayList; import java.util.List; import javax.swing.text.BadLocationException; import javax.swing.text.Position; import org.apache.log4j.Logger; import ro.sync.contentcompletion.xml.CIElement; import ro.sync.contentcompletion.xml.ContextElement; import r...
package organice.logic.commands; import static java.util.Objects.requireNonNull; import static organice.logic.parser.CliSyntax.PREFIX_NAME; import static organice.logic.parser.CliSyntax.PREFIX_PHONE; import static organice.model.Model.PREDICATE_SHOW_ALL_PERSONS; import java.util.Iterator; import java.util.List; impor...
/* * Copyright Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags and * the COPYRIGHT.txt file distributed with this work. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may ob...
package com.sequenceiq.it.cloudbreak.search; import java.io.File; import java.nio.file.Files; import java.nio.file.Path; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util...
package softwareSystems; /** * @author <NAME>, <NAME>, <NAME> * @version 1.0 */ import javax.swing.*; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import physicalSystems.Airplane; public class GUI{ private JFrame main; private JPanel infoPanel, engineControl...
package berlin.yuna.natsserver.config; import berlin.yuna.natsserver.logic.NatsStreaming; public enum NatsStreamingConfig { //Streaming Server Options CLUSTER_ID("test-cluster", "[STRING] Cluster ID (default: test-cluster)"), STORE("MEMORY", "[STRING] Store type: MEMORY|FILE (default: MEMORY)"), DIR(...
package localvicinity.localvicinity.com.localvicinity; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.location.Criteria; import android.location.Location; import android.location.LocationManager; import android.os.AsyncTask; import android.os.Handler; impor...
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2014 Oracle and/or its affiliates. All rights reserved. * * Oracle and Java are registered trademarks of Oracle and/or its affiliates. * Other names may be trademarks of their respective owners. * * The contents of this file are subject...
package org.apache.cassandra.cache.capi; import java.io.IOException; import java.nio.ByteBuffer; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.ExecutionException; import java.util.concurrent...
package it.scripto.primecalculator; import android.content.Context; import android.os.AsyncTask; import android.os.Bundle; import android.support.v7.app.ActionBar; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import...
package de.bitgrip.ficum.visitor; import de.bitgrip.ficum.node.*; import org.apache.commons.lang3.reflect.FieldUtils; import org.apache.commons.lang3.reflect.TypeUtils; import javax.persistence.criteria.*; import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; impor...
/* * ported to v0.56 * using automatic conversion tool v0.01 */ package mame056.drivers; import static arcadeflex056.fucPtr.*; import static mame056.commonH.*; import static mame056.cpuexec.*; import static mame056.inptportH.*; import static mame056.cpuexecH.*; import static mame056.cpuintrfH.*; import static mame...