text
stringlengths
7
1.01M
/* * Copyright 2002-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 ap...
/* * Copyright Terracotta, 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 ...
// Copyright 2008 Google Inc. All Rights Reserved. package org.clearsilver.jni; import org.clearsilver.ClearsilverFactory; import org.clearsilver.CsTest; /** * Unittests specifically for JniCs * * @author Sergio Marti (smarti@google.com) */ public class JniCsTest extends CsTest { @Override protected Clearsi...
package org.jetbrains.plugins.scala.lang.formatting.settings; import com.intellij.application.options.codeStyle.CommenterForm; import com.intellij.openapi.util.Disposer; import com.intellij.psi.codeStyle.CodeStyleSettings; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLay...
/* * Copyright 2018 JDCLOUD.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 applicable law or agreed to in...
/* * 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 2002-2017 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 requ...
/* * Copyright (c) 2010-2015 Pivotal Software, 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 req...
package com.github.charlemaznable.varystest.proxy; import com.github.charlemaznable.core.net.common.Mapping; import com.github.charlemaznable.core.net.common.Parameter; import com.github.charlemaznable.core.net.common.PathVar; import com.github.charlemaznable.core.net.common.RequestMethod; import com.github.charlemazn...
package br.com.pos.unicamp.vrep.actuators; public class Motors { private final Motor leftMotor; private final Motor rightMotor; public Motors() { leftMotor = new Motor("Pioneer_p3dx_leftMotor"); rightMotor = new Motor("Pioneer_p3dx_rightMotor"); } public void setVelocity(final f...
// Copyright (C) 2013 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 applicable ...
import java.util.HashMap; import java.util.Map; /** * * 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 * * 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 * *   * * 示例: * * 给定 nums = [2, 7, 11, 15], target = 9 * * 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1] * * 来源:力扣(LeetCode) 链接:https://lee...
package com.revature.util; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; public class ConnFactory { private static ConnFactory cf; private ConnFactor...
/** * Copyright 2017 Google 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 by applicable...
package com.test; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import com.test.servi...
/* * 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 2019 ConsenSys AG. * * 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.rayo.core; import com.voxeo.exceptions.VException; public class CallException extends VException { public CallException() { super(); } public CallException(String s, Object... args) { super(s, args); } public CallException(String message, Throwable cause) { s...
package com.hedera.services.sigs.metadata.lookups; /*- * ‌ * Hedera Services Node * ​ * 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...
package be.teletask.onvif; import be.teletask.onvif.listeners.OnvifResponseListener; import be.teletask.onvif.models.OnvifDevice; import be.teletask.onvif.models.OnvifServices; import be.teletask.onvif.parsers.*; import be.teletask.onvif.requests.*; import be.teletask.onvif.responses.OnvifResponse; import com.burgstal...
package north.pathfindingmazejava.datastructures; /** * * @author northernpike */ import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; public class ArrayListTest { ArrayList<Integer> beforelist; Integer added; Integer added2; Integer added3; @Before ...
package com.filter; import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.annotation.WebFilter; import javax.ser...
// Dstl (c) Crown Copyright 2017 package uk.gov.dstl.baleen.annotators.testing; import java.util.Collection; import org.apache.uima.analysis_engine.AnalysisEngine; import org.apache.uima.analysis_engine.AnalysisEngineProcessException; import org.apache.uima.fit.factory.AnalysisEngineFactory; import org.apache.uima.fi...
package mil.nga.tiff; /** * TIFF Test Constants * * @author osbornb */ public class TiffTestConstants { /** * Stripped TIFF test file */ public static final String FILE_STRIPPED = "stripped.tiff"; /** * Packbits compressed TIFF test file */ public static final String FILE_PACKBITS = "packbits.tiff";...
package com.example.jpro; import android.Manifest; import android.content.Intent; import android.content.pm.PackageManager; import android.location.Location; import android.os.Bundle; import android.view.View; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import androidx.core.ap...
package fake.package_5; public class Foo3 { public void foo0(){ new Foo2().foo49(); } public void foo1(){ foo0(); } public void foo2(){ foo1(); } public void foo3(){ foo2(); } public void foo4(){ foo3(); } public void foo5(){ foo4(); } public void foo6(){ foo5(); } public void foo7(){ foo6(); } public void foo8(){ foo7...
package exerc_lista01; import javax.swing.JOptionPane; public class Exercicio_31 { public Exercicio_31() { //Código do construtor } public static void Executar_Programa_31() { //Exercicio de fatoração usando laço de repetição int num = Integer.parseInt(JOptionPane.s...
package de.jcm.darkpowers.network; import de.jcm.darkpowers.DarkPowers; import net.minecraft.entity.player.EntityPlayerMP; import cpw.mods.fml.common.network.NetworkRegistry.TargetPoint; import cpw.mods.fml.common.network.simpleimpl.IMessage; import cpw.mods.fml.common.network.simpleimpl.IMessageHandler; import cpw....
package com.example.weven.bankapp.Activity; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.TextView; import com.example.weven.bankapp.Bean.FeedbackInfo; import com.example.weven.bankapp.Bean.RechargeSuccessful; import com.example.weven.bankap...
package de.c0debase.bot.commands.general; import de.c0debase.bot.commands.Command; import de.c0debase.bot.utils.Constants; import net.dv8tion.jda.core.entities.Message; public class SpongebobCommand extends Command { public SpongebobCommand() { super("spongebob", "Macht einen normalen Satz zu einem lusti...
/* * Copyright (C) 2014 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...
/* * Copyright 2019-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...
/** * Copyright 2011-2013 Terracotta, Inc. * Copyright 2011-2013 Oracle, 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 ...
/* * ProGuard -- shrinking, optimization, obfuscation, and preverification * of Java bytecode. * * Copyright (c) 2002-2017 Eric Lafortune @ GuardSquare * * 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 F...
package org.poem.result; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** * @author poem */ public class ResponseResult<T> implements Serializable { @ApiModelProperty(value = "业务状态码") private Integer code; @ApiModelProperty(value = "有效数据") private T data; @Api...
package com.gl.userservice.exception.handler; import com.gl.userservice.exception.UserNotFoundException; import com.gl.userservice.model.ApiError; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.validati...
/* * Copyright 2010-2018 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 "lice...
package ru.stqa.pft.addressbook.tests; import org.testng.annotations.Test; import ru.stqa.pft.addressbook.model.ContactData; import ru.stqa.pft.addressbook.model.Contacts; import java.io.File; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.MatcherAssert.assertThat; import static org.test...
/* * Copyright (C) 2017 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...
package com.googlecode.javaewah32.symmetric; import com.googlecode.javaewah.datastructure.BitSet; import com.googlecode.javaewah32.BitmapStorage32; import java.util.Iterator; import java.util.List; /** * This is a Java specification for an "updatable" Boolean function meant to run * over EWAH bitmaps. * * Refer...
package com.github.demo2; /** * @author 许大仙 * @version 1.0 * @since 2021-10-14 10:05 */ public class Test { public static void main(String[] args) { Runnable runnable = new SubRunnable(); Thread t1 = new Thread(runnable); Thread t2 = new Thread(runnable); t1.start(); t...
package myGameEngine.util; import ray.rml.Vector3; public class MovementUtils { private MovementUtils() {} // deny construction /** * Determine if the separation between object 1 and object 2 is permissible, * as specified by the maxSeparation passed into the method. * * @param obj1 Object 1 * @param...
package uk.gov.hmcts.reform.divorce.model.parties; import com.fasterxml.jackson.annotation.JsonValue; import java.util.Arrays; public enum DivorceParty { PETITIONER("petitioner"), RESPONDENT("respondent"), CO_RESPONDENT("co-respondent"); private final String description; DivorceParty(String de...
/* * Copyright 2018 Syam Pillai * * 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 ...
package ma.glasnost.orika.test.community; import ma.glasnost.orika.MapperFactory; import ma.glasnost.orika.impl.DefaultMapperFactory; import org.junit.Test; public class Issue161TestCase { public static class Optional<T> { } public static class Range<C extends Comparable<C>> { } public static class SelfRefer...
package com.android.samples.arch.componentsbasicsample.ui.news; import android.content.Context; import android.widget.ImageView; import android.widget.TextView; import com.android.samples.arch.componentsbasicsample.R; import com.android.samples.arch.componentsbasicsample.model.InfiniteFeedInfo; import com.bumptech.gl...
package com.github.charlemaznable.guardians.context; public interface GuardEmptyContext { String contextValue(); }
package tech.aomi.cloud.gateway.repository; import org.springframework.data.mongodb.repository.MongoRepository; import org.springframework.stereotype.Repository; import tech.aomi.cloud.gateway.entity.SystemAllowToken; /** * @author Sean createAt 2021/6/25 */ @Repository public interface SystemAllowTokenRepository e...
package models; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.prefs.Preferences; public class Address { private int addressId; private String area , phaseBlockG...
/* * Copyright 2014-2019 michael-simons.eu. * * 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.test.testpro.model; import org.springframework.data.annotation.CreatedBy; import org.springframework.data.annotation.CreatedDate; import org.springframework.data.annotation.LastModifiedBy; import org.springframework.data.annotation.LastModifiedDate; import org.springframework.data.jpa.domain.support.Auditi...
/* * Copyright 2013-2020 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 2017-present Open Networking Foundation * * 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 appli...
package org.hisp.dhis.trackedentity; /* * Copyright (c) 2004-2020, University of Oslo * 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 (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 ...
/* * 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")...
/** * iBizSys 5.0 机器人生产代码(不要直接修改当前代码) * http://www.ibizsys.net */ package com.sa.unip.app.ywsp.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.s...
package io.github.devbhuwan.microservices.nutshell.order.service.workflow; import org.camunda.bpm.engine.delegate.DelegateExecution; import org.camunda.bpm.engine.delegate.JavaDelegate; import org.springframework.stereotype.Component; @Component public class PrepareOrderServiceTask implements JavaDelegate { @Ove...
package com.example.demo.aspect; import com.example.demo.annotation.Limit; import com.example.demo.constant.Constants; import com.example.demo.enums.LimitType; import com.example.demo.exception.TestException; import lombok.extern.slf4j.Slf4j; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annota...
/* * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. Camunda licenses this file to you under the Apache License, * Version 2.0; y...
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // ...
/* * Copyright 2011-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 "lice...
package JDescriptors.fr.lip6.color; import java.awt.image.ColorModel; import JDescriptors.fr.lip6.quantizer.Quantizer; public interface ColorQuantizer extends Quantizer { /** * @return the colorModel */ public ColorModel getColorModel(); /** * @param colorModel * the colorModel to set */ ...
/* * Copyright (c) 2019 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.o...
package com.coolweather.app.coolweather.model; /** * Created by cc on 2017/1/1. */ import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import com.coolweather.app.coolweather.db.CoolWeatherOpenHelper; import java.util.A...
/***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * v...
package ie.kyle.memorygame; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { supe...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v8/enums/optimization_goal_type.proto package com.google.ads.googleads.v8.enums; /** * <pre> * Container for enum describing the type of optimization goal. * </pre> * * Protobuf type {@code google.ads.googleads.v8.enums.O...
package com.noseparte.battle.server; import com.noseparte.battle.BattleServerConfig; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.EventLoopGroup; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.nio.NioServerSocketChannel; import...
/* SPDX-License-Identifier: Apache-2.0 */ /* Copyright Contributors to the ODPi Egeria project. */ package org.odpi.openmetadata.repositoryservices.localrepository.repositorycontentmanager; import org.odpi.openmetadata.repositoryservices.events.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.odp...
/* Generated by camel build tools - do NOT edit this file! */ package org.apache.camel.component.kubernetes.customresources; import java.util.Map; import org.apache.camel.CamelContext; import org.apache.camel.spi.ExtendedPropertyConfigurerGetter; import org.apache.camel.spi.PropertyConfigurerGetter; import org.apache...
package server; import java.util.HashMap; import java.util.Map; /** * * @author zjj */ public class MapleShopFactory { private Map<Integer, MapleShop> shops = new HashMap<>(); private Map<Integer, MapleShop> npcShops = new HashMap<>(); private static MapleShopFactory instance = new MapleShopFactory();...
package ch.heigvd.amt.mvcdemo.services; import ch.heigvd.amt.mvcdemo.model.User; import ch.heigvd.amt.mvcdemo.rest.UserRessource; import javax.annotation.Resource; import javax.ejb.Stateless; import javax.sql.DataSource; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import ...
package org.innovateuk.ifs.competitionsetup.application.sectionupdater; import org.innovateuk.ifs.commons.rest.RestResult; import org.innovateuk.ifs.commons.service.ServiceResult; import org.innovateuk.ifs.competition.resource.CompetitionResource; import org.innovateuk.ifs.competition.resource.CompetitionSetupSubsecti...
package com.htetznaing.xgetter.Utils; import android.util.Base64; import com.htetznaing.xgetter.Model.XModel; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.Collections; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Utils { public static ...
/** * Appia: Group communication and protocol composition framework library * Copyright 2006 University of Lisbon * * 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...
/* * aTalk, android VoIP and Instant Messaging client * Copyright 2014 Eng Chong Meng * * 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 *...
/* * Copyright 2021 EPAM Systems, Inc * * See the NOTICE file distributed with this work for additional information * regarding copyright ownership. 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 Li...
package bf.stock; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import java.util.Date; import java.util.List; /** * Created by Administrator on 2015/12/1. */ @Component public class StockBaseTask extends WebServiceTask { private static Logger logger...
/* * 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 ...
/* * Copyright (c) 2020, GoMint, BlackyPaw and geNAZt * * This code is licensed under the BSD license found in the * LICENSE file in the root directory of this source tree. */ package io.gomint.inventory.item; import io.gomint.GoMint; /** * @author geNAZt * @version 1.0 * @stability 1 */ public interface It...
/* * Copyright (C) 2006 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...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.servicefabric; import com.azure.core.util.Context; /** Samples for Services List. */ public final class ServicesListSamples { ...
/* * Copyright <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://www.apache.org/licenses/LICENSE-2.0 * * or i...
/* * 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.gmail.jannyboy11.customrecipes.commands; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.Random; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import com.gmai...
package com.github.Eddyosos.integracao20171.esus.cds.avaliacaoelegibilidade; import br.gov.saude.esus.cds.transport.generated.thrift.avaliacaoelegibilidade.FichaAvaliacaoElegibilidadeThrift; import com.github.Eddyosos.integracao20171.compactor.SerializadorThrift; import com.github.Eddyosos.integracao20171.esus.cds.com...
/* * Copyright 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 applica...
/* * Copyright 2016-2020 Chronicle Software * * https://chronicle.software * * 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 * * ...
/* * Copyright 2017 Capital One Services, LLC and Bitwise, 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 applicab...
/* * Copyright (C) 2017 Red Hat, 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 ...
/* * 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...
/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
/** * Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng) * <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 ...
package com.webworkz.playground.pipeline; public abstract class Event { private final EventType type; public Event(EventType type) { this.type = type; } public EventType getType() { return type; } }
package sk.henrichg.phoneprofilesplus; import android.annotation.SuppressLint; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; import android.os.AsyncTask...
/** * Copyright (c) 2016-2019 SWAN开源 All rights reserved. * * http://www.gaoxiaoit.com/ * * 版权所有,侵权必究! */ package io.renren; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class AdminApplication { public s...
package cn.modernpoem.date; import java.util.regex.Matcher; /** * @author zhy */ public interface DateFormatter { /** * Format the date to yyyyMMdd/yyyyMM/yyyy * * @param lastLine the last line of contents * @return date string, or null */ String format(String lastLine); /** ...
/* * Copyright 2015 The Closure Compiler 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...
/* * MIT License * * Copyright (c) 2022 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...