text
stringlengths
7
995k
package com.untgames.funner.store; /** * Represents the result of an in-app billing operation. * A result is composed of a response code (an integer) and possibly a * message (String). You can get those by calling * {@link #getResponse} and {@link #getMessage()}, respectively. You * can also inquire whether a res...
package com.rincon.tunitposthtml; /* * Copyright (c) 2005-2006 Rincon Research Corporation * 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...
/* * 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...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/*----------------------------------------------------------------------------*/ /* Copyright (c) 2019 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of...
/* * Copyright 2019-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
/* * 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) 2008-2012, Matthias Mann * * 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 notice, * this...
// 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 law...
/** * Copyright (c) The packet-java Authors, All rights reserved. * * packet-java source code and usage is governed by a MIT style license that can be found in the * LICENSE file */ package net.packet; import org.apache.commons.lang3.StringUtils; import com.google.gson.annotations.SerializedName; /** * Enum...
package com.ib; import java.util.ArrayDeque; import java.util.Deque; public class MinStack { Deque<Integer> stack; Integer minele; MinStack(){ stack = new ArrayDeque<>(); minele = 0; } public void push(int x) { if(stack.isEmpty()){ minele = x; stac...
package org.iotivity.simpleclient; import org.iotivity.OCClientResponse; import org.iotivity.OCQos; import org.iotivity.OCRepresentation; import org.iotivity.OCResponseHandler; import org.iotivity.oc.OcCborEncoder; import org.iotivity.oc.OcUtils; public class GetLightResponseHandler implements OCResponseHandler { ...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
package com.ni.sourceCode.spring.factory.config; import com.ni.sourceCode.spring.BeansException; import com.ni.sourceCode.spring.factory.ConfigurableListableBeanFactory; /** * @创建人 HongZe * @创建时间 2021/12/2 * @描述 */ public interface BeanFactoryPostProcessor { /** * 在所有的 BeanDefinition 加载完成后,实例化 Bean 对象之前,...
package com.lsefiane.beautiful.java.advanced.programming.generics.session; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.lsefiane.beautiful.java.advanced.programming.generics.device.Device; /** * * BaseSession.java * * @author Lyes Sefiane * @email lyes.sefiane@gmail.com * @date Mar. 12,...
/* * Copyright (c) 2016, 2017, 2018, 2019 FabricMC * * 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 applicabl...
import java.util.Scanner; public class E10_EvenNumbers { public static void main (String args []) { //Variables Scanner input = new Scanner (System.in); int number; String answer; do { //Prompt user to enter an integer System.out.println("Enter one integer:"); number = input.nextInt(); //C...
package com.oounabaramusic.android; import android.Manifest; import android.content.ComponentName; import android.content.Intent; import android.content.ServiceConnection; import android.content.SharedPreferences; import android.content.pm.PackageManager; import android.os.Bundle; import android.os.IBinder; import and...
package com.github.zuihou.msgs.config; import com.github.zuihou.common.config.BaseConfig; import org.springframework.context.annotation.Configuration; /** * @author zuihou * @createTime 2017-12-15 14:42 */ @Configuration public class MsgsConfiguration extends BaseConfig { }
/* * Copyright 2019 MovingBlocks * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed t...
package com.verygood.security.larky.modules.crypto.KDF; // Copyright (c) 2006 Damien Miller <djm@mindrot.org> // // Permission to use, copy, modify, and distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all...
/* * Copyright 2016 ThoughtWorks, 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 agre...
package io.kokuwa.maven.helm; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.anyString; import static org.mockito.Mockito.doNothing; import ja...
package archimedes.backend.crudjpa; import java.util.HashSet; import java.util.Optional; import java.util.Set; import archimedes.backend.crudjpa.exception.GeneratorException; import archimedes.backend.crudjpa.util.NameManager; import archimedes.backend.crudjpa.util.TypeManager; import de.ollie.archimedes.alexandrian....
/* * * 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"); y...
package xdean.stackoverflow.rx; import java.util.ArrayList; import io.reactivex.Observable; import io.reactivex.subjects.BehaviorSubject; public class Q47049788 { public static void main(String[] args) { BehaviorSubject<String> s1 = BehaviorSubject.create(); BehaviorSubject<String> s2 = BehaviorSubject.cre...
/* * #%L * %% * Copyright (C) 2011 - 2017 BMW Car IT GmbH * %% * 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...
package com.mryan.sqlSession; import com.mryan.pojo.Configuration; /** * @description: DefaultSqlSessionFactory * @Author MRyan * @Date 2021/7/31 22:35 * @Version 1.0 */ public class DefaultSqlSessionFactory implements SqlSessionFactory { private Configuration configuration; public DefaultSqlSessionFac...
/******************************************************************************* * * Pentaho Data Integration * * Copyright (C) 2002-2012 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * Licensed under the Apache License, Version 2.0 (the ...
package org.owasp.goatdroid.fourgoats.activities; import android.os.Bundle; import org.owasp.goatdroid.fourgoats.base.BaseActivity; public class About extends BaseActivity { public About() {} public void onCreate(Bundle paramBundle) { super.onCreate(paramBundle); setContentView(2130903040); } }
/* * Copyright 2014-2019 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 (C) 2014 Xillio (support@xillio.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 2017-2022 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.napier.sem.repositories; import com.napier.sem.entities.SpokenLanguageJoinCountry; import java.util.List; /** * Project Name: seMethods * Package: com.napier.sem.repositories * User: Greg Ewens * Date Created: 09/04/2022 16:52 * File Purpose: This class provides methods for accessing Language data ...
/* * (C) Copyright 2017-2022 OpenVidu (https://openvidu.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 ap...
package com.haijun.controller; import java.util.List; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction....
package com.devsuperior.dsmovie.dto; public class ScoreDTO { private Long movieId; private String email; private Double score; public ScoreDTO () { } public Long getMovieId() { return movieId; } public void setMovieId(Long movieId) { this.movieId = movieId; } public String getEmail() { retu...
package org.jenkinsci.plugins.github.pullrequest; import com.cloudbees.jenkins.GitHubRepositoryName; import com.coravy.hudson.plugins.github.GithubProjectProperty; import com.coravy.hudson.plugins.github.GithubUrl; import hudson.XmlFile; import hudson.model.AbstractItem; import hudson.model.AbstractProject; import hud...
package com.blazings.suanfa.component.mybatisplus.userpagination.service; import com.baomidou.mybatisplus.extension.service.IService; import com.blazings.suanfa.component.mybatisplus.userpagination.entity.Children; /** * (Children)�����ӿ� * * @author makejava * @since 2021-12-16 20:12:15 */ public interface Chil...
package io.deephaven.engine.table.impl.tuplesource.generated; import io.deephaven.chunk.ByteChunk; import io.deephaven.chunk.Chunk; import io.deephaven.chunk.IntChunk; import io.deephaven.chunk.ShortChunk; import io.deephaven.chunk.WritableChunk; import io.deephaven.chunk.WritableObjectChunk; import io.deephaven.chunk...
package com.codepath.apps.restclienttemplate.models; import org.json.JSONException; import org.json.JSONObject; public class User { public String name; public long uid; public String screenName; public String profileImageUrl; public static User fromJson(JSONObject jsonObject) throws JSONExceptio...
package com.callfire.api.client.api.campaigns; import com.callfire.api.client.*; import com.callfire.api.client.api.callstexts.model.Call; import com.callfire.api.client.api.campaigns.model.Batch; import com.callfire.api.client.api.campaigns.model.IvrBroadcast; import com.callfire.api.client.api.campaigns.model.Recipi...
/* Copyright 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permis...
/* * 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 pers.scruel.handler; import pers.scruel.gui.TipsFrame; import pers.scruel.listener.BaseAction; import pers.scruel.thread.BaseThread; import pers.scruel.util.ClipboardUtils; import java.awt.*; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.DataFlavor; import java.io.File; import java.util...
/* * Copyright 2017 Huawei Technologies Co., Ltd * * 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 l...
package com.github.pukkertje.TCPServer.helpers; import javax.net.ssl.HttpsURLConnection; import java.io.IOException; import java.io.InputStream; import java.net.URL; public class HTTPSClient { public static InputStream fetchURL(String pageUrl) { URL url; try { url = new URL(pageUrl); ...
/* * Copyright (c) 2019 the Eclipse Milo Authors * * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 */ package org.eclipse.milo.opcua.stack.cor...
/* * Copyright 2020 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. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, softw...
package com.planet_ink.coffee_mud.Abilities.Prayers; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.core.collections.*; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.planet_ink.coffee_mud.Areas.interfaces.*; import com....
/** Implementations of {@link org.anchoranalysis.mpp.feature.bean.energy.element.FeatureAllMemo}. */ package org.anchoranalysis.plugin.mpp.feature.bean.memo.all;
package org.aikodi.chameleon.oo.type.generics; import org.aikodi.chameleon.core.element.Element; import org.aikodi.chameleon.core.element.ElementImpl; import org.aikodi.chameleon.core.lookup.LookupException; import org.aikodi.chameleon.oo.type.BasicTypeReference; import org.aikodi.chameleon.oo.type.Type; import org.ai...
package org.jeecgframework.core.common.model.json; import java.util.List; import org.jeecgframework.core.util.ContextHolderUtils; import org.jeecgframework.core.util.ResourceUtil; import org.jeecgframework.tag.vo.datatable.SortDirection; /** * easyui的datagrid向后台传递参数使用的model * * @author * */ public class Data...
package com.rohangulati.agoda.controller; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import static com.rohangulati.agoda.util.Responses.ok...
/** * 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.cart4j.auth.repository; import com.cart4j.auth.entity.User; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.jpa.repository.Query; import org.springframework.stereotype.Repository; @Reposi...
package io.scalecube.services.examples; import io.scalecube.services.annotations.RequestType; import io.scalecube.services.annotations.ResponseType; import io.scalecube.services.annotations.Service; import io.scalecube.services.annotations.ServiceMethod; import io.scalecube.services.api.ServiceMessage; import java.uti...
/* DungeonDiver3: An RPG Copyright (C) 2011-2012 Eric Ahnell Any questions should be directed to the author via email at: products@puttysoftware.com */ package com.puttysoftware.dungeondiver3.support.map.objects; import com.puttysoftware.dungeondiver3.support.map.generic.GenericToggleWall; import com.puttysoftware....
package dev.luanfernandes.lucene.util; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; import com.fasterxml.jackson.module.paramnames.Param...
package gov.samhsa.c2s.c2suiapi.infrastructure.dto; import lombok.Data; import java.util.Date; @Data public class UserProfileSelfServiceEditDto { private UmsAddressDto homeAddress; private String homeEmail; private String homePhone; private String lastUpdatedBy; }
/* ******************************************************************* * Copyright (c) 1999-2001 Xerox Corporation, * 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public...
/* * Copyright 2016-2021 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...
/** * * Copyright (C) 2012 Enterprise Distributed Technologies Ltd * * www.enterprisedt.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the L...
/* * Copyright 2021 (c) Odnoklassniki * * 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 com.dlys.manager; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.client.RestTemplate; /** * RestTemplateConfig. * * @author admin */ @Configur...
package com.twitter.twittertext; /** * A class for validating Tweet texts. */ public class Validator { public static final int MAX_TWEET_LENGTH = 280; protected int shortUrlLength = 23; protected int shortUrlLengthHttps = 23; private Extractor extractor = new Extractor(); /** * Returns the weighted l...
package node.expression.multiplicative; import gen.Ardu3kParser; public class ExponentialNode extends AbstractInfixMultiplicativeNode { public ExponentialNode(Ardu3kParser.InfixMultiplicativeExprContext ctx) { super(ctx); } @Override public String toString() { return "^"; } }
package com.example.xzq.emails.bean; import java.io.Serializable; import java.util.List; import java.util.Properties; /** * Created by Xzq on 2017/3/26. */ public class MailInfo implements Serializable{ private static final long serialVersionUID = 1L; // 发送邮件的服务器的IP和端口 private String mailServerHost; ...
/* * Copyright 2016-2021 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...
/* GROUP DETAILS ============= GROUP MEMBERS : PARAS GARG & PAROMITA DATTA GROUP SECTION : CS 570-LA LAB ASSIGNMENT - WEEK 6 : BOUNCY BUBBLE SORT */ // importing libraries import java.util.*; // main class class BubbleSort { // main function public static void main(String args[]) { List<Int...
/***************************************************************** * 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 * ...
package com.ebgolden.domain.characterservice; import lombok.Builder; import lombok.Value; import com.ebgolden.common.Character; import com.ebgolden.common.Player; import com.ebgolden.common.Visibility; import java.util.Map; @Builder @Value public class CreateCharacterRequest { Character character; Map<String,...
/* * Copyright (c) 2008-2013, 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 ...
package com.tapadias.config; import javax.persistence.AttributeConverter; import javax.persistence.Converter; import java.sql.Date; import java.time.LocalDate; @Converter(autoApply = true) public class LocalDateConverter implements AttributeConverter<LocalDate, Date> { @Override public Date convertToDatabase...
/* * 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.zjq.concurrency; import com.zjq.concurrency.anno.NotThreadSafe; import lombok.extern.slf4j.Slf4j; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Semaphore; /** * @author zjq * @date 2021/12/5 21...
package com.wsk.cards.power; import basemod.abstracts.CustomCard; import com.megacrit.cardcrawl.actions.AbstractGameAction; import com.megacrit.cardcrawl.actions.common.ApplyPowerAction; import com.megacrit.cardcrawl.cards.AbstractCard; import com.megacrit.cardcrawl.characters.AbstractPlayer; import com.megacrit.cardc...
package com.yifan.spring.resourceserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class ResourceserverApplication { public static void main(String[] args) { SpringApplication.run(ResourceserverApp...
package org.hisp.dhis.webapi.controller.legend; /* * Copyright (c) 2004-2015, 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...
package com.moment.the.exception.legacy.legacyHandler; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; public class GoodsNotCancelHandler { public void handle(HttpServletRequest request, HttpServletResp...
/* * This file was automatically generated by EvoSuite * Fri May 22 02:20:28 GMT 2020 */ package com.google.gson; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import com.google.gson.JsonPrimitive; import java.math.BigDecimal; import java.math.BigInteg...
/* * Copyright © 2014-2016 Cask Data, 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 agr...
package com.lilithsthrone.game; import java.io.File; import java.io.Serializable; import java.util.EnumMap; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parser...
/* * Copyright 2015 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 a...
package io.cucumber.shouty; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Network { public static final Pattern BUY_PATTERN = Pattern.compile("buy", Pattern.CASE_INSENSITIVE); private final List<Person> listeners = new ArrayList...
// $ANTLR 2.7.7 (20060906): "ValidWhenParser.g" -> "ValidWhenParser.java"$ /* * $Id$ * * 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 lice...
package com.alipay.api.response; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.open.servicemarket.order.accept response. * * @author auto create * @since 1.0, 2021-03-17 17:26:47 */ public class AlipayOpenServicemarketOrderAcceptResponse extends AlipayResponse { private static final long ser...
package com.alipay.api.response; import com.alipay.api.AlipayResponse; /** * ALIPAY API: koubei.security.risk.event.send response. * * @author auto create * @since 1.0, 2021-12-21 22:37:50 */ public class KoubeiSecurityRiskEventSendResponse extends AlipayResponse { private static final long serialVersionUID ...
package com.alphawallet.token.web.Service; import java.math.BigInteger; import java.security.SignatureException; import java.util.Arrays; import com.alphawallet.token.entity.CryptoFunctionsInterface; import java.util.Base64; import org.web3j.crypto.Keys; import org.web3j.crypto.Sign; public class CryptoFunctions im...
package com.nowellpoint.mongodb.document; public class DocumentManagerException extends RuntimeException { private static final long serialVersionUID = -8166177562842441161L; public DocumentManagerException() { super(); } public DocumentManagerException(String message) { super(message); } public Docu...
/* * The MIT License * * Copyright (c) 2009-2021 PrimeTek * * 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.dianping.cat.consumer.performance; import java.util.Date; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import org.junit.Test; import org.unidal.lookup.ComponentTestCase; import com.dianping.cat.Constants; import com.dianping.cat.config.server.ServerConfigManager; import com.dianpi...
//,temp,TestUpdateDeleteSemanticAnalyzer.java,147,156,temp,TestUpdateDeleteSemanticAnalyzer.java,95,103 //,3 public class xxx { @Test public void testDeleteAllPartitioned() throws Exception { try { ReturnInfo rc = parseAndAnalyze("delete from U", "testDeleteAllPartitioned"); LOG.info(explain((Semant...
package benchmark.eldlreasoning.rules; import data.DefaultClosure; import eldlsyntax.ELConceptInclusion; import reasoning.rules.Rule; public abstract class OWLELRule extends Rule<DefaultClosure<ELConceptInclusion>, ELConceptInclusion> { public OWLELRule() { super(); } }
package com.theflopguyproductions.ticktrack.ui.lottie.utils; import android.animation.ValueAnimator; import android.view.Choreographer; import androidx.annotation.FloatRange; import androidx.annotation.MainThread; import androidx.annotation.Nullable; import androidx.annotation.VisibleForTesting; import com.theflopgu...
package br.com.alura.school.domain.student; public class CPF { private String number; public CPF(String number) { if (number == null || !number.matches("\\d{3}\\.\\d{3}\\.\\d{3}\\-\\d{2}")) { throw new IllegalArgumentException("br.com.alura.school.domain.student.CPF invalido!"); ...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v0/enums/ad_group_status.proto package com.google.ads.googleads.v0.enums; /** * <pre> * Container for enum describing possible statuses of an ad group. * </pre> * * Protobuf type {@code google.ads.googleads.v0.enums.AdGro...
package pt.ulisboa.tecnico.socialsoftware.tutor.quiz; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import pt.ulisboa.tecnico.socialsoftwar...
/* * Copyright 2010-2013 Ning, Inc. * Copyright 2014 Groupon, Inc * Copyright 2014 The Billing Project, LLC * * The Billing 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 L...
package henu.soft.xiaosi.coupon.service; import com.baomidou.mybatisplus.extension.service.IService; import henu.soft.common.utils.PageUtils; import henu.soft.xiaosi.coupon.entity.SeckillSessionEntity; import java.util.List; import java.util.Map; /** * 秒杀活动场次 * * @author xiaosi * @email 2589165806@qq.com * @dat...