text
stringlengths
7
995k
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/** * <copyright> * </copyright> * * $Id$ */ package kieker.tools.slastic.metamodel.adaptation; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Control</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <u...
/* * Copyright 2011-2016 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 org.bouncycastle.asn1.pkcs; import org.bouncycastle.asn1.*; import java.math.BigInteger; import java.util.Enumeration; public class DHParameter extends ASN1Object { ASN1Integer p, g, l; public DHParameter( BigInteger p, BigInteger g, int l) { this....
/*------------------------------------------------------------------------------ Copyright (c) CovertJaguar, 2011-2019 http://railcraft.info This code is the property of CovertJaguar and may only be used with explicit written permission unless otherwise specified on the license page at http://railcraft.info/wiki...
package unet.motiondetection; import javax.sound.sampled.*; import java.io.IOException; public class Actions { public static void shutdown()throws IOException { String shutdownCommand; String os = System.getProperty("os.name"); if("Linux".equals(os) || "Mac OS X".equals(os)){ ...
package com.systango.springboard.security; import io.jsonwebtoken.Claims; import io.jsonwebtoken.Jwts; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.GrantedAuthor...
/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ //$Id: $ package org.hibernate.test.cascade.circle; import java.util.HashSet; im...
/* * Copyright (C) 2017-2022 Objectos Software LTDA. * * 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 ...
/* * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
// Copyright (c) Microsoft. All rights reserved. package SendMessageToDevice; public class Temperature { String deviceId; Double value; String time; }
package week10; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class CustomArrayList<T> implements Iterable<T>{ private List<T> myList = new ArrayList<>(); public void add(T val) { myList.add(val); } @Override public Iterator<T> iterator() { return new CustomIterato...
/* * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
/* * 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.flarebyte.cm.com.product; import com.flarebyte.cm.com.core.Concept; /** * A ProductCatalog represents a persistent store of product information used in * the selling process. * * @author olivier * */ public interface ProductCatalog extends Concept { }
/* * Copyright 2002-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...
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 org.bouncycastle.math.ec.custom.sec; import java.math.BigInteger; import org.bouncycastle.math.ec.ECFieldElement; import org.bouncycastle.math.raw.Mod; import org.bouncycastle.math.raw.Nat160; import org.bouncycastle.util.Arrays; public class SecP160R1FieldElement extends ECFieldElement { public static fin...
package it.polimi.ingsw.Game.Actions.Decorators; import it.polimi.ingsw.Game.Actions.Actions; import it.polimi.ingsw.Game.Actions.BaseActions; import it.polimi.ingsw.Game.Board; import it.polimi.ingsw.Game.Player; import it.polimi.ingsw.Game.Tile; import it.polimi.ingsw.Game.Worker; import org.junit.jupiter.api.Test;...
package me.crupette.cauldronoverhaul.api; import net.minecraft.fluid.Fluid; import net.minecraft.fluid.Fluids; import net.minecraft.item.ItemStack; import net.minecraft.nbt.CompoundTag; import net.minecraft.nbt.Tag; import net.minecraft.util.Identifier; import net.minecraft.util.registry.Registry; import org.apache.co...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package com.jiayaxing.web.model; import java.io.Serializable; public class ShiroUser implements Serializable { /** * This field was generated by MyBatis Generator. This field corresponds to the database column shiro_user.id * @mbg.generated Thu Jul 19 10:21:57 CST 2018 */ private Integer id; /** * This f...
package com.coop; import android.app.Application; import com.facebook.react.ReactApplication; import com.oblador.vectoricons.VectorIconsPackage; import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.rea...
/* * Copyright 2012 Phil Pratt-Szeliga and other contributors * http://chirrup.org/ * * See the file LICENSE for copying permission. */ package org.trifort.rootbeer.runtime; public class RootbeerAtomicInt { private int m_value; public RootbeerAtomicInt(){ m_value = 0; } public int atomicAdd(int va...
/* * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v10/enums/conversion_action_category.proto package com.google.ads.googleads.v10.enums; public interface ConversionActionCategoryEnumOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.googleads.v10.e...
// Copyright 2018 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
package com.hs.mail.util; import com.hs.mail.imap.ImapConstants; import com.sun.mail.imap.protocol.BASE64MailboxDecoder; import com.sun.mail.imap.protocol.BASE64MailboxEncoder; public class MailUtils { // decode the name (using RFC2060's modified UTF7) public static String decodeMailbox(String name) { return BA...
/* * 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) 2014-2022 Philip Helger (www.helger.com) * philip[at]helger[dot]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/LICEN...
package com.cloupia.feature.infinidat.inventory.model; import javax.jdo.annotations.PersistenceCapable; import com.cloupia.model.cIM.InventoryDBItemIf; import com.cloupia.service.cIM.inframgr.reports.simplified.ReportableIf; @PersistenceCapable( detachable = "true", table = "infinidat_hba" ) public class INFINIDATHb...
/* * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
package com.lambdaschool.todos; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class TodosApplication { public static void main(String[] args) { SpringApplication.run(TodosApplication.class, args); } }
/* * Conditions Of Use * * This software was developed by employees of the National Institute of * Standards and Technology (NIST), an agency of the Federal Government. * Pursuant to title 15 Untied States Code Section 105, works of NIST * employees are not subject to copyright protection in the United States * and are...
/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2019 Serge Rider (serge@jkiss.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
/** * Copyright © 2016-2021 The Thingsboard 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...
package pl.allegro.tech.hermes.api; import com.fasterxml.jackson.annotation.JsonCreator; import com.google.common.base.MoreObjects; import pl.allegro.tech.hermes.api.helpers.Patch; import javax.validation.constraints.Max; import javax.validation.constraints.Min; import java.util.Map; import java.util.Objects; public...
/* * Copyright 2017 Vector Creations Ltd * Copyright 2018 New Vector 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 * * Unles...
/** * 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 m...
/* * Copyright (C) 2017 Seoul National University * * 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 applic...
/** * */ package org.epics.pvaccess.server.rpc; /** * Base RPC service interface. * @author msekoranja */ public interface Service { }
package io.sphere.sdk.stores.commands; import io.sphere.sdk.messages.queries.MessageQuery; import io.sphere.sdk.models.LocalizedString; import io.sphere.sdk.queries.PagedQueryResult; import io.sphere.sdk.queries.Query; import io.sphere.sdk.stores.Store; import io.sphere.sdk.stores.StoreDraft; import io.sphere.sdk.stor...
package com.example.gongxingheng.spider; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on...
/* * Copyright 2021 - 2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
/* * newtonRhapson.java * * Created on 15. juli 2000, 17:43 */ package neqsim.MathLib.nonLinearSolver; /** * @author Even Solbraa * @version */ public class newtonRhapson implements java.io.Serializable { private static final long serialVersionUID = 1000; int order; double[] polyConstants; d...
/* * Copyright (c) 2017, 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.apach...
/* * Copyright (c) 2017 Gowtham Parimelazhagan. * * 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.pharmacyonduty; import android.app.Application; import android.util.Log; import com.facebook.react.ReactApplication; import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import ...
/* * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
package io.nethy.util.validation; import java.util.List; import io.nethy.util.F4; public class ValidationBuilder4<A, B, C, D, E> extends ValidationBuilder { private final Validation<A, E> a; private final Validation<B, E> b; private final Validation<C, E> c; private final Validation<D, E> d; public Valid...
/** * AccessReason.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter. */ package com.google.api.ads.adwords.axis.v201506.rm; public class AccessReason implements java.io.Serializable { private java.lang.String _value_; private static ja...
/* * Copyright 2016 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
/* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php * * Unless r...
package reptxstudio.journalapp.application; import android.app.Application; import reptxstudio.journalapp.di.components.ApplicationComponent; import reptxstudio.journalapp.di.components.DaggerApplicationComponent; import reptxstudio.journalapp.di.modules.NetWorkModule; import reptxstudio.journalapp.utils.Config; /*...
package com.adioss.security.test; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.security.cert.CertificateException; import java.security.cert.CertificateFactory; import java.security.cert.X509Certificate; import static com.adioss.security.test.Utils.*; /* *...
package net.minecraft.client.renderer; import net.minecraft.util.BlockPos; public class DestroyBlockProgress { /** * entity ID of the player associated with this partially destroyed Block. Used to identify the Blocks in the client * Renderer, max 1 per player on a server */ private final int mi...
package org.opencb.opencga.catalog.managers; import org.apache.commons.lang3.StringUtils; import org.opencb.commons.datastore.core.ObjectMap; import org.opencb.commons.datastore.core.Query; import org.opencb.commons.datastore.core.QueryOptions; import org.opencb.commons.datastore.core.QueryResult; import org.opencb.op...
package pro.taskana.monitor.rest.models; import java.time.Instant; import java.util.Arrays; import java.util.List; import org.springframework.hateoas.RepresentationModel; import pro.taskana.monitor.api.reports.Report; import pro.taskana.monitor.api.reports.row.SingleRow; /** EntityModel class for {@link Report}. */ ...
package com.github.csongradyp.badger.parser.trigger; import java.util.ArrayList; import java.util.List; import com.github.csongradyp.badger.domain.achievement.trigger.TimeTrigger; import com.github.csongradyp.badger.provider.date.DateProvider; import org.joda.time.LocalTime; public class TimeTriggerParser implements ...
package org.jasig.cas.support.openid.web.mvc; import junit.framework.TestCase; import org.openid4java.server.ServerManager; import org.springframework.mock.web.MockHttpServletRequest; import org.springframework.mock.web.MockHttpServletResponse; import javax.servlet.http.HttpServletResponse; import java.util.Map; /...
package com.intellij.openapi.roots.ui.configuration.projectRoot.daemon; import com.intellij.util.SmartList; import com.intellij.util.StringBuilderSpinAllocator; import com.intellij.xml.util.XmlStringUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Collections...
package com.micro.mvc; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Component; import org.springframework.util.StringUtils; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndVie...
package org.toba.habco.callout; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Properties; import org.adempiere.base.IColumnCallout; import org.compiere.model.CalloutEngine; import org.compiere.model.GridField; import org.compiere.model.GridTab; import org.compiere.util.Env; import org.t...
package bitmapbenchmarks.synth; import it.uniroma3.mat.extendedset.intset.ConciseSet; import java.text.DecimalFormat; import java.util.Arrays; import java.util.Iterator; import org.devbrat.util.WAHBitSet; import sparsebitmap.SparseBitmap; import com.googlecode.javaewah.EWAHCompressedBitmap; public class WhenBitmaps...
package io.quarkus.creator.phase.nativeimage; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import...
package com.suse.salt.netapi.examples; import com.suse.salt.netapi.AuthModule; import com.suse.salt.netapi.calls.modules.Grains; import com.suse.salt.netapi.calls.modules.Test; import com.suse.salt.netapi.client.SaltClient; import com.suse.salt.netapi.datatypes.target.Glob; import com.suse.salt.netapi.datatypes.target...
/* * Copyright Debezium Authors. * * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package io.debezium.examples.outbox.shipment.messagelog; import java.time.Instant; import java.util.UUID; import javax.persistence.Entity; import javax.persistenc...
/* * 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...
package ru.deysa.liquibase.ext.clickhouse.database; import liquibase.database.AbstractJdbcDatabase; import liquibase.database.DatabaseConnection; import liquibase.exception.DatabaseException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public cl...
package com.alipay.api.response; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.iservice.ccm.agent.modify response. * * @author auto create * @since 1.0, 2021-12-08 23:11:51 */ public class AlipayIserviceCcmAgentModifyResponse extends AlipayResponse { private static final long serialVersionUI...
package com.wyt.labinformationmanagementsystem.handler; import org.springframework.web.servlet.HandlerInterceptor; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * 登录检查 */ public class LoginHandlerInterceptor implements HandlerInterceptor { @Override public...
package com.rzdata.ps.controller.system; import com.rzdata.annotation.Log; import com.rzdata.common.constant.UserConstants; import com.rzdata.core.controller.BaseController; import com.rzdata.core.domain.AjaxResult; import com.rzdata.core.page.TableDataInfo; import com.rzdata.common.enums.BusinessType; import com.rzda...
/** * Copyright (c) 2011-2021, James Zhan 詹波 (jfinal@126.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...
/* * 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")...
/* * Copyright 2015 DuraSpace, 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...
package com.atguigu.gmall.sms.service; import com.baomidou.mybatisplus.extension.service.IService; import com.atguigu.gmall.common.bean.PageResultVo; import com.atguigu.gmall.common.bean.PageParamVo; import com.atguigu.gmall.sms.entity.HomeAdvEntity; import java.util.Map; /** * 首页轮播广告 * * @author kjj * @email kj...
package com.fasterxml.jackson.databind.convert; import java.util.*; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.*; import com.fasterxml.jackson.databind.cfg.CoercionAction; import com.fasterxml.jackson.databind.cfg.CoercionInputShape; public class CoerceContainersTest...
/* * 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 ...
/* * Created by qingyou.ren on 2019/03/04. * Copyright 2015-2021 Sensors 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...
import javax.swing.JOptionPane; /* * 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. */ /** * * @author luiz.teixeira */ public class Exercicio1 extends javax.swing.JFrame { /** ...
/** * Copyright 2016 Pascal * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v7/enums/campaign_experiment_traffic_split_type.proto package com.google.ads.googleads.v7.enums; public final class CampaignExperimentTrafficSplitTypeProto { private CampaignExperimentTrafficSplitTypeProto() {} public stat...
package club.frozed.frozedsumo.utils.fanciful; import java.io.IOException; import java.util.HashMap; import java.util.Map; import com.google.gson.stream.JsonWriter; import org.bukkit.configuration.serialization.ConfigurationSerializable; /** * Represents a JSON string value. * Writes by this object will not write ...
/* * 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...
/* * Copyright (C) 2018 Nafundi * * 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 writ...
/* Copyright 2016 Goldman Sachs. 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, softw...
/* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not u...
package com.zwo.pls.modules.mem.mapper; import com.zwo.pls.modules.mem.domain.Member; import com.zwo.pls.modules.mem.domain.MemberCriteria; import org.apache.ibatis.annotations.Param; import tk.mybatis.mapper.common.Mapper; import java.util.List; public interface MemberMapper extends Mapper<Member> { }
/* * Copyright 2009 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) 2015-2016, Michael Yang 杨福海 (fuhai999@gmail.com). * * Licensed under the GNU Lesser General Public License (LGPL) ,Version 3.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.gnu.org/licenses/lgp...
/* Copyright 2018-2020 Accenture Technology 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 la...
package org.starrier.imperator.content.config.redis; import org.redisson.Redisson; import org.redisson.api.RedissonClient; import org.redisson.config.Config; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Conf...
package roito.afterthedrizzle.common.handler; import net.minecraft.data.DataGenerator; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.event.lifecycle.GatherDataEvent; import roito.afterthedrizzle.AfterTheDrizzle; import roito.afterthedrizz...
package org.prebid.server.bidder.eplanning; import com.fasterxml.jackson.core.type.TypeReference; import com.iab.openrtb.request.App; import com.iab.openrtb.request.Banner; import com.iab.openrtb.request.BidRequest; import com.iab.openrtb.request.Device; import com.iab.openrtb.request.Format; import com.iab.openrtb.re...
package dmax.plua; import org.junit.Before; import org.junit.Test; import java.util.ArrayList; import java.util.Collections; import dmax.plua.domain.Link; import static org.junit.Assert.*; /** * Created by Maxim Dybarsky | maxim.dybarskyy@gmail.com * on 23.01.15 at 18:00 */ public class SorterTest { DataSo...
/** * CadConsultaCadastro4Stub.java * * This file was auto-generated from WSDL * by the Apache Axis2 version: 1.7.9 Built on : Nov 16, 2018 (12:05:37 GMT) */ package br.com.nfe.ws.cadconsultacadastro; /* * CadConsultaCadastro4Stub java implementation */ public class CadConsultaCadastro4Stub extends org.apach...
/* * 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 ...
package com.firebase.uidemo.auth; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentStatePagerAdapter; public class PagerAdapter extends FragmentStatePagerAdapter{ int mNoOfTabs; public PagerAdapter (FragmentManager fm, int numberOfT...
/* * 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 ...
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000, 2016 Oracle and/or its affiliates. All rights reserved. * */ package com.sleepycat.collections.test.serial; import static org.junit.Assert.fail; import org.junit.After; import org.junit.Before; import org.junit.Test; import com....