text
stringlengths
7
995k
package com.manager.drinks; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.ApplicationContext; @SpringBootApplication public class Application { public static void main(String[] args) { Sp...
/* * 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.mskcc.shenkers.control.track; import java.util.Optional; import javafx.beans.property.Property; import javafx.beans.proper...
package africa.talentup.smsappbackend.data.model; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.RequiredArgsConstructor; import lombok.Setter; import lombok.ToString; import javax.persistence.Entity; import javax.persistence.GeneratedVal...
package com.ABC.bitrade.model.create; import lombok.Data; import org.hibernate.validator.constraints.NotBlank; import org.springframework.util.Assert; import com.ABC.bitrade.entity.Coin; import com.ABC.bitrade.entity.Sign; import com.ABC.bitrade.service.CoinService; import com.ABC.bitrade.service.SignService; import ...
package uk.gov.defra.plants.formconfiguration.processing; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.Mockito.when; import java.util.Optional; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import uk.gov.defra.pla...
package com.oursky.skeleton.iface; import android.support.annotation.NonNull; import org.json.JSONException; import org.json.JSONObject; public interface SerializableToJson { @NonNull JSONObject toJson() throws JSONException; }
package uk.gov.ida.saml.security; import net.shibboleth.utilities.java.support.resolver.Criterion; import org.opensaml.core.criterion.EntityIdCriterion; import org.opensaml.saml.criterion.EntityRoleCriterion; import org.opensaml.security.trust.TrustEngine; import org.opensaml.xmlsec.signature.Signature; import org.ope...
package client.ahc; import base.*; import base.command.*; import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; import io.netty.handler.timeout.IdleStateEvent; import io.netty.util.internal.logging.InternalLogger; import io.n...
/* * Copyright (c) 2021 acmi * * 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, modify, merge, publish, distr...
package cybersoft.javabackend.java14.crm.util; public class UrlConst { /* ROOT */ public static final String ROOT = "/*"; /* HOME */ public static final String HOME = "/home"; /* LOGIN */ public static final String SIGN_IN = "/sign-in"; /* LOGIN */ public static final String SIGN_OUT = "/sign-out"; /*...
package vip.corejava; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.cloud.open...
package com.webank.weevent.broker.st; import java.util.HashMap; import java.util.List; import java.util.Map; import com.webank.weevent.broker.JUnitTestBase; import com.webank.weevent.client.BaseResponse; import com.webank.weevent.client.WeEvent; import com.webank.weevent.core.dto.SubscriptionInfo; import lombok.exte...
package com.coderefer.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.service.ApiInfo; import s...
/* * Copyright (c) 2015, Ali Afroozeh and Anastasia Izmaylova, Centrum Wiskunde & Informatica (CWI) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code mu...
/* * 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 SW.newPackage; public class Equation { private double a; private double b; private double c; private int n; public Equation(double a, double b, double c) { this.a = a; this.b = b; this.c = c; double d = b * b - 4 * a * c; if (a == 0) { if (b == 0) { if (c == 0...
/* * HeaderCallback.java * * Copyright Goldin-Rudahl Associates * * Created by Sally Goldin, 10/23/2001 * * $Id: HeaderCallback.java,v 1.5 2006/02/11 07:15:31 goldin Exp $ * $Log: HeaderCallback.java,v $ * Revision 1.5 2006/02/11 07:15:31 goldin * Enable classnames tab even if no classnames yet * * Revis...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.datafactory.models; import com.azure.core.annotation.Fluent; import com.azure.resourcemanager.datafactory.fluent.models.GenericD...
package ru.mail.polis.brainlux; import org.jetbrains.annotations.NotNull; import java.io.File; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.IntBuffer; import java.nio.channels.FileChannel; import java.nio.file.StandardOpenOption; import java.util.ArrayList; import...
package com.alipay.api.response; import java.util.List; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.internal.mapping.ApiListField; import com.alipay.api.domain.OpenApiSignQueryResponse; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.user.agreement.batch.query response. * ...
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package dev.flutter.scenarios; import static org.junit.Assert.fail; import android.content.Context; import android.support.test.InstrumentationRegistry; ...
/* * Zed Attack Proxy (ZAP) and its related class files. * * ZAP is an HTTP/HTTPS proxy for assessing web application security. * * 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 * ...
package com.mark.spring.context.condition; import org.springframework.context.annotation.Condition; import org.springframework.context.annotation.ConditionContext; import org.springframework.core.type.AnnotatedTypeMetadata; import java.util.Objects; /** * @author machaoma * @date 2020/2/21 2:52 下午 */ public clas...
/* * 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 not ...
// // Copyright 2018 SenX S.A.S. // // 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.xiaomi.push.service; import com.xiaomi.channel.commonutils.network.d; import com.xiaomi.network.HostManager.HttpGet; import com.xiaomi.smack.util.h; import com.xiaomi.stats.g; import com.xunlei.xllib.R; import java.net.URL; class aa$a implements HttpGet { aa$a() { } public String a(String str...
/* * 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 backserver; import java.io.IOException; import java.io.PrintWriter; import java.net.ServerSocket; import java.net.Socket; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; /** * 后台服务01 * Created by nero on 2021/3/27. */ public class BackEndServer01 { public static void...
package org.yhonatan.practice.postal.code.distance.service; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import org.yhonatan.practice.postal.code.distance.core.DistanceRequest; import org.yhonatan.practice.postal.code.distance.jpa.entity.DistanceRequestLogEntit...
/** * 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 * "Li...
package com.ecer.kafka.connect.oracle.models; import java.sql.Timestamp; import java.util.List; public class Transaction{ private String xid = null; private Long scn = 0L; private Timestamp timestamp; private String commitOrRollback; private Boolean isCompleted = false; //private HashMap<...
package com.mrmq.poker.handler; import com.mrmq.poker.common.proto.Rpc.RpcMessage; import com.mrmq.poker.service.Session; public interface Handler<T, V> extends Runnable { public void handle() throws Exception; public RpcMessage getRpcRequest(); public Session getSession(); }
/** * personium.io * Copyright 2014 FUJITSU 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 applica...
package com.eh7n.f1telemetry.data.elements; public class CarTelemetryData { private int speed; private int throttle; private int steer; private int brake; private int clutch; private int gear; private int engineRpm; private boolean drs; private int revLightsPercent; private WheelData<Integer> brakeTemperatu...
package mordd.colorfulstone; import mordd.colorfulstone.item.*; import net.minecraftforge.fml.common.Mod.*; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.*; import org.apache.logging.log4j.Logger; @Mod(modid = ColorfulStone.MODID,name = ColorfulStone.NAME,version = ColorfulSton...
/* * Copyright 2000-2012 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
/* * 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 view; import java.util.Optional; import javafx.scene.control.Alert; import javafx.scene.control.ButtonType; import javafx.scene.layout.Region; public class Alerta extends Alert { private static Alerta instance; private Alerta() { super(AlertType.NONE); getDialogPane().setMinHeight(Region.USE_PREF_SI...
package org.javacc.java; import org.javacc.parser.CodeGenHelper; import org.javacc.parser.CodeGeneratorSettings; import org.javacc.parser.Options; import org.javacc.parser.TokenizerData; import java.io.File; import java.io.IOException; import java.util.BitSet; import java.util.HashMap; import java.util.List; import j...
/** * Copyright (C) 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 applicab...
/* * MIT License * * Copyright (c) 2021 MASES s.r.l. * * 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, cop...
/* * Copyright 2017-2018 original authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
package play.learn.java.design.event_driven_architecture; public class UserCreatedEventHandler implements Handler<UserCreatedEvent> { @Override public void onEvent(UserCreatedEvent event) { System.out.printf("User '%s' has been Created!", event.getUser().getUsername()); } }
package org.adaptlab.chpir.android.survey; import java.util.ArrayList; import org.adaptlab.chpir.android.survey.Models.Question; import org.adaptlab.chpir.android.survey.Models.Survey; import org.adaptlab.chpir.android.survey.Tasks.SendResponsesTask; import android.app.Activity; import android.content.Intent; import...
package com.gsc.bm.api.rest.panel; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.gsc.bm.repo.external.GameLogRecord; import com.gsc.bm.repo.external.WebClientLogRecord; import com.gsc.bm.repo.ext...
/* * Copyright 2015 The Netty Project * * The Netty Project 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/licenses/LICENSE-2.0 * * Unless ...
/* * Tencent is pleased to support the open source community by making BK-BASE 蓝鲸基础平台 available. * * Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. * * BK-BASE 蓝鲸基础平台 is licensed under the MIT License. * * License for BK-BASE 蓝鲸基础平台: * ----------------------------------------------...
package flyweight.temas; import flyweight.interfaces.TemaFlyweight; import java.util.Arrays; /** * @author Anderson Matte */ public class TemaAsterico implements TemaFlyweight { @Override public void imprime(String titulo, String conteudo) { System.out.println("********** " + titulo + " **********...
/* * Copyright (c) 2002-2017 Gargoyle Software 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 ...
/* * Copyright 2020 cpacm * * 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 wri...
package datadog.trace.decorator; import datadog.trace.tracer.Span; public abstract class HttpClientDecorator<REQUEST, RESPONSE> extends ClientDecorator { protected abstract String method(REQUEST request); protected abstract String url(REQUEST request); protected abstract String hostname(RESPONSE request); ...
/* * 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 2018 Murat Artim (muratartim@gmail.com). * * 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...
/* * Copyright 2006-2016 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...
package com.atguigu.gmall.sms.controller; import java.util.Arrays; import java.util.Map; import com.atguigu.core.bean.PageVo; import com.atguigu.core.bean.QueryCondition; import com.atguigu.core.bean.Resp; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans...
package mediator; public class ConcreteColleague2 implements Colleague { private String name; private Mediator mediator; public ConcreteColleague2(String name, Mediator mediator) { this.name = name; this.mediator = mediator; } public void setName(String name) { this.name...
/* * Copyright (c) 2002-2020 Gargoyle Software 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 ...
package com.atguigu.gulimail.order.dao; import com.atguigu.gulimail.order.entity.RefundInfoEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** * 退款信息 * * @author chenshun * @email sunlightcs@gmail.com * @date 2021-08-14 04:28:05 */ @Mapper public int...
package org.sag.acminer.database.defusegraph; import java.io.ObjectStreamException; import java.nio.file.Path; import java.util.Objects; import org.sag.acminer.database.defusegraph.id.Identifier; import org.sag.soot.SootSort; import org.sag.soot.xstream.SootFieldContainer; import org.sag.xstream.XStreamInOut; import...
// // ======================================================================== // Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the ter...
package com.lcn.coolweather.gson; import com.google.gson.annotations.SerializedName; public class Suggestion { @SerializedName("comf") public Comfort comfort; @SerializedName("cw") public CarWash carWash; public Sport sport; public class Comfort { @SerializedName("txt") pu...
package com.github.thiagogarbazza.stringreplacer; public interface StringReplacer { String replace(final String text, final Object data); }
package encodingstrategies; import model.Document; import model.Line; import view.Text2SpeechEditorView; public class StrategiesFactory { private EncodingStrategy ret; public StrategiesFactory(String encoding) { Text2SpeechEditorView w = Text2SpeechEditorView.getInstance(); Document doc = w.getCurrentDocument(...
package com.heaven7.plugin.util; import java.io.PrintWriter; import java.io.StringWriter; /** * Created by heaven7 on 2015/12/24. */ public class Util { public static String toString(Throwable t) { StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); t.printStack...
package test; import java.util.LinkedList; public class TaggingTest extends Thread { private final LinkedList <Object> list = new LinkedList <> (); public void add (final Object object) { list.add (object); } public void remove (final Object object) { // list.remove (object); ...
package com.fabifont.aliexpress.application; import com.fabifont.aliexpress.config.Config; import com.fabifont.aliexpress.config.Settings; import com.fabifont.aliexpress.process.AliexpressProcessRunner; import com.jfoenix.controls.JFXButton; import com.jfoenix.controls.JFXToggleButton; import javafx.application.Applic...
/* * Copyright (c) 2012, 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...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package android.support.asynclayoutinflater; public final class R { private R() {} public static final class attr { pr...
/* * Copyright (c) 2020. https://rxmicro.io * * 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 o...
package com.huaweicloud.dis.agent.tailing; import java.nio.ByteBuffer; import java.util.HashMap; import java.util.Map; import java.util.concurrent.atomic.AtomicLong; public class SmallFileParser extends AbstractParser<SmallFileRecord> { private final AtomicLong totalFilesParsed = new AtomicLong(); privat...
package com.adriencadet.downthere.ui.activities; import android.app.Activity; import android.app.Fragment; import android.app.FragmentTransaction; import android.os.Bundle; import com.adriencadet.downthere.DownthereApplication; import com.adriencadet.downthere.ui.components.Spinner; import com.adriencadet.downthere.u...
/****************************************************************************** Copyright (c) 2013, Mandar Chitre This file is part of fjage which is released under Simplified BSD License. See file LICENSE.txt or go to http://www.opensource.org/licenses/BSD-3-Clause for full license details. ************************...
/* * 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 com.dataprofiler.datasetperformance.model; /*- * * dataprofiler-tools * * Copyright 2021 Merck & Co., Inc. Kenilworth, NJ, USA. * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional in...
/* * 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 2015-2020 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...
/* * 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 * distributed u...
package com.cachet.monitor.javacachetclient; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class CachetClientApplicationTests { @Tes...
package com.hubspot.singularity.resources; import static com.hubspot.singularity.WebExceptions.badRequest; import static com.hubspot.singularity.WebExceptions.checkBadRequest; import static com.hubspot.singularity.WebExceptions.checkNotFound; import static com.hubspot.singularity.WebExceptions.notFound; import java.i...
package com.hedera.services.usage.token.meta; /*- * ‌ * Hedera Services API Fees * ​ * Copyright (C) 2018 - 2021 Hedera Hashgraph, 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 ...
/* * 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 at.rtr.rmbt.controller; import at.rtr.rmbt.constant.URIConstants; import at.rtr.rmbt.request.SyncRequest; import at.rtr.rmbt.response.SyncResponse; import at.rtr.rmbt.service.ClientService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.RequiredArgsConstructor; imp...
package com.heaven.mvc.board.dao; import java.util.List; import com.heaven.mvc.board.domain.BoardVO; public interface BoardDao { public abstract List<BoardVO> list(); public abstract int delete(BoardVO boardVO); public abstract int deleteAll(); public abstract int update(BoardVO boardVO); public abstract vo...
/* * Copyright 2020 Global Biodiversity Information Facility (GBIF) * * 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...
package com.idiominc.ws.opentopic.fo.index2; import com.ibm.icu.text.Collator; import com.idiominc.ws.opentopic.fo.index2.configuration.ConfigEntry; import com.idiominc.ws.opentopic.fo.index2.configuration.IndexConfiguration; import java.util.ArrayList; import java.util.HashMap; import java.util.Locale; import java.u...
package com.arcadeanalytics.web.rest; /*- * #%L * Arcade Analytics * %% * Copyright (C) 2018 - 2019 ArcadeAnalytics * %% * 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 * * htt...
package com.JSaper.Util; import java.io.File; import java.io.IOException; import com.jogamp.opengl.GL2; import com.Multisaper.Core.Interfaces.DrawableSpriteTexture; import com.Multisaper.Core.Interfaces.GUIRenderer; import com.jogamp.opengl.util.texture.Texture; import com.jogamp.opengl.util.texture.TextureIO; publ...
/* * Copyright 2015 Taylor Caldwell * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
/* * The MIT License (MIT) * * Copyright (c) Open Application Platform Authors * * 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 r...
package daro.lang.ast; import java.util.Arrays; import java.util.Objects; import java.util.stream.Collectors; /** * Class representing an ast node for a function definition. e.g. {@code fn foo( * ... ): bar { ... }} * * @author Roland Bernard */ public final class AstFunction extends AstNode { private final...
package org.dryun.domain.service; import org.dryun.domain.entity.OperaPack; import org.dryun.domain.entity.OperationLog; import org.springframework.stereotype.Service; import java.util.List; /** * @Auther: 晨初 * @Date: $date$ * @Description: */ @Service public interface OperationService { //添加操作记录 Intege...
/*- * #%L * Various Java code for ImageJ * %% * Copyright (C) 2018 - 2021 EMBL * %% * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, ...
package dump.g; /** * Created by zhy on 15/12/14. */ public class Exceptions { public static void illegalArgument(String msg, Object... params) { throw new IllegalArgumentException(String.format(msg, params)); } }
/* * 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...
/* * Tencent is pleased to support the open source community by making Angel available. * * Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. 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 ma...
package io.fabric8.maven.docker.access; import java.io.*; import java.util.*; import io.fabric8.maven.docker.util.EnvUtil; import org.apache.commons.lang3.text.StrSubstitutor; import io.fabric8.maven.docker.config.Arguments; import org.json.JSONArray; import org.json.JSONObject; public class ContainerCreateConfig { ...
package br.com.ufv.projeto_loja.IPessoa; import java.util.List; import br.com.ufv.projeto_loja.Entidades.Funcionario; public interface IRepositorioFuncionario { public boolean cadastroFuncionario(Funcionario f); public boolean atualizarFuncionario(Funcionario f); public boolean deletarFuncionario(Funcionario f)...
package org.ipa.collect.android.location.client; import android.location.Location; import com.google.android.gms.location.LocationListener; public class FakeLocationClient implements LocationClient { private boolean failOnStart; private LocationClientListener clientListener; private LocationListener loca...
package seedu.address.logic.parser; import static java.lang.Integer.parseInt; import static seedu.address.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT; import static seedu.address.logic.parser.CliSyntax.PREFIX_CALORIES; import static seedu.address.logic.parser.CliSyntax.PREFIX_NAME; import java.util.stream.St...
package org.factcenter.fastgc.inchworm; import org.factcenter.fastgc.YaoGC.AND_2_1; import org.factcenter.fastgc.YaoGC.CircuitGlobals; import org.factcenter.fastgc.YaoGC.CompositeCircuit; import org.factcenter.fastgc.YaoGC.Wire; /** * Bitwise and circuit of two inputs of same length (in bits). */ public class AND_...