text stringlengths 7 995k |
|---|
package com.springWorkout.controller;
import com.springWorkout.domain.Click;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Scope;
import org.spring... |
package com.rajendarreddyj.spring.batch.job;
import org.springframework.stereotype.Controller;
import java.util.Date;
@Controller
public class QuartzClusterInfo {
public void printUserInfo() {
System.out.println("*** start " + new Date() + " *************");
System.out.println("*");
... |
/*
* 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 org.apache.cayenne.testdo.testmap.auto;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import org.apache.cayenne.BaseDataObject;
import org.apache.cayenne.exp.property.NumericProperty;
import org.apache.cayenne.exp.property.PropertyFactory;
import org.apache.c... |
/*
* Copyright 2018 Ameer Antar.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... |
package Snapchat;
/*
Given a list of possibly overlapping intervals, return a new list of intervals where all overlapping intervals have been merged.
The input list is not necessarily ordered in any way.
For example, given [(1, 3), (5, 8), (4, 10), (20, 25)], you should return [(1, 3), (4, 10), (20, 25)].
*/
impo... |
package edu.zc.oj.controller;
import edu.zc.oj.entity.request.Ping;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.PostMapping;
/**
* @author keep-looking
* @date 2021/3/6 - 16:04
*/
public class PingController {
/**
* return server's message
* @return ping... |
package valueObjecte;
import java.sql.Timestamp;
public class Routen {
private int[] routen_id;
private String[] routen_name;
private Timestamp[] routen_dauer;
public Routen() {
// TODO Auto-generated constructor stub
}
public int[] getRouten_id() {
return routen_id;
}
public void setRouten_id(int[]... |
package calofit.ui;
import java.util.logging.Logger;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.MenuItem;
import javafx.scene.control.TextInputControl;
import javafx.scene.input.KeyCombination;
import javafx.scene.input.KeyEvent;
import javafx.scene.layout.StackPane;
import ... |
// Template Source: BaseMethodParameterSet.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// -------------------------------... |
package j999.competition;
public class A02_Swap2Strings {
public static void main(String[] args) {
String str1="aa",str2="bbbbb";
str1=str1+str2; //HelloWorld
str2=str1.substring(0,str1.length()-str2.length()); //Hello
str1=str1.substring(str2.length());//World
System.out.println(str1);
System.... |
package com.joindata.inf.common.util.major.excel.stereotype;
/**
* 可解析 Excel 的对象标志
* @author <a href="mailto:songxiang@joindata.com">宋翔</a>
* @date 2015年11月10日 下午8:33:43
*/
public interface ExcelImportable
{
} |
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
*/
/*
* ---------------------------------------------------------------------------------------------------------------------
* AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY - for any changes edit CharChunkEquals and regenerate
* ------------------... |
package com.smcplugin.reference;
import com.intellij.openapi.util.TextRange;
import com.intellij.psi.PsiElement;
import com.smcplugin.SmcIcons;
import com.smcplugin.psi.SmcMap;
import com.smcplugin.psi.SmcState;
import javax.swing.*;
public class SmcStateReference extends AbstractNamedLocalReference<SmcMap, SmcState... |
package org.archivemanager;
public interface Actions {
public static final String PING = "PING";
public static final String TOKEN = "TOKEN";
public static final String INITIALIZE = "INITIALIZE";
} |
/*
* 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 org.narrative.network.core.narrative.rewards.services;
import org.narrative.network.core.narrative.wallet.TokenMintYear;
import org.narrative.network.core.narrative.wallet.Wallet;
import org.narrative.network.core.narrative.wallet.WalletType;
import org.narrative.network.shared.tasktypes.AreaTaskImpl;
/**
* ... |
/*
* Licensed to ObjectStyle LLC under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ObjectStyle LLC licenses
* this file to you under the Apache License, Version 2.0 (the
* "License"); you may not u... |
package org.moss.discord.commands.moderation;
import org.apache.commons.lang.StringUtils;
import org.javacord.api.entity.channel.TextChannel;
import de.btobastian.sdcf4j.Command;
import de.btobastian.sdcf4j.CommandExecutor;
import org.javacord.api.entity.message.Message;
import org.javacord.api.entity.message.Message... |
package cn.khala.datadisplay.service.impl;
import cn.khala.datadisplay.model.NewsInfo;
import cn.khala.datadisplay.repository.NewsInfoRepository;
import cn.khala.datadisplay.service.NewsInfoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import ja... |
package io.xmeta.platform;
import java.util.stream.Stream;
import static com.google.common.base.Preconditions.checkNotNull;
public enum SupportedLanguage {
CYPHER("Cypher");
private final String languageId;
SupportedLanguage(String languageId) {
this.languageId = languageId;
}
public S... |
/*******************************************************************************
* Copyright (c) 2010 Luaj.org. All rights reserved.
*
* 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 ... |
/* 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... |
/* 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... |
package com.java3y.austin.common.dto.model;
import java.io.Serializable;
/**
* 发送内容的模型
* (不同的渠道会有不同的消息体)
*
* @author 3y
*/
public class ContentModel implements Serializable {
} |
package org.pjay;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class Lab4RestserviceVerbApplicationTests {
@Test
public void conte... |
/**
* The MIT License
* Copyright (c) 2014-2016 Ilkka Seppä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, c... |
package org.eop.expreval.kpi.comparator;
import org.eop.expreval.kpi.ExpEvalContext;
import org.eop.expreval.kpi.Expression;
import org.eop.expreval.kpi.builder.Priority;
/**
* 不相等
* @author lixinjie
* @since 2018-06-20
*/
public class NtEq extends AbstractComparator {
@Override
public Boolean compare(ExpEvalC... |
// File ActionListener.java
package tests.javabind;
import java.util.EventListener;
// This interface is used in Bind.java
public interface ActionListener extends EventListener {
public void actionPerformed(ActionEvent e);
} |
package com.davromalc.kafka.streams.reducer;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import org.apache.kafka.streams.kstream.Reducer;
import com.davromalc.kafka.streams.model.Food;
import com.davromalc.kafka.streams.mod... |
package di.basic;
public class Car {
// 의존관계 발생
private Tire tire;
// DI(의존주입) : 생성자 주입
public Car(Tire tire) {
this.tire = tire;
}
public Car() {
}
/*
* public Car() { //의존관계설정 tire = new HankookTire(); //tire = new KumhoTire();
*
* }
*/
// DI(의존주입) : setter 주입
public void setTire(Tire tire... |
package org.bluez.exceptions;
import org.freedesktop.dbus.exceptions.DBusException;
@SuppressWarnings("serial")
public class BluezNotPermittedException extends DBusException {
public BluezNotPermittedException(String _message) {
super(_message);
}
} |
/*
* 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 me.analysis.pl.visitor;
import me.analysis.pl.PlSqlParserTree;
import me.analysis.pl.generated.PlSqlBaseVisitor;
import org.antlr.v4.runtime.ANTLRInputStream;
import org.antlr.v4.runtime.TokenStreamRewriter;
import org.antlr.v4.runtime.tree.ParseTree;
/**
* Базовый класс для наследования всех новых *Visitor
... |
/*
* Copyright 2014 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 applicabl... |
/*
* JBoss, Home of Professional Open Source.
*
* Copyright 2021 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 Li... |
package com.business.repositories;
import com.business.repositories.base.CrudRepository;
import com.domain.entities.Flight;
public interface FlightRepository extends CrudRepository<Flight, Integer> {
} |
/*
* This project is licensed as below.
*
* **************************************************************************
*
* Copyright 2020-2022 Intel Corporation. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following ... |
/*
* Copyright (C) 2012 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... |
/**
* Provides parser classes to provide Xml namespace support for the Print components.
*/
package org.springframework.integration.print.config.xml; |
package com.jade.fisher.ui;
import android.os.Bundle;
import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.jade.fisher.R;
/**
* A simple {@link Fragment} subclass.
* Use the {@link FishDetailFragment#newInstance} factory me... |
package com.lion.common.lock.aspect;
import com.lion.common.lock.annotation.Locker;
import com.lion.common.lock.locker.DistributedLocker;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
impor... |
/**
* 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 ua.in.iua.tapiapp;
import android.os.Bundle;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import ua.in.iua.theadvancedpageindicator.TheAdvancedPageIndicatorView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bund... |
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.UnauthorizedException;
import com.github.dockerjava.api.model.AuthConfig;
/**
*
* Authenticate with the server, useful for checking authentication.
*
*/
public interface AuthCmd extends DockerCmd<Void> {
public AuthConfig getAuthConf... |
package com.sequenceiq.cloudbreak.cloud.aws.resource;
public class AwsEfsResourceBuilderTest {
} |
/*
* 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.sefglobal.scholarx.service;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.sefglobal.scholarx.exception.BadRequestException;
import org.sefglobal.sch... |
package edu.jhu.cvrg.sapphire.xmlwriter;
/*
Copyright 2017 Johns Hopkins University Institute for Computational Medicine
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/licen... |
/**
* Copyright 2012-2015 Niall Gallagher
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
/*
The MIT License
Copyright (c) 2010-2013 Paul R. Holser, Jr.
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, copy, mod... |
/*
* Copyright 2014 Alex Curran
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
/**
* Copyright (c) 2013-2017, 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... |
/*
* Copyright (c) 2021 VMware, Inc.
* SPDX-License-Identifier: MIT
*
* 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 ... |
@ParametersAreNonnullByDefault
@MethodsReturnNonnullByDefault
package com.jamieswhiteshirt.clothesline.hooks;
import mcp.MethodsReturnNonnullByDefault;
import javax.annotation.ParametersAreNonnullByDefault; |
// Copyright 2021 The Terasology Foundation
// SPDX-License-Identifier: Apache-2.0
package org.terasology.engine.logic.behavior;
import org.terasology.engine.entitySystem.Component;
import org.terasology.engine.logic.behavior.asset.BehaviorTree;
import java.util.ArrayList;
import java.util.List;
/**
* Every group m... |
package org.condingmatters.poom.l10n.formatter.json;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.Locale;
import java.util.Map;
public class JsonFormatterClient implements BundleClient {
private Map<String, Map<String, ... |
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package frc.robot;
import static edu.wpi.first.wpilibj.XboxController.Button;
import edu.wpi.first.math.controller.PID... |
/*
* 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 ${package};
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(plugin = {"pretty"})
public class RunCucumberTest {
} |
// Copyright 2014 The Bazel Authors. 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 appl... |
package tech.quantit.northstar.domain.gateway;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import tech.quantit.northstar.common.constant.ConnectionState;
import tech.quantit.northstar.common.constant.GatewayType;
import tech.qu... |
package com.mypurecloud.sdk.v2.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import j... |
package com.guoxiaoxing.toolkit;
import android.os.Build;
import android.support.v4.util.LongSparseArray;
import android.support.v4.util.SimpleArrayMap;
import android.util.SparseArray;
import android.util.SparseBooleanArray;
import android.util.SparseIntArray;
import android.util.SparseLongArray;
import java.lang.re... |
package com.cemk.exp.calculationservice.interfaces;
import java.util.List;
import com.cemk.exp.calculationservice.pojo.Payment;
import com.cemk.exp.calculationservice.pojo.PaymentDetails;
/**
* This interface is used to money relationship among the shareholders
*
* @author Arani
*
*/
public interface Calculat... |
package org.codecop.dependencies.extract_and_override_factory;
public interface EmailService {
void subscribeUserFor(Product product);
} |
/*
* Copyright 2014 Click Travel 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 ... |
package org.benf.cfr.reader.bytecode.analysis.parse.statement;
import org.benf.cfr.reader.bytecode.analysis.parse.Expression;
import org.benf.cfr.reader.bytecode.analysis.parse.LValue;
import org.benf.cfr.reader.bytecode.analysis.parse.Statement;
import org.benf.cfr.reader.bytecode.analysis.parse.rewriters.ExpressionR... |
package com.anthropicandroid.sfcrimedata.module;
import android.content.Context;
import com.anthropicandroid.sfcrimedata.services.DataStore;
import com.google.maps.android.geojson.GeoJsonLayer;
import java.util.ArrayList;
import java.util.List;
import dagger.Module;
import dagger.Provides;
/*
* Created by Andrew ... |
/*-
* #%L
* anchor-image-core
* %%
* Copyright (C) 2010 - 2020 Owen Feehan, ETH Zurich, University of Zurich, Hoffmann-La Roche
* %%
* 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 wi... |
package net.minecraft.world.level.levelgen.feature.foliageplacers;
import com.mojang.serialization.Codec;
import com.mojang.serialization.codecs.RecordCodecBuilder;
import java.util.Random;
import java.util.function.BiConsumer;
import net.minecraft.core.BlockPos;
import net.minecraft.util.valueproviders.IntProvider;
i... |
/**
*
*/
package com.jchatting.server.thread;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.net.Socket;
import java.security.interfaces.RSAPublicKey;
import com.jchatting.db.persistent.DbConfig;
import com.jchatting.pack.ConfigPackage;
import com.jchatti... |
package com.convergence.excamera.sdk.wifi;
/**
* WiFi相机状态
*
* @Author WangZiheng
* @CreateDate 2020-11-25
* @Organization Convergence Ltd.
*/
public enum WifiCameraState {
/*
空闲状态,初始状态,未进行网络请求获取图像数据流
Free, it is the original state and frame stream have been loaded from network
*/
Free,
... |
package org.bouncycastle.asn1;
import java.io.IOException;
import org.bouncycastle.util.Arrays;
import org.bouncycastle.util.Strings;
public class DERPrintableString extends ASN1Primitive implements ASN1String {
private final byte[] string;
public static DERPrintableString getInstance(Object var0) {
if (... |
/*
* Copyright (c) 2013, Sam Malone. All rights reserved.
*
* Redistribution and use of this software in source and binary forms, with or
* without modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright notice,
* t... |
/*
* Copyright (c) 2006-2013 David Soergel <dev@davidsoergel.com>
* Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
package edu.berkeley.compbio.ml;
import com.davidsoergel.dsutils.DSArrayUtils;
import com.google.common.base.Function;
import com.google.common.colle... |
package syntax;
public class MigrateNode implements Node {
/**
*
*/
private static final long serialVersionUID = 7587489316367960596L;
protected HostNodeNode host;
protected ActionsNode actions;
protected ReportNode report;
protected boolean trace , output;
public MigrateNode(HostNodeNode host, Actio... |
package roboguice.event;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
/**
* ContextSingleton Observer testing class exercising the various implementation combinations.
*
* @author John Ericksen
*/
public class ContextObserverTesterImpl extends ContextObserverBase implements ... |
/*
* Copyright 2017-2020 original 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 agre... |
package counter;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
public class JARReader extends ZipFile{
public JARReader(File file) throws ZipException, IOExcep... |
/*
* Copyright 2019 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 ... |
/*
* MIT License
*
* Copyright (c) 2020 TerraForged
*
* 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, copy, modi... |
/*******************************************************************************
* Copyright (c) 2015 - 2017
*
* 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... |
package ru.netradar.server.notify.notification;
import ru.netradar.server.device.notify.NotifyType;
import ru.netradar.server.queue.dao.Task;
import java.sql.Timestamp;
/**
* Очередь уведомлений
* Created by IntelliJ IDEA.
* User: rfk
* Date: 20.03.2010
* Time: 11:06:23
* To change this template use File | Set... |
package lv.ctco.cukes.http.logging;
import io.restassured.RestAssured;
import io.restassured.specification.RequestSpecification;
import lv.ctco.cukes.core.internal.context.GlobalWorldFacade;
import lv.ctco.cukes.http.RestAssuredConfiguration;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunW... |
package m2.c1_java.es5;
public class Main {
public static void main(String[] args) {
System.out.println(new Tacchino("Stefano", java.time.Year.of(2001)));
}
} |
/**
* Copyright 2016 - 2018 Huawei Technologies Co., Ltd. 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
*
... |
package org.jomaveger.model.md2;
import org.apache.log4j.Logger;
import org.jomaveger.graphics.AnimationInfo;
import org.jomaveger.graphics.Object3D;
import org.jomaveger.math.Vector;
import static org.lwjgl.opengl.GL11.glBegin;
import static org.lwjgl.opengl.GL11.glEnd;
import static org.lwjgl.opengl.GL11.glTexCoord2... |
package nz.co.lolnet.bungeeproxy.handlers;
import java.net.InetSocketAddress;
import io.netty.buffer.Unpooled;
import io.netty.channel.ChannelFutureListener;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import io.netty.handler.codec.haproxy.HAProxyMessage;
impor... |
package nl.stil4m.mollie.domain.subpayments.ideal;
public class IdealPaymentOptions {
private final String issuer;
public IdealPaymentOptions(String issuer) {
this.issuer = issuer;
}
public String getIssuer() {
return issuer;
}
} |
package com.ctrip.framework.foundation.internals.provider;
import java.io.InputStream;
import com.ctrip.framework.apollo.core.spi.Ordered;
import com.ctrip.framework.foundation.spi.provider.ApplicationProvider;
import com.ctrip.framework.foundation.spi.provider.NetworkProvider;
import com.ctrip.framework.foundation.s... |
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may n... |
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;
import com.aliyun.tea.*;
public class ListAvailableInstancetypeResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("... |
package de.codingair.packetmanagement.packets;
import org.jetbrains.annotations.NotNull;
import java.io.DataInputStream;
import java.io.DataOutputStream;
public final class IgnoreFuture implements Packet {
private final Packet packet;
IgnoreFuture(@NotNull Packet packet) {
this.packet = packet;
... |
/*
* Autopsy Forensic Browser
*
* Copyright 2018-2019 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http... |
/*
* Copyright (c) 2019, Fraunhofer AISEC. 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 re... |
public class Democustomer{
public static void main(String[] args){
Customer.setDiscount(6);
Customer obj1=new Customer();
obj1.display();
Customer obj2=new Customer(101,"Geeta","geeta123@gmail.com");
obj2.display();
Customer obj3=new Customer(102,"Gopal","gopal123@gmail.com");
obj3.display();
obj1.setDiscount(15);
Sy... |
package edu.unh.cs.treccar_v2.export;
import edu.unh.cs.treccar_v2.Data;
import edu.unh.cs.treccar_v2.read_data.DeserializeData;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
/**
* Get text from all paragraphs in paragraphCorpus.cbor
* User: dietz
* Date: 5/23/19
* Ti... |
/**
* Copyright 2016 Nikita Koksharov
*
* 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 agree... |
package module2221_internal.a;
import java.sql.*;
import java.util.logging.*;
import java.util.zip.*;
/**
* Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut
* labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.