text stringlengths 7 995k |
|---|
package de.polocloud.api.pool;
import java.io.Serializable;
public interface Syncable<V> extends Serializable {
/**
* Updates the current object
* from cache and returns same type object
*
* @return object from cache
*/
V sync();
} |
package com.shwootide.metabolictreat.fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import com.afollestad.materialdi... |
package com.yatatsu.fieldschema.processor_room;
import javax.lang.model.element.AnnotationMirror;
import javax.lang.model.element.AnnotationValue;
import javax.lang.model.element.Element;
import javax.lang.model.element.ExecutableElement;
import java.util.Set;
public class FieldSchemaHolder {
private final String ... |
package tech.airacoon.visualgo.pojo;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* @author airacoon(li.guiyang @ hotmail.com)
* 问题的详细部分
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class DetailAnswer extends SimpleAnswer {
private Account account;
} |
package application;
import java.util.ArrayList;
import javafx.scene.paint.Color;
public class DrawCircle {
private ArrayList<Double> points;
private double radius;
private int stroke;
private Color color;
private double centerX, centerY;
public DrawCircle(double radius, int stroke, Color color, double c... |
// --------------------------------------------------------------------------------
// Copyright 2002-2022 Echo Three, 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
//
// http:/... |
/*
* 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... |
package com.lr.ioc.annotation;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface FactoryMethod {
} |
package com.adyt.anima.security;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties(prefix = "anima.security")
@Data
public class SecurityConfiguration {
private Strin... |
package ma.wafa.cream.repository;
import java.util.List;
import ma.wafa.cream.domain.Agent;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* Spring Data JPA repository for the Agent entity.
*/
public interface AgentRepository extends JpaRepository<Agent, String> {
List<Agent> findByManagerC... |
/*
* 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) 2014 The Android Open Source Project
* Copyright (c) 1996, 2013, 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 Publi... |
// ============================================================================
//
// Copyright (C) 2006-2015 Talend Inc. - www.talend.com
//
// This source code is available under agreement available at
// %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt
//
// You should have receiv... |
package cn.cnic.schedule;
import cn.cnic.base.utils.LoggerUtil;
import cn.cnic.base.utils.SpringContextUtil;
import cn.cnic.common.Eunm.RunModeType;
import cn.cnic.common.Eunm.ScheduleState;
import cn.cnic.common.executor.ServicesExecutor;
import cn.cnic.component.process.entity.Process;
import cn.cnic.component.proce... |
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* 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... |
import java.util.List;
import java.util.Collection;
class BuilderSingularLists<T> {
private List<T> children;
private Collection<? extends Number> scarves;
@SuppressWarnings("all")
private List rawList;
@java.lang.SuppressWarnings("all")
BuilderSingularLists(final List<T> children, final Collection<? extends Numb... |
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) annotate safe
package com.bumptech.glide.annotation.compiler;
public class GlideIndexer_GlideModule_com_bumptech_glide_integration_okhttp3_OkHttpLibraryGlideModule
{
... |
/*
* Copyright 2015 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 applica... |
package nl.mycompany.webapp.event;
import org.activiti.engine.delegate.event.ActivitiEvent;
public interface ActivitiEventSubscriber {
public void onEvent(ActivitiEvent event);
} |
/**
* Copyright 2009-2019 PrimeTek.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
package io.opentracing.contrib.jaxrs2.itest.common;
import static org.awaitility.Awaitility.await;
import io.opentracing.contrib.jaxrs2.itest.common.rest.TestHandler;
import io.opentracing.contrib.jaxrs2.server.OperationNameProvider.ClassNameOperationName;
import io.opentracing.contrib.jaxrs2.server.ServerTracingDyna... |
package com.chieveke.arms.utils;
import android.content.Context;
import android.os.Handler;
import android.os.Looper;
import android.support.annotation.StringRes;
import android.support.v7.widget.AppCompatTextView;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Toast;
import com.c... |
package com.example.playaudiotest;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public v... |
/**
*
*/
package com.thinkbiganalytics.metadata.modeshape.versioning;
/*-
* #%L
* kylo-metadata-modeshape
* %%
* Copyright (C) 2017 ThinkBig Analytics
* %%
* 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 ... |
/*
* AP(r) Computer Science GridWorld Case Study:
* Copyright(c) 2002-2006 College Entrance Examination Board
* (http://www.collegeboard.com).
*
* This code is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundatio... |
/*
* Copyright (c) 2013, 2020, 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 may ... |
package com.n0texpecterr0r.base.component.lifecycle;
/**
* 在Lifecycle与组件绑定时调用
* Created by Albert on 18/7/13.
*/
public interface LifecycleAttachObserver {
void onLifecycleAttach();
} |
package com.thoughtbot.expandablerecyclerview.sample.singlecheck;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import ... |
package org.camsrobotics.frc2016;
import org.camsrobotics.frc2016.subsystems.Shooter;
import com.ctre.CANTalon;
import edu.wpi.first.wpilibj.networktables.NetworkTable;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
/**
* NetworkTables Vision Adapter
*
* @author Mike
*
*/
public class Vision {
pr... |
/**
* Licensed to Apereo under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Apereo licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file
* except in ... |
/*
* Copyright 2021 Haulmont.
*
* 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 me.xdrop.jrand.data;
import me.xdrop.jrand.model.location.*;
import me.xdrop.jrand.model.person.Prefix;
import me.xdrop.jrand.model.person.PrefixMapper;
public class Assets {
public static AssetDescriptor<City> CITIES = new AssetDescriptor<>("cities.txt", new CityMapper(), null, new CityMapper());
pu... |
/*
* Copyright © 2021-present Arcade Data Ltd (info@arcadedata.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 requ... |
/*
* 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 com.capitalone.dashboard.rest;
import static org.mockito.Mockito.when;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvc... |
package com.weichu.mdesigner.api.controller;
import java.util.Date;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.RequestBody;
import org.sp... |
package com.yin.springboot.weixin.pay;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootWeixinPayApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootWeix... |
/*
* 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.freelycar.saas.project.repository;
import com.freelycar.saas.project.entity.WxUserInfo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import java.sql.Timestamp;
import java.util.List;
import java.util.Set;
/**
* @author tangwei
* @da... |
package com.specmate.cause_effect_patterns.parse.wrapper;
public class BinaryMatchResultTreeNode extends MatchResultTreeNode {
private MatchResultTreeNode left;
private MatchResultTreeNode right;
private RuleType type;
public BinaryMatchResultTreeNode(MatchResultTreeNode left, MatchResultTreeNode right, RuleType... |
package pl.konczak.tries.org.hl7.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for adxp.houseNumberNumeric complex type.
*
* <p>The following schema fragment specifies the expected content contai... |
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.ui.jcef;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.util.Disposer;
import com.intellij.util.ObjectUtils;
import ... |
/* MutableComboBoxModel.java --
Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at you... |
package com.multi.thread.chapter4.section1.example2;
/**
* @Description
* @Author dongzonglei
* @Date 2018/12/18 下午8:25
*/
public class Run {
public static void main(String[] args) throws Exception {
MyService service = new MyService();
ThreadA a = new ThreadA(service);
a.setName("A");... |
/*
* Copyright 2000-2020 Vaadin 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 law or agreed to... |
package org.sba_research.demonstrator.iiotgateway.comm.protocols.modbus.requests;
public class ReadCoilsRequest implements ModbusRequest {
private final int address;
private final int quantity;
public ReadCoilsRequest(int address, int quantity) {
this.address = address;
this.quantity = qu... |
package org.zstack.sdk;
import java.util.HashMap;
import java.util.Map;
import org.zstack.sdk.*;
public class RecoverDataVolumeAction extends AbstractAction {
private static final HashMap<String, Parameter> parameterMap = new HashMap<>();
private static final HashMap<String, Parameter> nonAPIParameterMap = ... |
package com.redhat.training.domain;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity
public class Address implements Serializable {
private static final long serialVersionUID = 1L;
... |
package lee.t.code.str;
import org.junit.Assert;
import org.junit.Test;
/**
* 实现 strStr()
* 实现strStr()函数。
* <p>
* 给你两个字符串haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串出现的第一个位置(下标从 0 开始)。如果不存在,则返回 -1 。
* <p>
* <p>
* <p>
* 说明:
* <p>
* 当needle是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。
* <p>
* 对于本题而言,当needle是空字符串时我们... |
/*
* Copyright (c) 2012-2014, Luigi R. Viggiano
* All rights reserved.
*
* This software is distributable under the BSD license.
* See the terms of the BSD license in the documentation provided with this software.
*/
package org.aeonbits.owner.examples;
import org.aeonbits.owner.Config;
import org.aeonbits.owne... |
package jean.tcga;
import java.io.File;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.google.common.collect.Multimap;
import com.google.common.collect.TreeMultimap;
import jam.app.JamLogger;
import ja... |
package com.yyt.axios.vo;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
@Accessors(chain = true)
public class GoodsPageVO {
private lo... |
/*
* Copyright (c) 2016—2017 Andrei Tomashpolskiy and individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* ... |
/*
* Copyright 2021 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 io.quarkus.vertx.http.security;
import static org.hamcrest.Matchers.is;
import java.io.File;
import java.net.URL;
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.event.Observes;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import or... |
package rest.domain;
public class Vehicle implements Identifiable{
private int id;
private int year;
private String make;
private String model;
@Override
public Integer getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getYear() {
return year;
}
public void setYear(int... |
/* Copyright (c) 2011 Danish Maritime Authority.
*
* 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 nowotnik.m.tetris.tetromino;
import nowotnik.m.tetris.gui.Plansza;
/**
* Klasa sprawdzająca kolizje aktywnego klocka z otoczeniem.
* @see AktywnyKlocek
* @author Mikołaj Nowotnik
*/
public class Kolizja
{
NieaktwyneKlocki nK;
AktywnyKlocek aK;
/**
* Tworzy nowy obiekt spraw... |
// $Id: RenumberTool.java,v 1.2 2008/07/21 23:28:15 jim Exp $
package us.temerity.pipeline.plugin.RenumberTool.v2_2_1;
import java.awt.Component;
import java.awt.Dimension;
import java.util.TreeMap;
import java.util.TreeSet;
import javax.swing.*;
import us.temerity.pipeline.*;
import us.temerity.pipeline.ui.*;
/*-... |
/*
* 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.hjq.widget.layout;
import android.annotation.SuppressLint;
import android.content.Context;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import androidx.annotation.NonNull;
import androidx.viewpager.widget.PagerAdapter;
import androidx.viewpager.widget.Vi... |
/*
* Copyright 2012-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 com.chronosave.index.utils;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
public class MultivalueMap<K, V> extends LinkedHashMap<K, LinkedHashSet<V>> {
/**
*
*/
private static final long serialVersionUID = -8578758310281413814L;
public V add(final K key, final V value) {
if (!cont... |
/*
* ******************************************************************************
* Copyright 2016-2017 Spectra Logic Corporation. 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 Licens... |
package game_engine.components;
import game_engine.Component;
import game_engine.event.conditions.DataConditionable;
@DataConditionable
public class LivesComponent extends Component<Double>{
public LivesComponent(String arg) {
super(Double.parseDouble(arg));
}
} |
package com.fanxin.easeui.widget;
import android.app.Activity;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import andro... |
package com.hyd.dao.mate.swing;
import javax.swing.JFrame;
public abstract class InitializableJFrame extends JFrame {
} |
/*
* 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... |
/**
* Copyright (c) 2011-2016, 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... |
package com.jpattern.core.command;
import java.util.Iterator;
import java.util.List;
import java.util.Vector;
import com.jpattern.shared.result.IErrorMessage;
/**
*
* @author Francesco Cina'
*
* 27/feb/2011
*/
public class CommandResult extends ACommandResult {
private static final long serialVersionUID = 1... |
/*
Copyright 2020 The Kubernetes 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 agreed to in writing, softwar... |
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
package com.abin.lee.serialize.hessian;
import com.caucho.hessian.io.HessianInput;
import com.caucho.hessian.io.HessianOutput;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
/**
* Created by abin on 2018/4/15 17:32.
* serialize-svr
* com.abin.lee.serialize.h... |
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
package com.microsoft.tooling.msservices.helpers.azure.sdk;
import com.google.gson.Gson;
import com.google.gson.JsonArray;
import com.google.gson.JsonObje... |
package org.jkiss.dbeaver.ext.exasol.manager;
import org.jkiss.dbeaver.DBException;
import org.jkiss.dbeaver.ext.exasol.model.ExasolTable;
import org.jkiss.dbeaver.ext.exasol.model.ExasolTableForeignKey;
import org.jkiss.dbeaver.ext.exasol.tools.ExasolUtils;
import org.jkiss.dbeaver.model.DBConstants;
import org.jkiss... |
/**
* Copyright (C) 2010-2014 eBusiness Information, Excilys Group
*
* 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 ... |
/*
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
package com.boot.controller;
import com.boot.constant.ResultCode;
import com.boot.data.CommonResult;
import com.boot.enums.ResultConstant;
import com.boot.pojo.UserAuthority;
import com.boot.service.UserAuthorityService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereoty... |
/*
* 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 ... |
/**
* 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 2013-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. paascloud.net All Rights Reserved.
* 项目名称:附近有好吃的
* 类名称:EmailCodeProperties.java
* 创建人:兰龙斌
* 联系方式:llb7891@163.com
* 开源地址: https://github.com/NewlyLan/nearbyEat.git
*
*
*/
package com.paascloud.security.core.properties;
import lombok.Data;
/**
* The class Email code properties.
*
*... |
package com.zyw.horrarndoo.sdk.config;
/**
* Created by Horrarndoo on 2017/9/13.
* <p>
* 数据库全局常量
*/
public class DBConfig {
public static final String DB_NAME = "db_name_yizhi";
public static final String TABLE_ZHIHU = "table_zhihu";
public static final String TABLE_WANGYI = "table_top_news";
publ... |
package com.example.simpletodo;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import java.util.List;
// Adapter is r... |
package com.haulmont.cuba.gui.components;
import com.haulmont.chile.core.model.MetaClass;
import com.haulmont.cuba.core.app.LockService;
import com.haulmont.cuba.core.entity.Entity;
import com.haulmont.cuba.core.global.*;
import com.haulmont.cuba.gui.ComponentsHelper;
import com.haulmont.cuba.gui.components.actions.Cr... |
package org.synyx.urlaubsverwaltung.person.web;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.validation.Errors;
import org.synyx.urlaubsverwaltung.application.domain.Application;
import ... |
package java7.interfaces;
import java7model.Garrafa;
public interface Retornavel {
/*public static final*/ String FABRICANTE = "Coca-Cola";
void jogarFora();
Garrafa retornar();
} |
package com.hzy.customview.util;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.ColorMatrix;
import android.graphics.ColorMatrixColorFilter;
import android.graphics.Paint;
/**
* @author: wxj
* @date: 2021/5/31
* @description:
*/
public class ImageColorHelper {
/**
... |
package com.redhat.developers;
import java.util.List;
import javax.enterprise.context.ApplicationScoped;
import javax.naming.NamingException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Respon... |
package org.hl7.fhir.r5.context;
import java.io.File;
/*
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 t... |
/*
* Copyright 2015 Vicente Venegas (vicente@republik.ec)
*
* 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 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... |
package seedu.address.ui;
import static org.junit.Assert.assertEquals;
import java.util.ArrayList;
import org.junit.Before;
import org.junit.Test;
import guitests.guihandles.CommandBoxHandle;
import javafx.scene.input.KeyCode;
import seedu.address.logic.Logic;
import seedu.address.logic.LogicManager;
import seedu.a... |
/*
* ===========================================
* Java Pdf Extraction Decoding Access Library
* ===========================================
*
* Project Info: http://www.idrsolutions.com
* Help section for developers at http://www.idrsolutions.com/support/
*
* (C) Copyright 1997-2015 IDRsolutions and Contribut... |
package org.apache.fulcrum.security.model.dynamic.entity;
/*
* 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 und... |
package com.senzing.util;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import static org.junit.jupiter... |
package com.nbkelly.lib.newick;
import java.util.TreeMap;
import java.util.ArrayList;
import java.util.TreeSet;
import com.nbkelly.lib.DiGraph;
/**
* @author NB Kelly <N.B.Kelly@protonmail.com>
* @since Jun 03, 2020
* @last Mar 22, 2021
*
* Class representing a 'network', or collection of nodes forming a biject... |
package cn.edu.zju.planetweather.utils;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.preference.PreferenceManager;
/**
* Created by changhuiyuan on 15/8/4.
*/
public class LaunchUtil {
pr... |
package com.srx.xddmall.coupon.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.srx.common.utils.PageUtils;
import com.srx.xddmall.coupon.entity.CouponSpuRelationEntity;
import java.util.Map;
/**
* 优惠券与产品关联
*
* @author xdd
* @email 568273744@qq.com
* @date 2021-02-03 13:21:26
*/
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.