text stringlengths 7 1.01M |
|---|
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* 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... |
package edu.udel.cis.vsl.abc.front.c.astgen;
import org.antlr.runtime.CommonTokenStream;
import org.antlr.runtime.TokenStream;
import org.antlr.runtime.tree.CommonTree;
import edu.udel.cis.vsl.abc.ast.node.IF.NodeFactory;
import edu.udel.cis.vsl.abc.config.IF.Configuration;
import edu.udel.cis.vsl.abc.config.IF.Confi... |
package com.example.zhpan.circleviewpager;
import android.app.Application;
import androidx.multidex.MultiDex;
import com.tencent.bugly.crashreport.CrashReport;
import com.zhpan.bannerview.utils.BannerUtils;
import com.zhpan.idea.utils.Utils;
/**
* <pre>
* Created by zhangpan on 2019-08-14.
* Description:
* ... |
import java.util.*;
public class CDOrganizer {
private String mTitle;
public CDOrganizer (String title) {
mTitle = title;
}
public String getTitle() {
return mTitle;
}
// public class cdNameComparator implements Comparator<CDOrganizer> {
// public int compare(CDOrganizer cd1, CDOrganizer c... |
/*
* Copyright (C) 2015, United States Government, as represented by the
* Administrator of the National Aeronautics and Space Administration.
* All rights reserved.
*
* The PSYCO: A Predicate-based Symbolic Compositional Reasoning environment
* platform is licensed under the Apache License, Version 2.0 (the "L... |
/*
* 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... |
package com.example.student;
import lombok.extern.log4j.Log4j;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.concurrent.*;
import java.util.concurrent.atomic.AtomicInteger;
/**
* @Author:Zach
* @Description: 定制属于自己的非阻塞线程池
* @Date:Created in 15:26 2018/8/14
* @Modified By:
*/
public... |
package Tree;
import java.util.LinkedList;
import java.util.Queue;
public class BST<E extends Comparable<E>>{
public class Node{
public E element;
public Node left, right;
public Node(E e){
this.element = e;
this.left = null;
this.right = null;
... |
package by.bulba.android.environments.parser;
import by.bulba.android.environments.config.ConfigType;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import java.util.stream.Stream;
import static org.junit.j... |
package com.codepath.apps.mocktwitterapp.models;
import com.activeandroid.Model;
import com.activeandroid.annotation.Column;
import com.activeandroid.annotation.Table;
import com.activeandroid.query.Select;
import org.json.JSONObject;
import org.parceler.Parcel;
/**
* Created by lily_chen on 10/31/16.
*/
@Parcel(... |
/*
* 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... |
copyright ibm corporation rights reserved program accompanying materials terms eclipse license accompanies distribution http eclipse org legal epl html contributors ibm corporation initial api implementation org eclipse pde internal wizards feature org eclipse jface dialogs i dialog settings idialogsettings org eclipse... |
package com.skytala.eCommerce.domain.accounting.relations.invoice.command.itemAssocType;
import org.apache.ofbiz.base.util.UtilMisc;
import org.apache.ofbiz.entity.Delegator;
import org.apache.ofbiz.entity.DelegatorFactory;
import org.apache.ofbiz.entity.GenericEntityException;
import org.apache.ofbiz.entity.GenericVal... |
/*
* Copyright 2019-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 ap... |
package com.javamaster.b2c.cloud.test.common.util;
import com.javamaster.b2c.cloud.test.common.constant.ProjectConst;
import org.springframework.util.LinkedMultiValueMap;
public class HeaderUtils {
public static LinkedMultiValueMap<String, String> getMockChromeHeader(String cookies) {
LinkedMultiValueMap<... |
/*
* Copyright 2017-2019 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... |
/*
* 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 2012-2017 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.quppler.functional.closure;
public class Closure {
public static void main(String args[]){
int val = 111;
Job lambda = () -> {
System.out.println("Closure Example");
System.out.println(val);
};
printValueInClosureScope(lambda);
}
/**Cl... |
package cool.furry.mc.forge.projectexpansion;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
@Mod.EventBusSubscriber(modid = Main.MOD_ID, bus = Mod.EventB... |
package com.zhuguangdeyingzi.gulimall.gulimallorder.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.springfr... |
package com.freeman.oauth2.configuration.security.providers;
import com.freeman.oauth2.configuration.security.GoogleUser;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpMethod;
import org.springframework.http.R... |
/**
* BioLink API
* API integration layer for linked biological objects. __Source:__ https://github.com/monarch-initiative/biolink-api/
*
* OpenAPI spec version: 0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not ... |
package org.kyojo.schemaorg.m3n4.gson.core.musicAlbumReleaseType;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;
import org.kyojo.gson.JsonDeserializationContext;
import org.kyojo.gson.JsonDeserializer;
import org.kyojo.gson.JsonElement;
import org.kyojo... |
package tsp.headdb.command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import tsp.headdb.api.HeadAPI;
import tsp.headdb.util.Utils;
public class SearchCommand implements HeadSubCommand {
@Override
public void handle(CommandSender sender, String[] args) {
if (!sender.has... |
// Dado um número, verificar se ele é maior que 100. Se for, o algoritmo deve somar 150 a esse número. No final, imprimir o resultado da soma.
import java.util.Scanner;
public class Ex01 {
public static void main(String[] args) {
Scanner leitor = new Scanner(System.in);
System.out.print("... |
package student.y2_collect;
import student.lib.Person;
import java.util.ArrayList;
import java.util.List;
public class CustomCollector {
private List<Integer> ages = new ArrayList<>();
private List<String> emailAddresses = new ArrayList<>();
public static CustomCollector supply() {
return new Cu... |
package com.example.miunaojfakebackend.controller;
import com.example.miunaojfakebackend.bean.AssignmentResponsePackage;
import com.google.gson.Gson;
import org.springframework.web.bind.annotation.*;
import java.util.Random;
@RestController
@CrossOrigin
@RequestMapping("/api/assignment")
public class AssignmentContr... |
package org.clever.hinny.nashorn.module;
import jdk.nashorn.api.scripting.NashornScriptEngine;
import jdk.nashorn.api.scripting.ScriptObjectMirror;
import lombok.extern.slf4j.Slf4j;
import org.clever.hinny.api.GlobalConstant;
import org.clever.hinny.api.ScriptEngineContext;
import org.clever.hinny.api.ScriptObject;
im... |
package abacus.project.ietf.network.topology;
import java.io.Serializable;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProper... |
/*
* Copyright 2016-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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
/*
* 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 ... |
/*
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.imagepipeline.core;
import android.content.ContentResolver;
import android.content.Context;
import android.content.... |
package cn.banny.unidbg.memory;
public class MemoryMap {
public final long base;
public final long size;
public final int prot;
public MemoryMap(long base, long size, int prot) {
this.base = base;
this.size = size;
this.prot = prot;
}
@Override
public String toStr... |
package me.kuehle.carreport;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
... |
/*
* Copyright 1999-2018 Alibaba Group Holding 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 applica... |
package cn.love.util;
import android.util.Pair;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.TreeMap;
/**
* <pre>
* author: blankj
* blog : http://blankj.com
* t... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... |
package com.redhat.training.health.route;
import java.net.URI;
import javax.enterprise.context.ApplicationScoped;
import com.redhat.training.health.route.aggregation.CovidCountryJsonDataAggregationStrategy;
import org.apache.camel.Exchange;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.model... |
package com.tyrfing.games.tyrlib3.model.graphics.scene;
import com.tyrfing.games.tyrlib3.model.math.AABB;
public interface IBoundingBoxTreeQuery {
public boolean intersectsAABB(AABB aabb);
}
|
package com.codepath.apps.restclienttemplate;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import com.codepath.apps.restclienttemplate.models.Tweet;
import com.loopj.android.... |
package de.bht.mmi.iot.model;
public final class AmqpConstants {
public static final String FRISS_EXCHANGE_NAME = "friss_exch";
}
|
package com.amar.library.ui;
import android.content.Context;
import android.os.Bundle;
import android.os.Parcelable;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewTreeObserver;
import androidx.core.widget.NestedScrollView;
import com.amar.library.R;
import com.amar.library.provid... |
/*
* 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... |
package lof;
import java.util.ArrayList;
import org.apache.spark.api.java.function.PairFlatMapFunction;
import kdtree.KDTree;
import kdtree.Point;
import scala.Tuple2;
public class LRDF2 implements
PairFlatMapFunction<Tuple2<Integer, Iterable<Point>>, Integer, Point> {
private int k;
public LRDF2(int k) {
th... |
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.01.... |
/**
* Copyright 2015-2016 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 ... |
package seedu.address.storage;
import java.io.FileNotFoundException;
import java.nio.file.Path;
import seedu.address.commons.exceptions.DataConversionException;
import seedu.address.model.awareness.Awareness;
/**
* A class used to access Awareness data stored as XML on the disk.
* This class itself does not contro... |
package com.liveramp.generative.default_values;
import java.util.Map;
import org.apache.thrift.meta_data.FieldValueMetaData;
import org.apache.thrift.meta_data.MapMetaData;
import com.liveramp.generative.Arbitrary;
import com.liveramp.generative.MapOf;
@SuppressWarnings("unchecked")
class MapValueCreator<K, V> impl... |
package br.com.caelum.jdbc;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import br.com.caelum.jdbc.modelo.Estados;
public class CorreioDao {
private Connection connection;
public CorreioDa... |
package com.ams.integration;
import com.ams.integration.dto.LegalEntityBranchType;
import com.ams.integration.dto.LegalEntityType;
/**
* Context for legal entity search.
*
* @author Alexey Mironov
*/
public class LegalEntityContext {
/**
* Inn, kpp or query for search.
*/
private final String qu... |
/*
* 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 (C) Luxoft 2017
*
* 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... |
/*
* 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... |
/**
* Automatically generated file. DO NOT MODIFY
*/
package com.mysampleapp;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String APPLICATION_ID = "com.amazon.mysampleapp";
public static final String BUILD_TYPE = "debug";
public static... |
package net.mahdilamb.dataviz.fx;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.Scene;
import javafx.stage.Stage;
import net.mahdilamb.dataviz.figure.FigureBase;
/**
* Launcher for FX charts
*/
public final class FXLauncher extends Application {
private static F... |
package com.funtl.my.shop.web.admin.dao;
import com.funtl.my.shop.commons.persistence.BaseDao;
import com.funtl.my.shop.domain.TbContent;
import org.springframework.stereotype.Repository;
@Repository
public interface TbContentDao extends BaseDao<TbContent> {
}
|
/*
* @#DiscoveryQueryParametersCommunication.java - 2015
* Copyright bitDubai.com., All rights reserved.
* You may not modify, use, reproduce or distribute this software.
* BITDUBAI/CONFIDENTIAL
*/
package com.bitdubai.fermat_p2p_api.layer.all_definition.communication.commons.components;
import com.bitdubai.ferma... |
package android.secondbook.com.criminalintent;
import android.os.Bundle;
import android.support.annotation.LayoutRes;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v7.app.AppCompatActivity;
/**
* Created b... |
/*
* Copyright (C) 2010 Moduad Co., Ltd.
*
* 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 2 of the License, or
* (at your option) any later version.
*
* This program is... |
/*
* Copyright (c) 2020, 2021 Microsoft Corporation
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* ... |
//
// Decompiled by Procyon v0.5.36
//
package org.pitest.reloc.antlr.common;
import org.pitest.reloc.antlr.common.collections.impl.BitSet;
import java.io.IOException;
import org.pitest.reloc.antlr.common.collections.impl.Vector;
import java.io.PrintWriter;
public abstract class CodeGenerator
{
protected Tool ... |
package flarcher.javafx.gui.scene;
import flarcher.javafx.gui.AppState;
import flarcher.javafx.gui.NodeFactory;
import javafx.geometry.HPos;
import javafx.geometry.Pos;
import javafx.scene.control.*;
public class FormScene extends AbstractMainScene {
public FormScene(Runnable next) {
super(2);
this.next = next;... |
package com.workoss.boot.plugin.mybatis;
import com.workoss.boot.plugin.mybatis.context.SqlContext;
import com.workoss.boot.util.reflect.BeanCopierUtil;
import org.apache.ibatis.cache.CacheKey;
import org.apache.ibatis.executor.Executor;
import org.apache.ibatis.mapping.BoundSql;
import org.apache.ibatis.mapping.Mappe... |
/*
* Copyright 2019 WeBank
* 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, softw... |
package kim.android.neumorphism;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class DashboardUI extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity... |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/automl/v1beta1/service.proto
package com.google.cloud.automl.v1beta1;
/**
*
*
* <pre>
* Response message for [AutoMl.ListTableSpecs][google.cloud.automl.v1beta1.AutoMl.ListTableSpecs].
* </pre>
*
* Protobuf type {@code google.c... |
package net.foxdenstudio.foxsuite.foxcore.platform.world;
import net.foxdenstudio.foxsuite.foxcore.platform.world.extent.Extent;
public interface Location<E extends Extent> {
E getExtent();
}
|
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory o... |
/*
* This file is part of the Wildfire Chat package.
* (c) Heavyrain2012 <heavyrain.lee@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
package com.secret.loServer.action.robot;
import cn.wildfirechat.common.APIPath;
i... |
/*
* Copyright 2002-2022 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... |
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.v7.appcompat;
public final class R {
public static final class anim {
public static final int abc_fade_in = 0x7... |
package twitter4j;
import java.io.IOException;
/**
* @author Yusuke Yamamoto - yusuke at mac.com
* @since Twitter4J 2.1.8
*/
interface StreamImplementation {
void next(StreamListener[] listeners) throws TwitterException;
void close() throws IOException;
void onException(Exception ex);
}
|
package io.prestosql.operator.scalar;
/*
* 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 kale.sharelogin.utils;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import android.app.Application;
import android.graphics.Bitmap;
import android.media.ThumbnailUtils;
import android.os.Environment;
import android.support.annotation.N... |
package com.stickycoding.rokon.audio;
import com.stickycoding.rokon.Debug;
/**
* SoundFile.java
* SoundFile contains sounds which have been loaded into the RokonAudio class.
*
* @author Richard
*/
public class SoundFile {
private int id;
private int result;
private... |
/**
* Copyright (C) 2015 Red Hat, 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... |
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package org.devio.rn.splashscreen;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f... |
package io.netty.protocol.wamp;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToMessageCodec;
import io.netty.handler.codec.http.websocketx.TextWebSocketFrame;
import io.netty.protocol.wamp.messages.MessageMapper;
import io.netty.protocol.wamp.messages.WampMessage;
import org.slf4... |
/*
* Copyright 2002-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) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.functions.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.ann... |
package com.sun.corba.se.PortableActivationIDL;
/**
* com/sun/corba/se/PortableActivationIDL/InitialNameService.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from c:/re/workspace/8-2-build-windows-amd64-cygwin/jdk8u202/12323/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/a... |
package me.giskard.dust.runtime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import me.giskard.GiskardException;
import me.giskard.GiskardUtils;
@SuppressWarnings({ "unchecked", "rawtypes" })
public abstract cl... |
/*
* 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 ... |
import java.io.*;
import java.net.URL;
import java.security.*;
import java.security.cert.*;
import javax.net.ssl.*;
public class InstallCert {
public static void main(String[] args) throws Exception {
String host;
int port;
char[] passphrase;
if ((args.length == 1) || (args.lengt... |
package edu.bu.met.cs665.simulator;
import edu.bu.met.cs665.simulator.namingsystem.ChineseNameGenerator;
import org.junit.Test;
public class ChineseNameGeneratorTest {
@Test
public void getName() {
ChineseNameGenerator chineseNameGenerator = new ChineseNameGenerator();
System.out.println(chin... |
class DTwGSG1r {
}
class ewpgFN5IF9Wx {
public static void sZXGn3 (String[] yFEUfWl0EGR__g) {
void[] diQC;
h[] N5GOifymt7S = 368.X9aXM0Nz() = ( true.n7())[ ( new void[ !this.O_8].O)[ --new ULkXOFxWbr2b9()[ -( new HQMP().qE2QMRTvJ).atU()]]];
boolean[][][][] Da2vlC = !!!this[ !960054898.... |
/*
* 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 2021 Andreas Textor
*
* 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 ... |
/*******************************************************************************
* MIT License
*
* Copyright (c) 2021 Georgi Velev
*
* 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 wit... |
/*******************************************************************************
* Copyright (c) 2010 Haifeng Li
*
* 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... |
package com.baeldung.s3;
import java.io.File;
import java.util.List;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3Client;
import com.amazonaws.services.s3.model.Bucket;
import com.amazonaws.services.s3.model.CopyObjectResult;
import com.amazonaws.services.s3.model.DeleteObjectsR... |
package pro.taskana.task.rest.models;
import java.util.HashMap;
import java.util.Map;
import pro.taskana.task.api.models.Attachment;
/** EntityModel class for {@link Attachment}. */
public class AttachmentRepresentationModel extends AttachmentSummaryRepresentationModel {
/** All additional information of the Atta... |
/*
* Copyright 2016 Huawei Technologies Co., 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... |
package com.daniellegb.movieflix.resources;
import javax.validation.Valid;
import org.springframework.security.core.Authentication;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.http.converter.HttpMessageConverter;
import org.... |
package org.wickedsource.coderadar.metric.rest;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.anno... |
/*
* Copyright (c) 2004-2022, 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 above copyright notice, this
* list of cond... |
/*
MIT License
Copyright (c) 2017 Universidad de los Andes - ISIS2603
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, mo... |
/*
* Copyright 2001-2013 Aspose Pty Ltd. All Rights Reserved.
*
* This file is part of Aspose.Slides. The source code in this file
* is only intended as a supplement to the documentation, and is provided
* "as is", without warranty of any kind, either expressed or implied.
*/
package com.aspose.slides.examples... |
package com.jwt.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.jwt.dao.UrineDAO;
import com.jwt.model.Urine;
@Service
@Transactional
public cl... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.