text stringlengths 7 995k |
|---|
package com.wave.user.dto.req;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
@Data
public class UserInfoUpdateReqDto {
@NotBlank
private String account;
@NotBlank
private String userName;
@NotBlank
private String mobileNo;
... |
package org.col.db.type2;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.ibatis.type.BaseTypeHandler;
import org.apache.ibatis.type.JdbcType;
import org.col.api.model.SimpleName;
import org.gbif.nameparser.api.Ran... |
/*
* Copyright (C) 2017-2018 Dremio Corporation
*
* 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 app.applicationtracker;
import android.content.Context;
import android.database.Cursor;
import android.graphics.Color;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CursorAdapter;
import android.widget.TextView;... |
/**
* Copyright 2009-2016 the original author or authors.
* <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 requir... |
package cn.geekhall.server.service;
import cn.geekhall.server.entity.Nation;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 服务类
* </p>
*
* @author yiny
* @since 2022-02-10
*/
public interface INationService extends IService<Nation> {
} |
package edu.ucsd.cse124;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
public class Account {
public Account(String handle) {
this.handle = handle;
this.following_accounts = new ArrayList<String>();
this.tweet_lists = new HashMap<Long, Tweet>();
this.... |
package uk.gov.pay.api.it.telephone;
import com.github.tomakehurst.wiremock.junit.WireMockClassRule;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.spotify.docker.client.exceptions.DockerException;
import io.dropwizard.testing.junit.DropwizardAppRule;
import io.restassured.response.Validat... |
/*******************************************************************************
* Copyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
... |
package cn.hutool.core.codec;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import cn.hutool.core.lang.Assert;
import cn.hutool.core.util.CharUtil;
import cn.hutool.core.util.StrUtil;
/**
* 莫尔斯电码的编码和解码实现<br>
* 参考:https://github.com/TakWolf/Java-MorseCoder
*
* @author looly, TakWolf
* @... |
package com.codingchili.webshoppe.model;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Robin on 2015-10-02.
*
* Used as a proxy as JSTL does not deal with generic list.
*/
public class AccountList {
private List<Account> accounts = new ArrayList<>();
public AccountList() {
}
... |
/**
* 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 org.jfree.data;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.jfree.chart.urls.StandardXYURLGenerator;
import org.jfree.chart.util.ParamChecks;
import org.jfree.data.general.Series;
import org.jfree.data.general.SeriesException;
import ... |
package com.marverenic.music.widget;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.support.annotation.Nullable;
import android.widget.RemoteViews;
import com.marverenic.music.R;
import com.marverenic.music.model.Song;
im... |
package com.jingpu.android.apersistance.realm.model;
import java.util.Date;
import io.realm.RealmObject;
import io.realm.annotations.PrimaryKey;
import io.realm.annotations.Required;
/**
* Created by Jing Pu on 2016/01/26.
*/
public class Orders extends RealmObject {
// property help us to keep data
@PrimaryKey... |
package net.minestom.server.entity.damage;
import net.minestom.server.chat.ColoredText;
import net.minestom.server.chat.RichMessage;
import net.minestom.server.data.Data;
import net.minestom.server.data.DataContainer;
import net.minestom.server.entity.Entity;
import net.minestom.server.entity.LivingEntity;
import net.... |
/*
* Copyright 2019 Arcus Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
package de.tudarmstadt.ukp.inception.htmleditor.statistic;
import de.tudarmstadt.ukp.clarin.webanno.model.Tag;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
public class StatisticValueModel implements IModel<... |
package com.wearapay.lightning.ui.fragment.release.presenter;
import android.content.Context;
import com.wearapay.lightning.LConsts;
import com.wearapay.lightning.base.mvp.BaseFragmentPresenter;
import com.wearapay.lightning.bean.BAppAutoDeploy;
import com.wearapay.lightning.net.ApiHelper;
import com.wearapay.lightnin... |
package com.ctrip.zeus.service.rule.impl;
import com.ctrip.zeus.exceptions.ValidationException;
import com.ctrip.zeus.model.model.Rule;
import com.ctrip.zeus.service.build.conf.ConfWriter;
import com.ctrip.zeus.service.model.common.RuleTargetType;
import com.ctrip.zeus.service.rule.AbstractRuleEngine;
import com.ctrip... |
package com.github.chenjianjx.srb4jfullsample.impl.support.beanvalidate;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
impor... |
package com.yeelight.service;
import com.yeelight.pojo.Category;
import com.yeelight.util.Page;
import java.util.List;
/**
* Created by Sheldon
* User: sheldon
* Date: 18-8-6
* Time: 上午10:11
*
* @author Sheldon Lee <xdlee110@gmail.com>
* @link https://www.yeelight.com
*/
public interface CategoryService {
... |
package controllers;
import java.util.*;
import java.util.stream.*;
import models.*;
import play.mvc.*;
import play.data.*;
import play.libs.*;
@With(DumpOnError.class)
@Secured.Auth(UserRole.ROLE_VIEW_JC)
public class Accounting extends Controller {
public Result transaction(Integer id) {
Transaction tr... |
package test.base.resource;
import java.io.IOException;
import java.nio.file.DirectoryNotEmptyException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.stream.Collectors;
import org.junit.jupiter.api.extension.ParameterResolutionException;
public class Temporary implements ResourceSupplier<Pa... |
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); y... |
package Designite.organic.metrics.calculators;
import Designite.organic.ast.visitors.MaxCallChainVisitor;
import Designite.organic.metrics.MetricName;
import org.eclipse.jdt.core.dom.ASTNode;
public class MaxCallChainCalculator extends MetricValueCalculator {
@Override
protected Double computeValue(ASTNode target... |
/**
* 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.team1699.server;
public class PressureMessage {
//TODO Extend super
//TODO Handle Message
} |
/**
* Copyright (c) 2013-2022 Contributors to the Eclipse Foundation
*
* <p> See the NOTICE file distributed with this work for additional information regarding copyright
* ownership. All rights reserved. This program and the accompanying materials are made available
* under the terms of the Apache License, Versio... |
/*
* 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 codes.biscuit.skyblockaddons.gui.buttons;
import codes.biscuit.skyblockaddons.SkyblockAddons;
import codes.biscuit.skyblockaddons.core.Feature;
import codes.biscuit.skyblockaddons.utils.nifty.ChatFormatting;
import lombok.Getter;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.ScaledReso... |
package ru.job4j.crudservlet;
import org.apache.log4j.Logger;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
/**
*... |
/*
* Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required ... |
package com.suzy.dubbo.comsumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ImportResource;
@SpringBootApplication
@ImportResource(locations="classpath:spring-application.xml")
public class Dubbo... |
package com.github.itora.util;
import java.util.Arrays;
import java.util.List;
import com.google.common.base.Splitter;
import com.google.common.io.BaseEncoding;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
public final class ByteArray {
private static f... |
package maru.ui.propertypages;
import maru.core.model.CoreModel;
import maru.core.model.ITimepoint;
import maru.core.utils.TimeUtils;
import maru.ui.model.UiTimepoint;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.layout.Gri... |
package com.ronz.community.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 自定义注解。
*
* 由于有一些方法需要登录之后才能访问,因此在访问这些方法之前,需要对用户的登录状态做检查
* 可以通过拦截器实现对登录状态做检查,但是拦截器怎么知道有哪些方法需要做检查呢?
* 可以通过自定义注... |
/**
* ESUP-Portail eCandidat - Copyright (c) 2016 ESUP-Portail consortium
*
*
* 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
*
... |
package com.google.ads.googleads.v6.services;
import static io.grpc.MethodDescriptor.generateFullMethodName;
import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
import static io.... |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v10/services/ad_group_criterion_service.proto
package com.google.ads.googleads.v10.services;
public final class AdGroupCriterionServiceProto {
private AdGroupCriterionServiceProto() {}
public static void registerAllExtensi... |
package org.apache.helix.filestore;
/*
* 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,... |
package pers.jay.wanandroid.mvp.presenter;
import android.app.Application;
import android.view.View;
import com.jess.arms.di.scope.FragmentScope;
import com.jess.arms.integration.AppManager;
import com.jess.arms.mvp.BasePresenter;
import com.jess.arms.http.imageloader.ImageLoader;
import com.jess.arms.utils.RxLifecyc... |
/**
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the Licens... |
/*
* 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 ... |
// VideoCaptureFeedback.java is auto generated by mojom_bindings_generator.py, do not edit
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file is autogenerated by:
// mojo/public/tools/bi... |
/*
* Copyright (c) 2015, Ali Afroozeh and Anastasia Izmaylova, Centrum Wiskunde & Informatica (CWI)
* All rights reserved.
*
* 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 mu... |
package org.dddframework.lang;
public interface BoundedContext {
} |
package com.google.bitcoin.bouncycastle.asn1;
import java.io.IOException;
/**
* DER VisibleString object.
*/
public class DERVisibleString
extends ASN1Object
implements DERString
{
String string;
/**
* return a Visible String from the passed in object.
*
* @exception IllegalArgument... |
/*
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*
*
*
*
*
*
* ASM: a very small and fast Java bytecode manipulation framework
* Copyright (c) 2000-2011 INRIA, France Telecom
* All rights reserved.
*
* Redistribution and ... |
package pattern.mediator.first;
/**
* 库存
*
* @author MayZhou
*/
public class Stock {
private static int COMPUTER_NUMBER = 100;
public void increase(int number) {
COMPUTER_NUMBER = COMPUTER_NUMBER + number;
System.out.println("库存数量为:" + COMPUTER_NUMBER);
}
public void decrease(int ... |
package com.flowid.refd.service;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.util.Arrays;
import javax.ws.rs.BadRequestException;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.NotFo... |
package com.salesmanager.core.business.modules.integration.payment.impl;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.inject.Inject;
import com.salesmanager.core.model.payments.*;
import org.apache.... |
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.frameworks.connectors.properties.beans;
import com.fasterxml.jackson.annotation.*;
import java.io.Serializable;
import java.util.UUID;
import static com.fasterxml.jackson.annotation.JsonAu... |
public class Test1 extends Parent1 {
public static int main() {
return x;
}
}
class Parent1 {
public static int x;
} |
/*
* 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 org.ibase4j.core.base;
/**
* @author ShenHuaJie
* @version 2016年5月20日 下午3:19:19
*/
public interface BaseProvider {
Parameter execute(Parameter parameter);
} |
package ru.job4j.autostorage.models;
/**
* Created on 10.05.2018.
*/
public class Car {
private int id;
private String carName;
private Gearbox gearbox;
private Transmission transmission;
private Engine engine;
public Car(String carName, Gearbox gearbox, Transmission transmission, Engine en... |
package com.ab.ablegoev3;
import anywheresoftware.b4a.BA.Author;
import anywheresoftware.b4a.BA.Hide;
import anywheresoftware.b4a.BA.ShortName;
import lejos.hardware.lcd.LCD;
import lejos.utility.Delay;
@Author("Alain Bailleul")
@ShortName("ABLLCD")
@Hide
public class ABLLCD {
public static final int SCREEN... |
package org.hl7.fhir.r4.model;
/*
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 notic... |
package xdean.rpc.util;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
public enum JSONUtil {
;
public static <T> T getObjectFromJSON(String json, C... |
package br.com.estacionamento;
public class CalculoCarga extends CalculoVeiculos {
double acrescimo;
//Entradas: Tempo, tempo de estadia em milissegundos;
//Hora: valor da hora do tipo do veiculo;
//Diaria: valor da diaria do tipo do veiculo;
// Mensal: valor do mensal do tipo do veiculo;
public void se... |
package ca.uhn.fhir.jpa.provider.r4;
import static ca.uhn.fhir.jpa.util.TestUtil.sleepAtLeast;
import static ca.uhn.fhir.jpa.util.TestUtil.sleepOneClick;
import static org.apache.commons.lang3.StringUtils.isNotBlank;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.contains;
imp... |
/*-
* ===========================================================================
* inference-basic
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Copyright (C) 2019 - 2022 Kapralov Sergey
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Permission i... |
/*
* Copyright 2013 Japplis.
*
* 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.qarts.tattool.core.domain.platform;
import ch.qarts.tattool.core.domain.command.descriptor.CommandDescriptor;
import lombok.Builder;
import lombok.Data;
import java.util.List;
@Data
@Builder
public class Platform {
private String id;
private String description;
private List<CommandDescripto... |
package com.byron.line.client;
import com.alibaba.fastjson.JSONObject;
import com.byron.line.common.domain.ResponseResult;
import com.byron.line.common.enums.SystemCodeEnum;
import com.byron.line.common.exception.IllegalOptaionException;
import com.byron.line.common.util.DateUtils;
import com.byron.line.common.util.Ht... |
/*
* This file is part of the L2JServer project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pr... |
package com.bakdata.conquery.models.query.queryplan.filter;
import java.util.Set;
import com.bakdata.conquery.models.concepts.filters.Filter;
import com.bakdata.conquery.models.datasets.Column;
import com.bakdata.conquery.models.events.Block;
import com.bakdata.conquery.models.identifiable.ids.specific.TableId;
impor... |
package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.eventloop.opmode.Disabled;
import com.qualcomm.robotcore.util.ElapsedTime;
@Autonomous(name = "DemoLinearOpMode", group = "6209")
@Disabled
public class DemoLinearOpMode extends BaseLinearO... |
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.monitor.implementation;
import com.microsoft.azu... |
package org.hisp.dhis.program.comparator;
/*
* Copyright (c) 2004-2010, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the... |
//,temp,StompAdvisoryTest.java,346,391,temp,StompAdvisoryTest.java,272,307
//,3
public class xxx {
@Test(timeout = 60000)
public void testStatisticsAdvisory() throws Exception {
Connection c = cf.createConnection("system", "manager");
c.start();
final Session session = c.createSession(fa... |
/**
* Implement a stack class using array.
*/
import java.util.NoSuchElementException;
public class ArrayStack {
private Object[] array;
private int size;
public ArrayStack(int capacity) {
array = new Object[capacity];
}
public void push(Object item) {
if (size == array.length) ... |
package no.nav.tps.forvalteren.service.command.exceptions;
public class PersonNotFoundException extends NotFoundException{
public PersonNotFoundException(String message) {
super(message);
}
} |
package com.jasongj.kafka.stream.serdes;
import java.io.IOException;
import java.util.Map;
import org.apache.kafka.common.errors.SerializationException;
import org.apache.kafka.common.serialization.Deserializer;
import com.fasterxml.jackson.databind.ObjectMapper;
/**
* This deserializer can deserialize any object ... |
package kr.dogfoot.hwplib.object.docinfo;
import kr.dogfoot.hwplib.object.docinfo.documentproperties.CaretPosition;
import kr.dogfoot.hwplib.object.docinfo.documentproperties.StartNumber;
/**
* 문서 속성를 나타내는 레코드
*
* @author neolord
*/
public class DocumentPropeties {
/**
* 구역 개수
*/
private int sec... |
/*
* Copyright © 2018 Ford Motor Company
* 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... |
/*
* 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.vladsch.flexmark.formatter.internal;
import com.vladsch.flexmark.ast.*;
import com.vladsch.flexmark.ast.util.ReferenceRepository;
import com.vladsch.flexmark.formatter.*;
import com.vladsch.flexmark.parser.ListOptions;
import com.vladsch.flexmark.parser.Parser;
import com.vladsch.flexmark.parser.ParserEmul... |
/*
* MIT License
*
* Copyright (c) 2022 MASES s.r.l.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, cop... |
/*
* MIT License
*
* Copyright (c) 2022 MASES s.r.l.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, cop... |
package codecanyon.grocery;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import and... |
package com.amitph.spring.dogs.service;
import com.amitph.spring.dogs.model.DogDto;
import com.amitph.spring.dogs.repo.Dog;
import com.amitph.spring.dogs.repo.MockDogProvider;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springfr... |
package egovframework.com.sts.ust.web;
import java.util.List;
import egovframework.com.cmm.ComDefaultCodeVO;
import egovframework.com.cmm.annotation.IncludedInfo;
import egovframework.com.cmm.service.EgovCmmUseService;
import egovframework.com.sts.com.StatsVO;
import egovframework.com.sts.ust.service.EgovUserStatsSer... |
package com.idea.absorbent.customers.models;
import com.idea.absorbent.customers.dto.CreateCustomerDto;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import javax.persistence.*;
@Entity
@Table(name = "Customers")
@Getter
@Setter
@NoArgsConstructor
public class Customer {
@Id
... |
/*
* Copyright (C) 2015 Sebastian Daschner, sebastian-daschner.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/LICENSE2.0
*
* Unless requi... |
/*
* Copyright 2017-2021 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
*
* Unles... |
/*
* Copyright 2017-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 cn.geekhall.server.service;
import cn.geekhall.server.entity.Employee;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 服务类
* </p>
*
* @author yiny
* @since 2022-02-10
*/
public interface IEmployeeService extends IService<Employee> {
} |
/*
* 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.vico.license.dao;
import com.vico.license.pojo.Hospital;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @ClassName: HospitalDao
* @Description: 医院信息Dao层
* @author: Liu.Dun
* @date: 2016年6月27日 下午8:45:17
*/
@Component
public in... |
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed u... |
/*
* Copyright 2022 Red Hat
*
* 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 ... |
//
// This file generated by rdl 1.5.0. Do not modify!
//
package com.yahoo.athenz.zts;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
import com.yahoo.rdl.*;
//
// ServiceIdentity - The representation of the service identity object.
//
public class ServiceIdentity {
public String nam... |
package seedu.inventory.ui;
import static java.time.Duration.ofMillis;
import static org.junit.Assert.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTimeoutPreemptively;
import static seedu.inventory.testutil.EventsUtil.postNow;
import static seedu.inventory.testutil.TypicalIndexes.INDEX_SECOND_ITE... |
/*
* Copyright (C) 2009-2020 Lightbend Inc. <https://www.lightbend.com>
*/
package play;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import com.typesafe.config.Config;
import play.api.inject.DefaultApplicationLifecycle... |
/**********************************************************************************
* $URL: $
* $Id: $
***********************************************************************************
*
* Author: Eric Jeney, jeney@rutgers.edu
*
* Copyright (c) 2010 Rutgers, the State University of New Jersey
*
* Licensed un... |
package org.vertexium.type;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class GeoRectTest {
@Test
public void testIntersects() {
GeoRect rect1 = new GeoRect(new GeoPoint(10, 0), new GeoPoint(0, 10));
GeoRect rect2 = new ... |
/**
*/
package Gtm.impl;
import Gtm.GtmPackage;
import Gtm.LegacyFareDetailMap;
import Gtm.LegacyFareDetailMaps;
import java.util.Collection;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEO... |
package com.nettops.helloworld.repository.user;
import com.nettops.helloworld.model.user.User;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface UserRepository extends CrudRepository<User, Long> {
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.