text stringlengths 7 995k |
|---|
package org.gradle.test.performance.mediummonolithicjavaproject.p137;
import org.junit.Test;
import static org.junit.Assert.*;
public class Test2751 {
Production2751 objectUnderTest = new Production2751();
@Test
public void testProperty0() {
String value = "value";
objectUnderTest.... |
package com.example.android.quakereport;
import android.content.AsyncTaskLoader;
import android.content.Context;
import java.util.List;
/**
* Created by nitish on 21-04-2017.
*/
public class EarthquakeLoader extends AsyncTaskLoader<List<Earthquake>>{
/** Tag for log messages */
private static final Stri... |
/**
* This software was developed and / or modified by Raytheon Company,
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
*
* U.S. EXPORT CONTROLLED TECHNICAL DATA
* This software product contains export-restricted data whose
* export/transfer/disclosure is restricted by U.S. law. Dissemination
... |
package com.huadi.itmp.common.vo;
import lombok.Data;
/**
* 字段错误,前端传过来的值可能通过不了校验规则,这时候可以把出错的字段和错误信息封装成FieldError对象
* @author meteor
*/
@Data
public class FieldError {
/**
* 出错的字段名称
*/
private String field;
/**
* 错误信息
*/
private String errMsg;
public FieldError(String fiel... |
package leetcode.lc006_zigzag_conversion;
/**
* https://leetcode.com/problems/zigzag-conversion/
* #medium
*/
public final class LC006ZigZagConversion {
public String convert(final String s, final int numRows) {
if (s == null || numRows < 1) {
return null;
}
StringBuilder buf... |
package org.zstack.network.service.lb;
import org.zstack.header.query.ExpandedQueries;
import org.zstack.header.query.ExpandedQuery;
import org.zstack.header.query.ExpandedQueryAlias;
import org.zstack.header.query.ExpandedQueryAliases;
import org.zstack.header.search.Inventory;
import org.zstack.header.acl.AccessCont... |
//,temp,JmsTransactionTestSupport.java,270,308,temp,JmsTransactionTestSupport.java,195,232
//,3
public class xxx {
public void testSendSessionClose() throws Exception {
Message[] outbound = new Message[] {session.createTextMessage("First Message"), session.createTextMessage("Second Message")};
// s... |
package br.com.am.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import br.com.am.conexao.Conexao;
import br.com.am.entities.Aluno;
import br.com.am.entities.Disciplina;
import br.com.am.entities.Materia;
/**
* Esta c... |
/*******************************************************************************
* Copyright (c) 2013, Daniel Murphy
* 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 ... |
/*********************************************************************************
* *
* The MIT License (MIT) *
* ... |
/*
* Copyright 2008-2013 Hippo B.V. (http://www.onehippo.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 ... |
/*
* Copyright 2020-2022 Fraunhofer Institute for Software and Systems Engineering
*
* 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
*
... |
public class FloggerTest {
private static final com.google.common.flogger.FluentLogger LOGGER1 = com.google.common.flogger.FluentLogger.forEnclosingClass();
public void logSomething(){
LOGGER1.atInfo().log("Hello World!");
}
public static void main(String[] args) {
LOGGER1.atInfo().log("Test");
n... |
package fr.free.nrw.commons.bookmarks;
import android.content.Context;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.FrameLayout;
import androidx.annotation.NonNull... |
package com.github.zengfr.conuniframework.cloud.auth.config;
import org.springframework.security.oauth2.provider.*;
import org.springframework.security.oauth2.provider.token.AbstractTokenGranter;
import org.springframework.security.oauth2.provider.token.AuthorizationServerTokenServices;
import java.util.LinkedHashMap... |
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable la... |
package com.atguigu.gmall.sms.service.impl;
import com.atguigu.gmall.sms.entity.SkuFullReductionEntity;
import com.atguigu.gmall.sms.entity.SkuLadderEntity;
import com.atguigu.gmall.sms.mapper.SkuFullReductionMapper;
import com.atguigu.gmall.sms.mapper.SkuLadderMapper;
import com.atguigu.gmall.sms.vo.ItemSaleVo;
impor... |
import java.util.*;
class KSwaps{
static String max;
static void findMaximumNum(char[] str,int k)
{
if (k == 0)
return;
int n = str.length;
for (int i = 0; i < n - 1; i++)
{
for (int j = i + 1; j < n; j++)
{
if (str[i] < str[j])
{
char t = str[i];
str[i] = str[j];
str[j] = t;
if (String.valueOf(str).compar... |
package com.zuofa.summer.adapter;
import android.content.Context;
import android.graphics.Bitmap;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import com.bumptech.glide.Gli... |
/*
* Licensed to Elastic Search and Shay Banon under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Elastic Search licenses this
* file to you under the Apache License, Version 2.0 (the
* "License"); you m... |
package com.osystem.mall.coupon.controller;
import java.util.Arrays;
import java.util.Map;
//import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.ann... |
/*
* Copyright 2021 Dominik Kopczynski, Nils Hoffmann.
*
* 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 appl... |
/*******************************************************************************
*
* Copyright FUJITSU LIMITED 2017
*
* Author: weiser ... |
package cn.carbs.android.gregorianlunarcalendar;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 +... |
/**
*
* Class Primitive$Factory$Class.java
*
* Generated by KMFStudio at 29 July 2003 10:22:55
* Visit http://www.cs.ukc.ac.uk/kmf
*
*/
package uk.ac.ukc.cs.kmf.kmfstudio.uml.Foundation.Core;
import uk.ac.ukc.cs.kmf.kmfstudio.uml.UmlFactory$Class;
import uk.ac.ukc.cs.kmf.kmfstudio.uml.UmlVisitor;
import uk.... |
/**
* JBoss, Home of Professional Open Source.
* Copyright 2014-2019 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* 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... |
package br.ufla.lemaf.ti.lemaf4j.common.messaging;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.Locale;
import java.util.ResourceBundle;
import static org.junit.Assert.assertEquals;
public class ResourceBundleMessageProducerTest {
private ResourceBundleMessageProduce... |
package com.study.service.bus.imp;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.study.constant.SystemConstant;
import com.study.mapper.bus.CarMapper;
import com.study.mapper.bus.CheckMapper;
import com.study.mapper.bus.CustomerMapper;
import com.study.mapper.bus.RentMapper;
im... |
package ru.mousecray.mousecore.api.asm.event;
import net.minecraft.launchwrapper.LaunchClassLoader;
import org.apache.commons.lang3.tuple.Triple;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import ru.mousecray.mousecore.api.asm.MinecraftCla... |
package me.gopro336.zenith.asm.mixin.loader;
import java.util.Map;
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;
import org.spongepowered.asm.launch.MixinBootstrap;
import org.spongepowered.asm.mixin.MixinEnvironment;
import org.spongepowered.asm.mixin.Mixins;
//public class MixinLoader implements IFML... |
/**
* 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... |
/*
* Marketing API
* Marketing API
*
* OpenAPI spec version: 1.3
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.tencent.ads.model;
import com.google.gson.Gson;
import com.go... |
/*
Copyright 2017 Immutables Authors and 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
Unless required by applicable... |
package tetrismina.client;
import java.net.InetSocketAddress;
import org.apache.mina.core.RuntimeIoException;
import org.apache.mina.core.future.ConnectFuture;
import org.apache.mina.core.service.IoHandler;
import org.apache.mina.core.session.IoSession;
import org.apache.mina.filter.codec.ProtocolCodecFilter;
import ... |
package module666packageJava0;
import java.lang.Integer;
public class Foo252 {
Integer int0;
Integer int1;
public void foo0() {
new module666packageJava0.Foo251().foo13();
}
public void foo1() {
foo0();
}
public void foo2() {
foo1();
}
public void foo3() {
foo2();
}
public ... |
package org.semanticweb.yars.nx.file;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.util.Iterator;
import org.semanticweb.yars.nx.Node;
import org.semanticweb.yars.nx.parser.ParseException;
import org.semanticweb.yars2.rdfxml.RDFXMLParser;
/**
* Class which imp... |
/*******************************************************************************
* Copyright 2012 Danny Kunz
*
* 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.o... |
package net.seppuku.event.player;
import net.seppuku.event.EventCancellable;
/**
* Author Seth
* 4/7/2019 @ 3:07 PM.
*/
public class EventExtendedReach extends EventCancellable {
} |
begin_unit|revision:0.9.5;language:Java;cregit-version:0.0.1
begin_comment
comment|/* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at * http://creativecommons.org/publicdomain/zero/1.0/ */
end_comment
begin_comment
comment|/* * So... |
/*
* 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
* distribut... |
/*
* Copyright 2002-2004 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.wcy.gulimall.product.dao;
import com.wcy.gulimall.product.entity.SpuInfoEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
/**
* spu信息
*
* @author wangchunyu
* @email wangchunyu@gmail.com
* @date 2021-04-16 21:38:47
*/
@Mapper
public interfa... |
package com.graly.alm.panel;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.graphics.Color;
import com.graly.alm.model.AlarmPanelMessage;
import com.graly.framework.base.application.Activator;
import com.graly.framework.base.ui.util.PropertyUtil;
import com.graly.framework.base.ui.views.Lis... |
package com.mygcc.api;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.test.JerseyTest;
import org.glassfish.jersey.test.TestProperties;
import org.junit.Test;
import org.eclipse.jetty.http.HttpStatus;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.DefaultServle... |
/*
* 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.zhaolu.study.netty;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
public class DiscardServerHandler extends ChannelInboundHandlerAdapter {
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg... |
/*
* This file is part of the DITA Open Toolkit project.
*
* Copyright 2016 Jarno Elovirta
*
* See the accompanying LICENSE file for applicable license.
*/
package org.dita.dost.module.reader;
import org.dita.dost.exception.DITAOTException;
import org.dita.dost.exception.DITAOTXMLErrorHandler;
import org.dita.... |
package b.j.a.c.b0;
public abstract class m {
public static final Object a = new Object();
} |
package com.stratagile.qlink;
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 void a... |
package com.devlogger.post.model;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author swop4a
* @since 16/05/2018 19:03
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class Comment {
private String auth... |
/*
* 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 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 regardi... |
/*
* Copyright 2015 Transmogrify 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://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... |
package com.zdx.serialportlibrary;
import java.io.File;
import java.io.FileDescriptor;
import java.io.IOException;
public class SerialPort {
static {
System.loadLibrary("SerialPort");
}
private static final String TAG = SerialPort.class.getSimpleName();
/**
* 文件设置最高权限 777 可读 可写 可执行
... |
/*
* Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... |
package com.kokaja.setl;
import com.kokaja.setl.load.CSVLoader;
/**
* The type Loader error handler.
*/
public class LoaderErrorHandler implements ErrorHandler {
private final Loader loader;
// Constructors
/**
* Instantiates a new Loader error handler.
*
* @throws LoaderException the ... |
package com.sequenceiq.environment.environment.flow.deletion;
import static com.sequenceiq.cloudbreak.util.NameUtil.generateArchiveName;
import static com.sequenceiq.environment.environment.flow.deletion.event.EnvDeleteHandlerSelectors.DELETE_CLUSTER_DEFINITION_EVENT;
import static com.sequenceiq.environment.environme... |
/*
* Copyright (c) 2020 Richard Hauswald - https://quantummaid.de/.
*
* 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
* ... |
/*
* 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 ... |
/*
* 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 ... |
// File generated from our OpenAPI spec
package com.jaguar.model;
import com.google.gson.annotations.SerializedName;
import com.jaguar.net.ApiResource;
import java.util.Map;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public class ... |
/*
* Copyright 2020 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.tazine.third.jedis;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
/**
* Jedis: 官方首选的 Java 客户端开发包
*
* @author frank
* @date 2018/01/24
*/
public class JedisDemo {
public static void main(String[] args) {
jedisSingleton(... |
package santander.dio.personapi.utils;
import santander.dio.personapi.dto.request.PhoneDTO;
import santander.dio.personapi.entity.Phone;
import santander.dio.personapi.enums.PhoneType;
public class PhoneUtils {
private static final String PHONE_NUMBER = "1199999-9999";
private static final PhoneType PHONE_TY... |
package org.sagebionetworks.bridge.models.accounts;
import java.util.Objects;
import org.sagebionetworks.bridge.json.DateTimeToLongDeserializer;
import org.sagebionetworks.bridge.json.DateTimeToLongSerializer;
import org.sagebionetworks.bridge.json.DateTimeToPrimitiveLongDeserializer;
import org.sagebionetworks.bridg... |
package com.neo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
impor... |
/*
* Copyright (c) 2008-2019, 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 ... |
/*
* Copyright 2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
/**
* Copyright © 2018 thinkis All rights reserved.
*/
package com.thinkis.common.web;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.ckfinder.connector.ConnectorServlet;
import com.thin... |
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 券的说明条款
*
* @author auto create
* @since 1.0, 2018-01-22 16:28:56
*/
public class InteligentClauseTerm extends Alip... |
package org.hzero.boot.message;
import java.util.*;
import java.util.stream.Collectors;
import org.hzero.boot.message.config.MessageClientProperties;
import org.hzero.boot.message.constant.HmsgBootConstant;
import org.hzero.boot.message.constant.WebSocketConstant;
import org.hzero.boot.message.dto.NoticeDTO;
import o... |
package com.jaxwallet.app.viewmodel;
import android.app.Activity;
import androidx.lifecycle.LiveData;
import androidx.lifecycle.MutableLiveData;
import com.jaxwallet.app.C;
import com.jaxwallet.app.entity.AnalyticsProperties;
import com.jaxwallet.app.entity.ErrorEnvelope;
import com.jaxwallet.app.entity.ImportWallet... |
/*
* Copyright 2021 IBM 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 law or agreed... |
/*
* Copyright 2006-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... |
package database;
/**
* Contains the final result of a game session.
*/
public class GameResultData {
// Members
private int mPlayerId;
private int mScore;
private boolean mDisconnected;
/**
* Constructor.
* @param playerId The ID of the player.
* @param score The player's score.
* @param disconnected... |
package com.lielamar.auth.bukkit.commands.subcommands;
import com.lielamar.auth.bukkit.TwoFactorAuthentication;
import com.lielamar.auth.bukkit.events.PlayerFailedAuthenticationEvent;
import com.lielamar.auth.shared.handlers.MessageHandler;
import com.lielamar.auth.shared.utils.Constants;
import com.lielamar.lielsutil... |
package ml;
import util.Util;
import weka.classifiers.functions.Logistic;
public class LogisticRegressionAlg implements MLAlgorithm{
@Override
public void trainEvaluate(){
Logistic classifier = new Logistic();
Util.trainEval(classifier);
}
} |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package control;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.logging.Level;
im... |
/**
* Copyright (c) 2013-2018, jcabi.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: 1) Redistributions of source code must retain the above
* copyright notice, this list of condition... |
package com.canemreayar.foreignexchange.exception;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;
import org.springframework.http.HttpStatus;
import java.time.LocalDateTime;
@Getter
@Setter
public class ForeignExchangeApiError {
private HttpStatus status;
@J... |
package org.stjs.generator.writer.typeDesc;
import org.stjs.javascript.Date;
import org.stjs.javascript.Map;
public class TypeDesc5 {
public Map<String, Date> x;
} |
// The MIT License (MIT)
//
// Copyright (c) 2018 - Present Onshape Inc.
//
// 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
//... |
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
package org.elasticsearch.xpack.ml.job.config;
import org.elastics... |
/*
* This file is part of LuckPerms, licensed under the MIT License.
*
* Copyright (c) lucko (Luck) <luck@lucko.me>
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* ... |
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0-SNAPSHOT
// See <a href="https://jaxb.java.net/">https://jaxb.java.net/</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: ... |
/**
* Spring's core transaction management APIs (independent of any specific transaction
* management system); an exception hierarchy for Spring's transaction infrastructure;
* and transaction manager, definition, and status interfaces.
*/
@NonNullApi
@NonNullFields
package org.springframework.transaction;
import ... |
package com.itmcs.roo.mirisk.dta;
import org.springframework.roo.addon.javabean.annotations.RooEquals;
import org.springframework.roo.addon.javabean.annotations.RooJavaBean;
import org.springframework.roo.addon.javabean.annotations.RooToString;
import org.springframework.roo.addon.jpa.annotations.entity.RooJpaEntity;
i... |
/*
* Copyright 2018-present Open Networking Foundation
*
* 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 appli... |
package org.apache.fop.render.ps;
import org.apache.fop.events.EventBroadcaster;
import org.apache.fop.events.EventProducer;
public interface PSEventProducer extends EventProducer {
void postscriptDictionaryParseError(Object var1, String var2, Exception var3);
public static class Provider {
public static... |
package org.web3j.platon.bean;
import com.alibaba.fastjson.annotation.JSONField;
import java.math.BigInteger;
public class Delegation {
/**
* 委托人的账户地址
*/
@JSONField(name = "Addr")
private String delegateAddress;
/**
* 验证人的节点Id
*/
@JSONField(name = "NodeId")
private String... |
package datawave.ingest.data.tokenize;
/**
* 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,... |
/*
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 applicable law or agreed to in ... |
/*
Copyright (C) 2005 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL
as it is applied to this softw... |
package id.luthfisolahudin.smkn4.pbo.todolist.cli.controller;
import id.luthfisolahudin.smkn4.pbo.todolist.cli.view.error.InputInvalid;
import id.luthfisolahudin.smkn4.pbo.todolist.cli.view.error.TodoIdNotFound;
import id.luthfisolahudin.smkn4.pbo.todolist.cli.view.error.TodoNotDeleted;
import id.luthfisolahudin.smkn4... |
package org.jboss.resteasy.test.form.resource;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.annotation.WebFilter;
import java.io.IOException;
import java.util.Map;
@... |
/* 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
* distribut... |
/*
* 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 2014 Etong Tech. Ltd. All rights reserved.
* distributed with this file and available online at
* http://www.etong.com/
*/
package com.etong.order.common.hessian;
import java.util.Map;
import com.etong.commons.command.Result;
import com.etong.commons.page.Page;
import com.etong.order.common.bean.Qu... |
//Dstl (c) Crown Copyright 2017
package uk.gov.dstl.baleen.annotators.regex;
import static org.junit.Assert.assertEquals;
import org.apache.uima.fit.util.JCasUtil;
import org.junit.Test;
import uk.gov.dstl.baleen.annotators.regex.DateTime;
import uk.gov.dstl.baleen.annotators.testing.AbstractAnnotatorTest;
import uk... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.