text stringlengths 7 995k |
|---|
package org.ff4j.services.domain;
/*
* #%L
* ff4j-spring-services
* %%
* Copyright (C) 2013 - 2016 FF4J
* %%
* 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.apach... |
package com.mychaldea.api.material.user.total.repository;
import java.util.List;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
import com.mychal... |
/*******************************************************************************
* Copyright (c) 2004 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is availabl... |
/*
* Copyright 2002-2006 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 ay2021s1_cs2103_w16_3.finesse.model;
import static java.util.Objects.requireNonNull;
import java.util.List;
import ay2021s1_cs2103_w16_3.finesse.model.budget.MonthlyBudget;
import ay2021s1_cs2103_w16_3.finesse.model.frequent.FrequentExpense;
import ay2021s1_cs2103_w16_3.finesse.model.frequent.FrequentExpense... |
package hr.fer.tel.rassus.lab3;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient
public class HumidityMicroserviceApplication {
... |
package com.zhiweijia.nice;
import java.util.ArrayList;
public class DynamicEventList implements CalendarObjectList<ArrayList<DynamicEvent>, DynamicEvent> {
private static final long serialVersionUID = 1L;
private ArrayList<DynamicEvent> dynamicList; // an ArrayList to store the dynamic events after they are sor... |
package com.example.designPattern.structural_type.combination;
/**
* @author: zhoupb
* @Description: 组合模式测试类
* @since: version 1.0
*/
public class Client {
public static void main(String[] args) {
// 创建菜单树
MenuComponent menu1 = new Menu("菜单管理", 2);
menu1.add(new MenuItem("页面访问", 3));
... |
package cn.nicolite.huthelper.utils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
*
* Created by nicolite on 17-7-21.
*/
public class ValidateUtils {
// 判断一个字符串是否都为数字
public boolean isDigit(String strNum) {
return strNum.matches("[0-9]{1,}");
}
// 判断一个字符串是否都为数字
... |
/*
* Copyright 2016-2019 Crown Copyright
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... |
package nz.co.fortytwo.signalk.artemis.service;
import static nz.co.fortytwo.signalk.artemis.util.SignalKConstants.SK_TOKEN;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.file.NoSuchFileException;
import javax.ws.rs.Consumes;
import javax.ws.rs.CookieParam;
import javax.ws.rs.GET;... |
package co.edu.utp.misiontic2022.c2;
import java.util.ArrayList;
/**
* Tres en raya
*
*/
public class App{
public static void main( String[] args ){
System.out.println( "Bienvenido Tres en Raya" );
//Construir tablero
Tablero tablero = new Tablero();
//Mostrar antes de movimi... |
package com.xunlei.downloadprovider.member.payment.external;
import com.umeng.socialize.common.SocializeConstants;
import com.xunlei.downloadprovider.member.payment.a.j;
import com.xunlei.downloadprovider.member.payment.bean.PayConfigurationParam;
import com.xunlei.xiazaibao.sdk.XZBDevice;
import java.util.ArrayList;
... |
/**********************************************************************************
* $URL: https://source.sakaiproject.org/svn/trunk/sakai/admin-tools/su/src/java/org/sakaiproject/tool/su/SuTool.java $
* $Id: SuTool.java 5970 2006-02-15 03:07:19Z ggolden@umich.edu $
*************************************************... |
package com.tygron.pub.examples.player;
import java.rmi.UnexpectedException;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.scene.control.Alert;
import j... |
/**
* Copyright 2016 JustWayward Team
* <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
* <p>
* Unless required by applicable law... |
/*
* 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 benchmark.relational.util;
public class Math {
public static int pow(int a, int b) {
if (b == 0) return 1;
if (b == 1) return a;
if (b % 2 == 0) return pow ( a * a, b/2); //even a=(a^2)^b/2
else return a * pow ( a * a, b/2); //odd a=a*(a^2)^b/2
}
} |
/*
* Copyright 2002-2008 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... |
/*
* synopsys-detect
*
* Copyright (c) 2021 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.detect.configuration.connection;
import org.jetbrains.annotations.NotNull;... |
/*
* Copyright 2011 JBoss 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 ch.noebuerki.mindstormsdriver.commons;
import com.google.gson.annotations.SerializedName;
public enum StateCode {
@SerializedName(value = "13")
SERVER_CLOSING,
@SerializedName(value = "200")
CONNECTION_OK,
@SerializedName(value = "201")
RECORDING_ENDED,
@SerializedName(value = "418... |
/*
* 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... |
//
// ========================================================================
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available und... |
import org.checkerframework.dataflow.qual.Pure;
import org.checkerframework.framework.test.*;
import org.checkerframework.framework.testchecker.util.*;
/** Various tests for annotation aliasing. */
public class AnnotationAliasing {
String f1, f2, f3;
@Pure
int pure1() {
return 1;
}
@org.jmlspecs.annot... |
package com.example.board.service;
import com.example.board.dto.BoardDTO;
import com.example.board.dto.PageRequestDTO;
import com.example.board.dto.PageResultDTO;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTes... |
package com.boyarsky.apiservice.dto.measurement;
import lombok.Data;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
@Data
public class CreateGlucoseDto extends CreateMeasurementDto {
@NotNull
@Min(1)
@Max(100)
private Flo... |
package com.temelt.issuemanagement.repository;
import com.temelt.issuemanagement.entity.Issue;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* Created by temelt on 3.02.2019.
*/
public interface IssueRepository extends JpaRepository<Issue, Long> {
} |
/*
* Copyright 2019 IIT Software GmbH
*
* IIT Software GmbH licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless... |
/*******************************************************************************
* Copyright (c) 2015-2019 Skymind, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
*... |
package core;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
/**
* Created by huaijie on 10/24/15.
*/
public class SourceBuilder {
private static final String TAG = "SourceBuilder";
private static SourceBuilder ourInstance = new SourceBuild... |
package com.goldze.mvvmhabit.ui.viewpager.vm;
import android.support.annotation.NonNull;
import me.goldze.mvvmhabit.base.BaseViewModel;
import me.goldze.mvvmhabit.base.ItemViewModel;
import me.goldze.mvvmhabit.binding.command.BindingAction;
import me.goldze.mvvmhabit.binding.command.BindingCommand;
import me.goldze.m... |
/**
* Copyright (c) 2009-2014, Data Geekery GmbH (http://www.datageekery.com)
* All rights reserved.
*
* This work is dual-licensed
* - under the Apache Software License 2.0 (the "ASL")
* - under the jOOQ License and Maintenance Agreement (the "jOOQ License")
* ===================================================... |
/*
* Copyright (c) 2010-2012, Bruce Schubert. <bruce@emxsys.com>
* 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,... |
/*
* Copyright 2019 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 agr... |
/*
* Copyright 2013-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... |
package de.ollie.blueprints;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import org.junit.jupiter.... |
package cn.yiya.shiji.views;
import android.content.Context;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.view.MotionEvent;
/**
* Created by chenjian on 2015/11/18.
*/
public class DisableViewPage extends ViewPager {
private boolean enabled;
public DisableView... |
package com.tw.go.plugin.common.utils;
import com.tw.go.plugin.common.Context;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
/**
* Created by MarkusW on 10.11.2015.
*/
public class Environment {
public static Context getDefaultContext(Properties props... |
package org.ovirt.engine.api.restapi.types;
import org.ovirt.engine.api.model.DataCenter;
import org.ovirt.engine.api.model.Quota;
import org.ovirt.engine.core.compat.Guid;
public class QuotaMapper {
@Mapping(from = Quota.class, to = org.ovirt.engine.core.common.businessentities.Quota.class)
public static o... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... |
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2013 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
... |
package org.drip.optimization.necessary;
/*
* -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*/
/*!
* Copyright (C) 2017 Lakshmi Krishnamurthy
* Copyright (C) 2016 Lakshmi Krishnamurthy
*
* This file is part of DRIP, a free-software/open-source library for buy/side financial/tradin... |
package xyz.jpenilla.squaremap.sponge;
import cloud.commandframework.CommandManager;
import com.google.inject.Inject;
import java.lang.reflect.Field;
import java.nio.file.Path;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import net.kyori.adventure.audience... |
/*
* This file is a part of the SchemaSpy project (http://schemaspy.sourceforge.net).
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 John Currier
*
* SchemaSpy 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... |
package com.robotraccoons.debtnote.business;
import com.robotraccoons.debtnote.application.Services;
import com.robotraccoons.debtnote.objects.User;
import com.robotraccoons.debtnote.persistence.UserPersistence;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class AccessUsers... |
package com.beanu.l2_shareutil.share.instance;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import com.beanu.l2_shareutil.share.ShareImageObject;
import com.beanu.l2_shareutil.share.ShareListener;
/**
* Created by shaohui on 2016/11/18.
*/
public interface ShareInsta... |
/**
* Copyright 2017 FrogSquare. 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 applicab... |
package zg.entities;
/**
* Created by Leonardo on 04/08/2016.
*/
public abstract class Terrain {
public abstract Coordinate moveRover(Coordinate pos);
} |
/*
* Copyright © 2013-2018 camunda services GmbH and various authors (info@camunda.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... |
/*
* Copyright (C) 2015 Twitter, 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 mpern.sap.commerce.build.util;
import groovy.json.JsonOutput;
import groovy.json.JsonSlurper;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.Map;
import java.util.stream.Coll... |
package jburg.emitter;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import jburg.semantics.BURMSemantics;
import jburg.semantics.HostRoutine;
import org.stringtemplate.v4.AttributeRenderer;
import jburg.Closure;
import jburg.Operator;
import jburg.PatternMatcher;
i... |
package cz.pfreiberg.knparser.exporter.oracledatabase;
import java.sql.SQLException;
import java.sql.Types;
import java.util.List;
import cz.pfreiberg.knparser.ConnectionParameters;
import cz.pfreiberg.knparser.domain.prvkykatastralnimapy.SouradniceObrazu;
public class SouradniceObrazuOracleDatabaseJdbcExporter exte... |
package com.lushuitv.yewuds.module.entity;
import java.io.Serializable;
/**
* Description
* Created by weip
* Date on 2017/9/15.
*/
public class LISTBean implements Serializable{
//checked
private boolean isShow; // 是否显示CheckBox
private boolean isChecked; // 是否选中CheckBox
//data
private String... |
package com.examples.rest.controller;
import java.net.URI;
import java.util.Collection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody... |
/**
* Copyright 2018 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
package spark.template.mvel;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.mvel2.templates.CompiledTemplate;
import org.mvel2.templates.TemplateCompiler;
import org.mvel2.templates.TemplateRuntime;
import spark.ModelAndView;
import spark.TemplateEngine;
/**
* ... |
/*
* Copyright 2018 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
package org.orta.core.type.klass;
/*-
* #%L
* orta-core
* %%
* Copyright (C) 2019 https://github.com/rts-orta
* %%
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must reta... |
/*
Copyright (c) 2011+, HL7, Inc
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
list of conditions and the following ... |
package mage.abilities.effects.common;
import mage.MageObject;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.effects.OneShotEffect;
import mage.cards.Card;
import mage.constants.Outcome;
import mage.game.Game;
import mage.players.Player;
/**
*
* @author Styxo
*/
public class Shuf... |
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distribute... |
package net.lenords.yama.util.datamanager.model.events;
public abstract class EventListener<T> {
public abstract String getName();
public abstract void run(T contextInfo);
} |
/*
* 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... |
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... |
/*
* Copyright 2018-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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
///**
//* Copyright (C) 2018-2020
//* All rights reserved, Designed By www.yixiang.co
//* 注意:
//* 本软件为www.yixiang.co开发研制
//*/
//package co.yixiang.modules.security.service;
//
//import co.yixiang.exception.BadRequestException;
//import co.yixiang.modules.security.security.vo.JwtUser;
//import co.yixiang.modules.system.... |
package com.indix;
import org.testng.annotations.Factory;
public class TestFactory {
private int numberOfUsers = 1000;
@Factory
public Object[] factoryMethod() {
Object[] obj = new Object[numberOfUsers];
for (int i = 0; i < obj.length; i++) {
obj[i] = new RestTest();
}
return obj;
}
} |
package fr.univcotedazur.webots.polycreate.rewritingrules;
@SuppressWarnings("all")
public class WallFrontAspectWallFrontAspectProperties {
} |
package com.novadart.reactnativenfc.handler;
import android.content.Intent;
import android.nfc.NdefMessage;
import android.nfc.NfcAdapter;
import android.nfc.Tag;
import android.os.Parcelable;
import com.facebook.react.bridge.ReactApplicationContext;
import com.novadart.reactnativenfc.task.NdefProcessingTask;
/**
*... |
/**
* 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 ua.com.model.profile;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import lombok.*;
import ua.com.adapter.LocalDateDeserializer;
import ua.com.adapter.LocalDateSerializer;
import ua.com.model.User;
import javax.persistence.*;... |
/**
*
*/
package db.compare.dstruct;
import java.util.ArrayList;
import java.util.List;
import db.compare.json.JSONHelper;
import db.compare.json.JSONInterface;
/**
* @author Prajapati
*
*/
public class CompareDataInfo implements JSONInterface {
private List<String> keyFields;
private List<String> excludeF... |
package com.ibanity.apis.client.products.xs2a.models.links;
import lombok.*;
@Getter
@Builder
@EqualsAndHashCode
@ToString
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@NoArgsConstructor
public class PaymentInitiationRequestAuthorizationLinks {
private String nextRedirect;
} |
/*
* 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) 2015 Dell, 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... |
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.xpack.spatial.index.fielddata;
/**
* Enum for cap... |
/*******************************************************************************
* Copyright 2017 UIA
*
* 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.
... |
package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springfra... |
/*
* 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 n... |
package com.github.vitalibo.cfn.resource;
import com.amazonaws.services.lambda.runtime.Context;
import com.github.vitalibo.cfn.resource.model.ResourceProvisionRequest;
import com.github.vitalibo.cfn.resource.model.ResourceProvisionResponse;
public interface Facade {
ResourceProvisionResponse process(ResourceProv... |
package edu.uwlax.himal.api;
import edu.uwlax.himal.Himalayan;
import org.json.JSONArray;
import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.... |
/**
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditio... |
package com.xeiam.xchange.kraken.service.marketdata;
import static org.fest.assertions.api.Assertions.assertThat;
import org.junit.Test;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeFactory;
import com.xeiam.xchange.currency.CurrencyPair;
import com.xeiam.xchange.dto.marketdata.Ticker;
import ... |
package com.ruoyi.shzj.domain.DTO;
public class ExerciseDTO {
private String exeId;
private String subject;
private String choiceA;
private String choiceB;
private String choiceC;
private String choiceD;
private String judge;
@Override
public String toString() {
return "Exe... |
/**
* Copyright 2013 Netflix, 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 t... |
/**
* 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 on 15/10/2006
*
* Copyright 2005-2010 Ignis Software Tools Ltd. All rights reserved.
*/
package jsystem.framework.scenario;
public interface ScenarioTestListener {
public void startScenarioTest();
public void stopScenarioTest();
} |
package com.darshan.cursorlistviewscreenlet.view;
import android.app.Activity;
import android.database.Cursor;
import android.widget.AbsListView;
import com.liferay.mobile.screens.base.view.BaseViewModel;
/**
* Created by darshan on 6/8/15.
*/
public interface CursorListViewModel extends BaseViewModel {
void ... |
package com.ctrip.platform.dal.dao.configure;
import com.ctrip.framework.dal.cluster.client.config.ClusterConfigValidator;
import com.ctrip.framework.dal.cluster.client.config.ClusterConfigXMLParser;
import com.ctrip.platform.dal.dao.util.FileReader;
import org.junit.Assert;
import org.junit.Test;
public class Cluste... |
/*
* Copyright 2021 Michelin CERT (https://cert.michelin.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 ... |
package com.bergerkiller.bukkit.common.map.util;
import org.bukkit.entity.ItemFrame;
import com.bergerkiller.bukkit.common.map.binding.ItemFrameInfo;
/**
* Interface with all the information provided when a player
* looks at a map display.
*/
public interface IMapLookPosition {
/**
* Gets the ItemFrame ... |
package com.yanshiqian.blogservice.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok... |
package com.campus.service.impl;
import com.campus.service.ImageService;
import com.campus.model.entity.Image;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @author JYC
*/
@Service
public class ImageServiceImpl implements ImageService {
@Override
public int insert(Image record... |
/*
* Copyright 2012-2014 Dan Cioca
*
* 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 i... |
/*******************************************************************************
* Copyright (c) 2004, 2005 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is av... |
/****************************************************************************
**
** Copyright © 1992-2014 Cisco and/or its affiliates. All rights reserved.
** All rights reserved.
**
** $CISCO_BEGIN_LICENSE:APACHE$
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file excep... |
package gnu.lists;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
/* loaded from: classes.dex */
public abstract class ByteVector extends SimpleVector implements Externalizable, Comparable {
protected static byte[] empty = new byte[0];
byte[... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.