text
stringlengths
7
995k
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
package com.neocoders.vglviewer.vglDocument; import com.neocoders.vglviewer.boundaryMap.Boundary; class BoundaryUtils { public static Boundary getCollapsedBoundary() { return new Boundary(Long.MAX_VALUE, Long.MAX_VALUE, Long.MIN_VALUE, Long.MIN_VALUE); } public static void expandBy(Boundary b, lo...
/* * jGnash, a personal finance application * Copyright (C) 2001-2018 Craig Cavanaugh * * 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 opti...
/* * Copyright 2017 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...
/* * Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required ...
/* * Copyright (C) 2016 Dmitry Mozgin. * * 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 agr...
package lsieun.classfile.attrs.annotation.type; public class TargetInfo { public final TypeParameterTarget type_parameter_target; public final SuperTypeTarget supertype_target; public final TypeParameterBoundTarget type_parameter_bound_target; public final EmptyTarget empty_target; public final For...
package org.innovateuk.ifs.publiccontent.saver.section; import org.innovateuk.ifs.competition.publiccontent.resource.PublicContentSectionType; import org.innovateuk.ifs.publiccontent.form.section.SupportingInformationForm; import org.innovateuk.ifs.publiccontent.saver.AbstractContentGroupFormSaver; import org.innovat...
package org.skyscreamer.yoga.demo.test; import org.json.JSONObject; import org.junit.Test; import org.skyscreamer.jsonassert.JSONAssert; import java.util.Collections; import java.util.Map; import static org.skyscreamer.yoga.demo.util.TestUtil.getJSONObject; /** * Created by IntelliJ IDEA. User: Carter Page Date: 4...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package com.yqf.mall.ums.pojo.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.yqf.common.base.BaseEntity; import lombok.Data; import lombok.experimental.Accessors; import java.time.LocalDa...
/* * Copyright 2012-present Facebook, 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...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.android.HelloConstraint; public final class R { public static final class anim { public static final int abc_fade...
/* Copyright 2014 OPM.gov 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 wr...
package com.github.vedenin.eng; import org.apache.commons.lang3.tuple.ImmutablePair; import org.apache.commons.lang3.tuple.Pair; import java.util.*; /** * All ways to return multiValues from Method * * Created by vvedenin on 2/18/2016. */ public class ReturnsMultiValuesFromMethodTest { private static final i...
package cn.edu.tsinghua.iotdb.benchmark.tsdb.influxdb; import cn.edu.tsinghua.iotdb.benchmark.conf.Config; import cn.edu.tsinghua.iotdb.benchmark.conf.ConfigDescriptor; import cn.edu.tsinghua.iotdb.benchmark.measurement.Status; import cn.edu.tsinghua.iotdb.benchmark.model.InfluxDataModel; import cn.edu.tsinghua.iotdb....
package org.jeecg.modules.salary.service; import org.jeecg.modules.salary.entity.CostManagement; import org.jeecg.modules.salary.entity.SalaryStatistics; import com.baomidou.mybatisplus.extension.service.IService; import org.springframework.http.ResponseEntity; import javax.servlet.http.HttpServletResponse; import ja...
import java.util.*; import java.math.BigInteger; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); BigInteger n = in.nextBigInteger(); System.out.println(n.isProbablePrime(1) ? "prime" :"not prime"); } }
/* * Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
/** * */ package cat.grc.spring.data.repository; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.PagingAndSortingRepository; import cat.grc.spring.data.entity.Product; /**...
package com.tencent.ads.examples.BasicOperations.BusinessAssets; import com.tencent.ads.ApiContextConfig; import com.tencent.ads.TencentAds; import com.tencent.ads.exception.TencentAdsResponseException; import com.tencent.ads.exception.TencentAdsSDKException; import com.tencent.ads.model.*; import java.io.File; publi...
package de.danoeh.antennapod.core.storage; import android.content.Context; import android.util.Log; import java.util.Arrays; import java.util.Iterator; import java.util.List; import de.danoeh.antennapod.core.BuildConfig; import de.danoeh.antennapod.core.feed.FeedItem; import de.danoeh.antennapod.core.preferences.Use...
package com.jeffrey.pattern.factory.factorymethod; /** *功能说明 * * @author weij */ public class CatCreator implements AnimalCreator { @Override public Animal creatAnimal() { return new Cat(); } }
package com.brickgit.kata.litho; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android...
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
package org.voicemessanger.server.serverxmlprotocol; import org.voicemessanger.server.main.CloudinaryConfig; import org.xembly.Directives; import org.xembly.ImpossibleModificationException; import org.xembly.Xembler; import java.util.ArrayList; public class ServerVacoomProtocol { public ServerVacoomProtocol() ...
/* * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
/* * Copyright 2021-2021 Exactpro (Exactpro Systems Limited) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
package org.knowm.xchange.okcoin; import org.knowm.xchange.currency.Currency; import org.knowm.xchange.currency.CurrencyPair; import org.knowm.xchange.dto.Order.OrderStatus; import org.knowm.xchange.dto.Order.OrderType; import org.knowm.xchange.dto.account.AccountInfo; import org.knowm.xchange.dto.account.Balance; imp...
package thredds.catalog.util; import thredds.catalog.*; import java.net.URI; import java.net.URISyntaxException; import java.util.List; /** * _more_ * * @author edavis * @since 4.2 */ public class DeepCopyUtils { private DeepCopyUtils() {} private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.ge...
package jetbrains.mps.lang.sharedConcepts.generator.baseLanguage.template.main; /*Generated by MPS */ import jetbrains.mps.generator.runtime.Generated; import jetbrains.mps.generator.impl.query.QueryProviderBase; import jetbrains.mps.generator.template.BaseMappingRuleContext; import jetbrains.mps.baseLanguage.behavio...
/* * Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Distribution License v. 1.0, which is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * SPDX-License-Identifier: ...
/** * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. */ package com.thinkgem.jeesite.modules.updatefile.web; import java.io.File; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Date; import java....
/** * iBizSys 5.0 机器人生产代码(不要直接修改当前代码) * http://www.ibizsys.net */ package net.ibizsys.psrt.srv.wf.entity; import java.io.Serializable; import java.util.HashMap; import java.util.ArrayList; import javax.persistence.Column; import java.sql.Timestamp; import net.ibizsys.paas.data.IDataObject; import net.ibizsys.p...
package org.open2jam.game.judgment; import org.open2jam.render.entities.NoteEntity; import org.open2jam.game.TimingData; /** * Judge hits by distance. * @author dtinth */ public class BeatJudgment extends AbstractJudgmentStrategy { private static final double BAD_THRESHOULD = 0.8; private static final dou...
package com.company.base_library.utils.compression; import androidx.annotation.Nullable; final class Preconditions { /** * Ensures that an object reference passed as a parameter to the calling method is not null. * * @param reference an object reference * @return the non-null reference that w...
package net.minecraft.world.level.levelgen.feature.trunkplacers; import com.google.common.collect.Lists; import com.mojang.serialization.Codec; import com.mojang.serialization.codecs.RecordCodecBuilder; import java.util.List; import java.util.Objects; import java.util.Random; import java.util.function.BiConsumer; impo...
/* * * Copyright 2015 incode.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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
package edu.bator.cards.todo; import edu.bator.cards.Card; public class NovaInfusion extends Card { public NovaInfusion() { } public NovaInfusion(Card cloneFrom) { super(cloneFrom); } }
/** * A {@link CacheLoader} (not {@link CacheStore}) that polls other nodes in the cluster for state. Useful if state * transfer on startup is disabled, this {@link CacheLoader} implementation allows for lazily loading state from * remote nodes, on demand and on a per-entry basis. */ package org.infinispan.loaders...
package com.zhaoming.blog.v1.web.management; import me.wuwenbin.modules.jpa.support.Page; import me.wuwenbin.modules.pagination.model.layui.LayuiTable; import me.wuwenbin.modules.utils.http.R; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.s...
package controller; import javafx.fxml.FXML; import javafx.fxml.Initializable; import javafx.scene.control.Button; import javafx.scene.control.ListView; import javafx.scene.text.Text; import model.Student; import java.net.URL; import java.util.ResourceBundle; public class GroupController implements Initializable { ...
package com.tramchester.mappers.serialisation; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.databind.SerializerProvider; import com.fasterxml.jackson.databind.ser.std.StdSerializer; import com.tramchester.domain.Route; import com.tramchester.domain.id.IdFor; import java.io.IOException...
package com.yong.job.two.news; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import com.yong.job.R; public class NewsContentActivity extends Activity { public static void actionStart(Context context, String title, String content) { ...
package org.eclipse.aether.impl; /* * 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, Ve...
/* * Copyright 2002-2018 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...
/* * Copyright 2014-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by 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 may ...
package de.fhdo.lemma.eclipse.ui.specify_paths_dialog; import de.fhdo.lemma.eclipse.ui.AbstractUiModelTransformationStrategy; import de.fhdo.lemma.eclipse.ui.ModelFile; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.function.Consumer; import org.eclipse.jface.viewers.IStruct...
package net.minecraft.client.renderer.chunk; import com.google.common.collect.Lists; import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; import java.util.ArrayList; import java.util.List; import java.util....
/* * The MIT License * * Copyright 2017 WildBees Labs. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, m...
package ${package}; import org.junit.Test; import com.ociweb.gl.api.GreenRuntime; /** * Unit test for simple App. */ public class AppTest { @Test public void testApp() { int timeoutMS = 2000; GreenRuntime.testUntilShutdownRequested(new ${mainClass}(), timeoutMS); } }
package net.minecraft.world.level.block; import java.util.Random; import javax.annotation.Nullable; import net.minecraft.core.BlockPosition; import net.minecraft.core.particles.Particles; import net.minecraft.network.chat.IChatBaseComponent; import net.minecraft.world.EnumHand; import net.minecraft.world.EnumInteracti...
package com.asymmetrik.nifi.reporting; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.Map; import com.asymmetrik.nifi.models.SystemMetricsSnapshot; import com.google.common.collect.ImmutableList; import org.apache.commons.la...
package org.apereo.cas.config; import org.apereo.cas.CentralAuthenticationService; import org.apereo.cas.audit.AuditTrailRecordResolutionPlanConfigurer; import org.apereo.cas.audit.DelegatedAuthenticationAuditResourceResolver; import org.apereo.cas.authentication.AuthenticationEventExecutionPlanConfigurer; import org....
package CSharp.behavior; /*Generated by MPS */ /** * Will be removed after 3.4 * Need to support compilation of the legacy behavior descriptors before the language is rebuilt * This class is not involved in the actual method invocation */ @Deprecated public class Type_parameter_constraints_clauses_BehaviorDescri...
/* * Password Management Servlets (PWM) * http://www.pwm-project.org * * Copyright (c) 2006-2009 Novell, Inc. * Copyright (c) 2009-2020 The PWM 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 ...
/* * Copyright 2017 Red Hat, Inc. and/or its affiliates. * * 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...
/* * MIT License * * Copyright 2017-2018 Sabre GLBL Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
package com.mabay.ticketservice.entity; import lombok.*; import lombok.experimental.SuperBuilder; import org.hibernate.annotations.GenericGenerator; import org.springframework.data.annotation.CreatedDate; import org.springframework.data.annotation.LastModifiedDate; import javax.persistence.Column; import javax.persis...
package com.neusoft.hp.dubbo.container.context.impl; import java.util.Map; import java.util.Set; import java.util.stream.Collectors; import org.apache.commons.lang3.StringUtils; import com.neusoft.hp.dubbo.container.context.WebxConfiguration; public class WebxConfigurationImpl implements WebxConfiguration { pr...
package cn.wildfire.chat.kit.viewmodel; import android.net.Uri; import android.text.TextUtils; import android.util.Log; import androidx.lifecycle.MutableLiveData; import androidx.lifecycle.ViewModel; import java.io.File; import java.util.HashMap; import java.util.List; import java.util.Map; import cn.wildfire.chat....
/** * #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# * This file is part of the Smart Developer Hub Project: * http://www.smartdeveloperhub.org/ * * Center for Open Middleware * http://www.centeropenmiddleware.com/ * #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-...
package atom.plugins.commit; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.DialogWrapper; import org.jetbrains.annotations.Nullable; import javax.swing.*; /** * @author Damien Arrachequesne */ public class CommitDialog extends DialogWrapper { private final CommitPanel panel; ...
/* * Copyright 2015, The Querydsl Team (http://www.querydsl.com/team) * * 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 ...
/* * Copyright 2018-present Facebook, 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 com.dynatrace.oneagent.sdk.samples.webrequest; import java.net.InetAddress; import java.net.MalformedURLException; import java.net.URL; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.dynatrace.oneagent.sdk.sam...
package gg.destiny.app.preference; import java.util.*; import android.annotation.TargetApi; import android.content.*; import android.content.SharedPreferences.OnSharedPreferenceChangeListener; import android.os.Build; import android.preference.PreferenceManager; public abstract class PreferenceHelper<T> implements O...
/** * 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 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package com.exasol.adapter.document.querypredicate; class PredicateTestVisitor implements QueryPredicateVisitor { private Visited visited; @Override public void visit(final ComparisonPredicate comparisonPredicate) { this.visited = Visited.COMPARISON; } @Override public void visit(fina...
package com.bizzan.bitrade.service; import com.bizzan.bitrade.dao.DividendStartRecordDao; import com.bizzan.bitrade.entity.DividendStartRecord; import com.bizzan.bitrade.service.Base.TopBaseService; import com.querydsl.core.types.Predicate; import org.springframework.beans.factory.annotation.Autowired; import org.spr...
package com.github.bogdanovmn.cmdline; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import java.util.Arrays; import java.util.Collection; import static junit.framework.TestCase.assertEquals; @RunWith(Parameterized.class) public class UniqShortNameFactoryTest { pr...
package com.stylefeng.guns.service.order; import com.alibaba.dubbo.container.page.Page; import com.stylefeng.guns.service.order.vo.OrderVo; import java.io.FileNotFoundException; import java.io.UnsupportedEncodingException; public interface MoocOrderTService { //验证售出的票是否为真 boolean isTrueSeats(String fieldI...
package com.ennva.oauth2.security; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.http.HttpMethod; import org.springframewor...
/** * Copyright (C) 2010-2012 Regis Montoya (aka r3gis - www.r3gis.fr) * This file is part of CSipSimple. * * CSipSimple 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...
package ChainOfResposibility; public class ConcreteHandler1 extends Handler { public ConcreteHandler1 (Handler successor) { super(successor); } @Override protected void handlerRequest(Request request) { if (request.getResultType() == ResultType.type1) { System.out.println(...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.management.compute; import com.azure.core.annotation.Fluent; import com.azure.core.management.SubResource; import com.fasterxml.jackson.annotati...
/** * TLS-Attacker - A Modular Penetration Testing Framework for TLS * * Copyright 2014-2017 Ruhr University Bochum / Hackmanit GmbH * * Licensed under Apache License 2.0 * http://www.apache.org/licenses/LICENSE-2.0 */ package de.rub.nds.tlsattacker.core.protocol.serializer; import de.rub.nds.tlsattacker.core.c...
package me.kecker.discodegame.bot.commands; import lombok.NonNull; import me.kecker.discodegame.bot.commands.state.ArgumentParseState; import me.kecker.discodegame.bot.domain.commands.arguments.RawArgument; import me.kecker.discodegame.bot.domain.exceptions.ArgumentParseException; import org.jetbrains.annotations.NotN...
/** * <copyright> * * Copyright (c) 2010 SAP AG. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: ...
package com.blockchain.impl; import java.util.List; import com.bc.Constants; import com.blockchain.Miner; import com.blockchain.MiningManager; import com.crypto.CryptographicService; import com.transaction.BlockchainTransaction; /** * Simple impl of Miner * * @author Stefannel, Jul 8, 2018 */ public class Simpl...
package com.guna.ocrsample; import android.Manifest; import android.content.Intent; import android.content.pm.PackageManager; import android.net.Uri; import android.os.Bundle; import android.support.v4.app.ActivityCompat; import android.support.v4.content.ContextCompat; import android.support.v7.app.AppCompatActivity;...
package rit.eyeTracking.EyeTrackerUtilities.udpClients; import java.io.IOException; import java.net.BindException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.net.SocketException; import java.util.HashMap; import java.util.Map; import org.eclipse.swt.graphi...
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ package org.elasticsearch.xpack.ml.notifications; import org.elasticsearch.cl...
package br.com.hisao.countries.view; import android.os.Bundle; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.support.v7.app.AppCompatActivity; import android.text.Editable; import android.text.TextWatcher; import android.widget.ArrayAdapter; import and...
package abapci.coloredProject.general; import org.eclipse.core.resources.IProject; import org.eclipse.jface.window.Window; import org.eclipse.swt.widgets.Display; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.PlatformUI; import abapci.AbapCiPluginHelper; import abapci....
package com.senzing.api.model; import com.senzing.util.Timers; import javax.ws.rs.core.UriInfo; /** * A response object that contains entity path data. */ public class SzEntityPathResponse extends SzResponseWithRawData { /** * The {@link SzEntityPathData} describing the entity. */ private SzEntityPathDat...
/**************************************************************** * Licensed to the Apache Software Foundation (ASF) under one * * or more contributor license agreements. See the NOTICE file * * distributed with this work for additional information * * regarding copyright ownership. The ASF licenses this...
package com.SAM2018.ui; import com.SAM2018.appl.PaperManager; import com.SAM2018.model.Notification; import com.SAM2018.model.PCM; import com.SAM2018.model.Review; import spark.ModelAndView; import spark.Request; import spark.Response; import spark.TemplateViewRoute; import java.util.Date; import java.util.HashMap; i...
package utils; import javax.swing.*; import javax.swing.filechooser.FileNameExtensionFilter; import java.awt.Desktop; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class FileUtils { /** * Helper Function that lists and stores all files in a direct...
package com.deepglint.back_management.service.Impl; import com.deepglint.api.pojo.User; import com.deepglint.back_management.mapper.UserMapper; import com.deepglint.back_management.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import...
/* * 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 ...
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribute...
package io.github.fallingsoulm.easy.archetype.job.service.impl; import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.util.IdUtil; import cn.hutool.core.util.StrUtil; import io.github.fallingsoulm.easy.archetype.framework.page.OrderItem; import io.github.fallingsoulm.easy.archetype.framework.page.Page...
/* * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 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 License. * you may obtain a copy of the License at * * http://www.apache.org/...
// -------------------------------------------------------------------------------- // Copyright 2002-2022 Echo Three, LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http:/...
package com.xtremelabs.robolectric; import static android.content.pm.ApplicationInfo.FLAG_ALLOW_BACKUP; import static android.content.pm.ApplicationInfo.FLAG_ALLOW_CLEAR_USER_DATA; import static android.content.pm.ApplicationInfo.FLAG_ALLOW_TASK_REPARENTING; import static android.content.pm.ApplicationInfo.FLAG_DEBUGG...
package com.redislock; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import java.util.Map; import java.util.Timer; import java.util.TimerTask; import java.util.concurrent.ConcurrentHashMap; /** * Usage: * based on redis command SET (with the last param NX),DEL,EXPIRE * * once locked m...
package ch.uzh.ifi.seal.soprafs19.rules.godCards; import ch.uzh.ifi.seal.soprafs19.entity.Game; import ch.uzh.ifi.seal.soprafs19.entity.Worker; import ch.uzh.ifi.seal.soprafs19.rules.SimpleRuleSet; import ch.uzh.ifi.seal.soprafs19.entity.Field; import org.springframework.stereotype.Component; import org.springframewo...