text stringlengths 7 995k |
|---|
package lecho.lib.hellocharts.model;
import android.graphics.Typeface;
import com.boohee.myview.IntFloatWheelView;
import java.util.ArrayList;
import java.util.List;
import lecho.lib.hellocharts.formatter.PieChartValueFormatter;
import lecho.lib.hellocharts.formatter.SimplePieChartValueFormatter;
public class PieChar... |
package poussecafe.doc;
import java.util.function.Consumer;
import javax.lang.model.element.PackageElement;
import poussecafe.doc.model.moduledoc.ModuleDocFactory;
import poussecafe.doc.process.ModuleDocCreation;
public class ModuleDocCreator implements Consumer<PackageElement> {
@Override
public void accept... |
/*
* (C) Copyright IBM Corp. 2021.
*
* 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 w... |
/**
*
* 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"); ... |
package io.dropwizard.jdbi.timestamps;
import org.h2.tools.Server;
import org.junit.rules.ExternalResource;
import org.junit.rules.TemporaryFolder;
import java.io.File;
import java.util.TimeZone;
import java.util.concurrent.TimeUnit;
import static org.mockito.Mockito.mock;
/**
* Run an instance of the H2 database ... |
package com.topoffers.topoffers.common.models;
import com.orm.SugarRecord;
import java.io.Serializable;
public class AuthenticationCookie extends SugarRecord implements Serializable {
private String username;
private String role;
// Sugar need default constructor
public AuthenticationCookie() {
... |
package ca.project.service;
import java.util.List;
import java.util.Optional;
import org.springframework.stereotype.Service;
import ca.project.model.Result;
import ca.project.repository.ResultRepository;
@Service
public class ResultService {
private ResultRepository resultRepository;
public ResultService(Result... |
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CD... |
package Megnas.CNB_foreign_exchange_market_rates_API;
public record CurrencyRecord(String country, String name, double quantity, String code, double value) {
public double GetExchangeRate() {
return value / quantity;
}
public String GetTextFormat() {
return country + "|" + name + "|" + qu... |
package com.baeldung.mockito.java8;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.junit.MockitoJUnitRunner;
import org.mockito.stubbing.Answer;
import java.uti... |
package com.geekycoders.my_team;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpMethod;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import or... |
package com.echonest.knowledge.hashr;
import java.io.Reader;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.WhitespaceTokenizer;
/**
* An analyzer for a fingerprint hash fiel... |
/*
* Copyright (c) 2012-2016 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
package org.antlr.v4.test.runtime.javascript.chrome;
import org.antlr.v4.test.runtime.BaseRuntimeTest;
import org.antl... |
package com.qh.system.mapper;
import com.qh.system.model.Menu;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface MenuMapper {
int deleteByPrimaryKey(Integer menuId);
int insert(Menu menu);
Menu selectByPrimaryKey(Int... |
/*
* (C) Copyright IBM Corp. 2020.
*
* 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 w... |
/**
* Copyright 2011-2019 Asakusa Framework Team.
*
* 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.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0
/** //indent:0 exp:0
* This test-input is intended to be checked using following configuration: //indent:1 exp:1
* ... |
/*
* Copyright (c) 2008-2020, 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 org.journerist.testutils;
import org.hibernate.cfg.Configuration;
import org.journerist.testutils.common.ClassPathUtils;
import org.journerist.testutils.parseStrategy.OpenAndClosedTagHibernateConstraintStrategy;
import org.journerist.testutils.parseStrategy.SetTagHibernateConstraintStrategy;
import org.journer... |
/* JAI-Ext - OpenSource Java Advanced Image Extensions Library
* http://www.geo-solutions.it/
* Copyright 2014 - 2015 GeoSolutions
* 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
* htt... |
package com.avaje.tests.json.include;
import com.avaje.ebean.Ebean;
import com.avaje.ebean.config.JsonConfig;
import com.avaje.ebean.text.json.JsonWriteOptions;
import com.avaje.tests.json.transientproperties.EJsonTransientList;
import org.junit.Test;
import java.util.ArrayList;
import static org.junit.Assert.assert... |
package com.eshop.catalog.infrastructure.entities;
import com.eshop.catalog.domain.catalogitem.Brand;
import com.eshop.catalog.domain.catalogitem.BrandRepository;
import lombok.AllArgsConstructor;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.data.mongodb.core.query.Criteria;
i... |
/**
* Copyright (C) 2020 WaveMaker, Inc.
* <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 ... |
package com.hades.example.java.refactoring.after.c8.c8_10_Encapsulate_Field;
public class Stu {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
} |
package net.minecraft.entity.projectile;
import java.util.List;
import java.util.UUID;
import net.minecraft.block.Block;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IProjectile;
import net.minecraft.entity.player.Player;
import net.minecraft.init.Blocks... |
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/**
* Copyright 2020 Tianshu AI Platform. 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 a... |
package com.wire.bots.simulation.connector;
import com.wire.bots.simulation.api.SimulationConfiguration;
import javax.ws.rs.client.Client;
/**
* Factory for building client.
*/
public class ClientFactory {
/**
* Creates instance of Client for given configuration.
*/
public static Client obtainCli... |
package com.xuexiang.xuidemo.fragment.components.progress;
import android.view.View;
import com.xuexiang.xaop.annotation.SingleClick;
import com.xuexiang.xpage.annotation.Page;
import com.xuexiang.xui.widget.progress.ratingbar.RatingBar;
import com.xuexiang.xui.widget.progress.ratingbar.RotationRatingBar;
import com.... |
package game.entities;
import game.components.SpriteComponent;
import game.dataAccessLayer.AssetsHandler;
import game.utils.Position;
import com.badlogic.gdx.graphics.Texture;
/**
* Sprite entity class
*/
public class SpriteEntity extends Entity
{
/**
* SpriteEntity constructor
* @param name Sprite entity nam... |
package com.rscnn.postprocess;
public class NetworkParameter {
private int networkInputHeight;
private int networkInputWidth;
public int getNetworkInputHeight() {
return networkInputHeight;
}
public void setNetworkInputHeight(int networkInputHeight) {
this.networkInputHeight = net... |
package com.web.marketReport.service.internal;
import com.app.base.data.ApiResponseResult;
import com.system.user.entity.SysUser;
import com.utils.BaseService;
import com.utils.SearchFilter;
import com.utils.UserUtil;
import com.utils.enumeration.BasicStateEnum;
import com.web.marketReport.dao.DiscountCategoryDao;
imp... |
/*
* Copyright (c) 2008-2020, 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 (c) 2013, salesforce.com, inc.
* 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, this... |
package ru.kontur.vostok.hercules.util;
/**
* @author Gregory Koshelev
*/
public class Maps {
/**
* Default loadFactor for HashMap
*/
public static final float HASH_MAP_DEFAULT_LOAD_FACTOR = 0.75f;
/**
* HashMap's maximum capacity
*/
public static final int HASH_MAP_MAXIMUM_CAPAC... |
package me.xlgp.xiquzimu.ui.zimu.changci;
import android.annotation.SuppressLint;
import android.os.Handler;
import android.os.Looper;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import java.util.List;
import me.xlgp.xiquzimu.R;
import me.xlgp.xiquzimu.adapter.BaseAd... |
package com.gustavoms.messagescheduling.message;
import java.util.Set;
public final class ScheduledMessageResponseDTOV1Builder {
private ScheduledMessageResponseDTOV1 scheduledMessageResponseDTOV1;
private ScheduledMessageResponseDTOV1Builder() {
scheduledMessageResponseDTOV1 = new ScheduledMessageRe... |
package UEVEZon.models;
import java.util.List;
import java.util.ArrayList;
public class Gamme {
public int codeBarre;
public double prix;
public double tva;
public List<Produit> stock;
GammeListener listener;
public Gamme(int codeBarre, double prix, double tva) {
this.codeBarre = co... |
package org.drools.modelcompiler.builder.generator.expression;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import java.util.stream.Stream;
import org.drools.javaparser.JavaParser;
import org.drools.javaparser.ast.body.Paramet... |
package basicStreams;
import java.util.Arrays;
import java.util.List;
/*from w w w. j a va 2 s .co m*/
public class ReduceSum {
public static int reduceNorm(List<Integer> numbers){
int sum = 0;
for (int n : numbers) {
if (n % 2 == 0) {
int square = n * n;
... |
package com.artifex.mupdfdemo;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.MotionEvent;
import android.view.ScaleGestureDetector;
import android.view.View;
import android.view.WindowMana... |
package tconstruct.weaponry.entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public class BoltEntity extends ArrowEntity {
public BoltEntity(World world) {
super(world);
this.setSize(0.3f, 0.3f);
}
public BoltE... |
package ch.zhaw.gpi.eumzugplattform.repositories;
import ch.zhaw.gpi.eumzugplattform.entities.DocumentType;
import ch.zhaw.gpi.eumzugplattform.entities.MunicipalityDocumentType;
import ch.zhaw.gpi.eumzugplattform.entities.Municipality;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository... |
package com.netflix.fabricator.component.bind;
import java.lang.reflect.Method;
import com.netflix.fabricator.ConfigurationNode;
import com.netflix.fabricator.PropertyBinder;
import com.netflix.fabricator.PropertyBinderFactory;
public class LongBinderFactory implements PropertyBinderFactory {
private final stati... |
package com.hartwig.pipeline.calling.sage;
import java.util.List;
import com.hartwig.pipeline.calling.command.BcfToolsCommandListBuilder;
import com.hartwig.pipeline.datatypes.FileTypes;
import com.hartwig.pipeline.execution.vm.BashCommand;
import com.hartwig.pipeline.execution.vm.OutputFile;
import com.hartwig.pipel... |
package uk.ac.soton.ecs.comp3204.l4;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.List;
... |
/*******************************************************************************
* Copyright 2019 alladin-IT GmbH
*
* 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.apa... |
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.codeInsight.editorActions;
import com.intellij.application.options.CodeStyle;
import com.intellij.formatting.FormatterEx;
import com.intellij.formatting.For... |
package com.example.springsocial.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Data;
import lombok.NoArgsConstructor;
@Entity
@NoArgsConstructor
public @Data class Bo... |
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd;
import static org.junit.Assert.assertEquals;
import java.io.File;
import org.junit.Test;
import net.sourceforge.pmd.lang.LanguageRegistry;
import net.sourceforge.pmd.lang.LanguageVersion;
import net... |
package io.shuidi.snowflake.core.util;
import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.CollectionUtils;
import java.util.List;
import java.util.concurrent.Callable;
/**
* Author: Alvin Tian
... |
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
package com.... |
package com.gamesys.hatef.hatef.controller;
import com.gamesys.hatef.controller.CandleController;
import com.gamesys.hatef.model.PriceCandle;
import com.gamesys.hatef.model.SummaryDetails;
import com.gamesys.hatef.service.CandleService;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
... |
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.iot.dapply.order.create response.
*
* @author auto create
* @since 1.0, 2021-06-24 13:56:07
*/
public class AlipayCommerceIotDapplyOrderCreateResponse extend... |
package com.github.dekaulitz.mockyup.server.model.embeddable;
import java.io.Serializable;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToSt... |
package de.samdev.absgdx.framework.util.exceptions;
/**
* Gets thrown when an Error while parsing a AGDXML file occurs
*/
public class AgdxmlParsingException extends Exception {
private static final long serialVersionUID = -4785629136981676053L;
/**
* Creates a new AgdxmlParsingException
*
* @param 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 ... |
/*
* 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.mtinge.TagTokenizer;
import com.mtinge.TagTokenizer.lexer.LexToken;
import com.mtinge.TagTokenizer.lexer.Lexer;
import com.mtinge.TagTokenizer.tokenizer.TermModifier;
import com.mtinge.TagTokenizer.tokenizer.Tokenizer;
import com.mtinge.TagTokenizer.tokenizer.TagToken;
import java.util.LinkedList;
public... |
package com.macro.mall.tiny.exception;
/**
* 商品验证异常类
* Created by macro on 2021/10/22.
*/
public class ProductValidatorException extends Exception{
public ProductValidatorException(String message) {
super(message);
}
} |
package com.eoss.hft.servlet;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
impo... |
package de.metas.handlingunits.shipmentschedule.segments;
/*
* #%L
* de.metas.handlingunits.base
* %%
* Copyright (C) 2015 metas GmbH
* %%
* 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... |
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writi... |
/*
* #%L
* de.metas.swat.base
* %%
* Copyright (C) 2021 metas GmbH
* %%
* 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 ... |
package com.networknt.tram.message.consumer;
import com.networknt.tram.message.common.Message;
import java.util.function.Consumer;
public interface MessageHandler extends Consumer<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 may ... |
package cash.muro.services;
import java.math.BigDecimal;
import cash.muro.bch.model.BchAddress;
import cash.muro.bch.model.BchException;
import cash.muro.bch.model.BchValidatedAddress;
public interface BchService {
public static final int minConfirmations = 0;
boolean verifyMessage(String pubKey, String signatur... |
/*
* Copyright (c) 2007 BUSINESS OBJECTS SOFTWARE LIMITED
* 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,
... |
package org.edx.indonesiax.module.storage;
import org.edx.indonesiax.interfaces.SectionItemInterface;
import org.edx.indonesiax.model.VideoModel;
import org.edx.indonesiax.model.api.EnrolledCoursesResponse;
import org.edx.indonesiax.model.api.VideoResponseModel;
import org.edx.indonesiax.model.course.VideoBlockModel;
... |
package cn.jmicro.breaker.api;
import cn.jmicro.api.JMicro;
public class BreakerMain {
public static void main(String[] args) {
/* RpcClassLoader cl = new RpcClassLoader(RpcClassLoader.class.getClassLoader());
Thread.currentThread().setContextClassLoader(cl);*/
JMicro.getObjectFactoryAndStart(args);
JMicro... |
package me.itaot.payment.cpcn.cpcn;
public abstract interface Signer {
public abstract String sign(String paramString) throws Exception;
public abstract byte[] sign(byte[] paramArrayOfByte) throws Exception;
} |
/*
* Copyright 2016-2018 shardingsphere.io.
* <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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable l... |
package com.tencent.qcloud.tlslibrary.activity;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import com.tencent.qcloud.tlslibrary.R;
import com.tencent.qcloud.tlslibrary.helper.SmsContentObserver;
import com.tencent.qclo... |
package ru.moneyshar.site.web.domain;
import org.springframework.context.annotation.Scope;
import org.springframework.context.annotation.ScopedProxyMode;
import org.springframework.stereotype.Component;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import ja... |
package ru.job4j.converter;
/**
* Конвертер валюты.
* @author - Максим К. (dunor@mail.ru)
*/
public class Converter {
/**
* Конвертирует рубли в евро.
* @param value - количество рублей.
* @return - количество евро.
*/
public static int rubleToEuro(int value) {
return value / 70;... |
package com.luck.picture.lib.camera;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.SurfaceTexture;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Build;
import android.text.TextUtils;
import android.util.Attribu... |
/*
* The MIT License
*
* Copyright 2022 Deimos.
*
* 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, modify, ... |
package org.sdmlib.models.pattern.util;
import org.sdmlib.models.pattern.AttributeConstraint;
import org.sdmlib.models.pattern.Pattern;
import org.sdmlib.models.pattern.PatternElement;
import org.sdmlib.models.pattern.PatternObject;
import org.sdmlib.models.pattern.ReachabilityGraph;
public class PatternPO extends Pa... |
package com.github.tDBN.dbn;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;
import java.util.Set;
import com.github.tDBN.utils.DisjointSets;
import com.github.tDBN.utils.Edge;... |
package org.drools.games.wumpus;
public class PitDeath {
} |
/**
*
*/
package net.vidageek.mirror.reflect;
import java.lang.reflect.Constructor;
import java.util.List;
import net.vidageek.mirror.Preconditions;
import net.vidageek.mirror.dsl.Mirror;
import net.vidageek.mirror.exception.MirrorException;
import net.vidageek.mirror.provider.ReflectionProvider;
import net.vidage... |
/*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright 2006-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/licens... |
/*******************************************************************************
* Copyright 2012 Apigee 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.... |
package com.zebrunner.agent.core.registrar.label;
import com.zebrunner.agent.core.annotation.XrayTestKey;
import com.zebrunner.agent.core.registrar.Xray;
import com.zebrunner.agent.core.registrar.domain.LabelDTO;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Method;
import java.util.Arrays;
impo... |
//
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.11
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de o... |
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2014 Oracle and/or its affiliates. All rights reserved.
*
*/
/**
* The event used to track changes to the composition and status of the
* group. An instance of this event is created each time there is any change to
* the group.... |
package refdiff.core.rm2.analysis.codesimilarity;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import org.eclipse.jdt.core.ToolFactory;
import org.eclipse.jdt.core.compiler.IScanner;
import org.eclipse.jdt.cor... |
public class Hranol extends Ctverec // Cetverec prepsan na Ctverec 2. chyba
{
private float hrana;
boolean zeDreva;
static int pocetHranolu=0; // final prepsan na static 3. chyba
// konstruktor se zadanim delky hrany, vysky a materialu
Hranol(float podstava,float vyska, boolean drevena)
{
super(podstava); ... |
/*
* 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 may ... |
package com.jordantanjunwen.user.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jordantanjunwen.user.domain.Login;
import com.jordantanjunwen.user.domain.User;
import com.jordantanjunwen.user.entity.CustomerEntity;
import com.jord... |
package com.pengrad.telegrambot;
import com.pengrad.telegrambot.impl.FileApi;
import com.pengrad.telegrambot.model.request.*;
import com.pengrad.telegrambot.request.*;
import com.pengrad.telegrambot.response.*;
/**
* stas
* 5/1/16.
*/
@Deprecated
public abstract class OldTelegramBot {
private final FileApi fi... |
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* y... |
/*
* Copyright (c) 2004 Steve Northover and Mike Wilson
*
* 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, modif... |
package tjsm.tjsm.kr;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class MainController {
@RequestMapping("/")
public String home() {
return "main";
}
@RequestMapping("about_us.do")
public String about_us() {
return "a... |
package io.appform.databuilderframework.flowtest.data;
import io.appform.databuilderframework.model.Data;
public class ILD extends Data {
public ILD() {
super("ILD");
}
} |
/*
* 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 2010-2013 JetBrains s.r.o.
*
* 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... |
class b69sUksL {
}
class PVfoz1nD2GAwXo {
}
class ut {
public int[] EBAV4Y0k0WYU () throws PHhjR {
while ( !!-true[ !( -8576861.UGp).Bow5]) return;
A FiBPK;
!this[ true.gz_2ZmJS];
boolean[] NddK = this.lRq_O7sFZCT4() = -!--new R2().Hs9c1AdGOoXEK;
return;
while (... |
package io.opensphere.mantle.data.geom.factory.impl;
import io.opensphere.core.Toolbox;
import io.opensphere.core.geometry.AbstractRenderableGeometry;
import io.opensphere.core.geometry.LineOfBearingGeometry;
import io.opensphere.core.geometry.constraint.Constraints;
import io.opensphere.core.geometry.renderproperties... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.