text
stringlengths
7
1.01M
package org.examples.ssh.util; import java.text.MessageFormat; import java.util.Iterator; import java.util.Map; /** * @Title: SqlUtil.java * @Package org.examples.spring.util * @Description: TODO(用一句话描述该文件做什么) * @author dusf * @date 2016年3月25日 上午11:48:35 */ public class SqlUtil { public static final String...
package collection1; import java.util.*; class Student1 { private int rno; private String name; Student1(int rno, String name) { this.rno = rno; this.name = name; } public int hashCode() { return rno; } public boolean equals(Object o) { Student1 s = (Student1) o; if (rno == s.rn...
package cn.suniper.mesh.transport.tcp; import com.netflix.client.RequestSpecificRetryHandler; import org.junit.Test; import java.net.SocketException; import java.net.URI; import static org.junit.Assert.*; /** * @author Rao Mengnan * on 2018/7/28. */ public class AsyncLoadBalancingTcpClientTest { @Tes...
package eu.bcvsolutions.idm.extras.scheduler.task.impl; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.UUID; impo...
package org.appenders.log4j2.elasticsearch.bulkprocessor; /*- * #%L * log4j2-elasticsearch * %% * Copyright (C) 2018 Rafal Foltynski * %% * 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 a...
/* 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 (C) 2016 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 app...
package com.cloudrain.derecho.fundamental.echo; import io.netty.bootstrap.Bootstrap; import io.netty.channel.*; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.SocketChannel; import io.netty.channel.socket.nio.NioSocketChannel; /** * Created by lugan on 12/29/2016. */ public class Echo...
package com.goufn.permission.common.config; import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; import com.baomidou.mybatisplus.extension.plugins.PerformanceInterceptor; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.spr...
package com.ggbwallet.app.web3; import com.ggbwallet.token.entity.EthereumTypedMessage; public interface OnSignTypedMessageListener { void onSignTypedMessage(EthereumTypedMessage message); }
/* * Copyright (C) 2015 Inderjeet Singh * * 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 com.bjghhnt.app.treatmentdevice.activities; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.database.Cursor; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.drawable.BitmapDrawable; import android.os...
package com.github.joschi.jadconfig.repositories; import com.github.joschi.jadconfig.RepositoryException; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import java.util.Collections; import java.util.HashMap; import java.util.Map; import static org.junit.Assert.fail; /** * Unit tests for ...
package io.dropwizard.kubernetes.http.security; import com.fasterxml.jackson.annotation.JsonProperty; import io.fabric8.kubernetes.client.Config; import io.fabric8.kubernetes.client.internal.SSLUtils; import okhttp3.OkHttpClient; import okhttp3.TlsVersion; import java.io.File; import java.security.GeneralSecurityExce...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/websecurityscanner/v1alpha/web_security_scanner.proto package com.google.cloud.websecurityscanner.v1alpha; /** * * * <pre> * Request for the `ListCrawledUrls` method. * </pre> * * Protobuf type {@code google.cloud.websecuritysc...
package com.sparrow.collect.website.handler; import java.io.File; import java.io.FilenameFilter; import java.util.HashMap; import java.util.Map; import com.sparrow.collect.website.lucene.creator.IFileCreator; import com.sparrow.collect.website.utils.PathResolver; import org.apache.commons.lang3.StringUtils; import or...
/* * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) 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 com.hxcf.manager.config; import com.github.xiaoymin.knife4j.spring.annotations.EnableSwaggerBootstrapUi; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builde...
/* * 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...
/* ***** BEGIN LICENSE BLOCK ***** Version: Apache 2.0/GPL 3.0/LGPL 3.0 CCT - Computational Chemistry Tools Jamberoo - Java Molecules Editor Copyright 2008-2015 Dr. Vladislav Vasilyev Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with...
/** * MIT License * * Copyright (c) 2017-2019 Yurii Dubinka * * 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, co...
package io.github.nandandesai.twitterscraper4j.models; public class Media { public enum TYPE{ PICTURE, VIDEO, GIF } private TYPE type; private String link; public Media(TYPE type, String link) { this.type = type; this.link = link; } public TYPE getType() { ...
package com.osawaseigo.netty.promises; import io.netty.channel.ChannelHandler; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; import io.netty.channel.SimpleChannelInboundHandler; public class MyAppServerHandler extends SimpleChannelInboundHandler<String> { ...
/* * 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 ma...
/** * CloudMapping - Sistema de Extração de Dados de Mapeamento dos Experimentos em Computação em Nuvem * * Copyright (c) AssertLab. * * Este software é confidencial e propriedade da AssertLab. Não é permitida sua distribuição ou divulgação * do seu conteúdo sem expressa autorização do AssertLab. Este arquivo ...
/* * Copyright 2012 JBoss 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 agreed to in ...
package org.nodes.util.bootstrap; import static nl.peterbloem.kit.Functions.log2; import static nl.peterbloem.kit.Functions.log2Sum; import static nl.peterbloem.kit.LogNum.fromDouble; import static nl.peterbloem.kit.Series.series; import static org.nodes.util.bootstrap.BCaCI.beta; import java.util.ArrayList; import j...
package com.plantserver.service; import org.apache.log4j.Logger; import org.influxdb.InfluxDB; import org.influxdb.dto.BatchPoints; import org.influxdb.dto.Point; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jms.annotation.JmsListener; import org.springframework.stereotype....
package protocol.network.messages.game.context.mount; import java.io.IOException; import java.util.ArrayList; import java.util.List; import protocol.utils.ProtocolTypeManager; import protocol.network.util.types.BooleanByteWrapper; import protocol.network.NetworkMessage; import protocol.network.util.DofusDataReader; i...
/* MazeMode: A Maze-Solving Game Copyright (C) 2008-2010 Eric Ahnell Any questions should be directed to the author via email at: products@puttysoftware.com */ package com.puttysoftware.mazemode.objects; import com.puttysoftware.mazemode.generic.GenericCarpet; public class RoseCarpet extends GenericCarpet { //...
/** * Leetcode - p0104_maximum_depth_of_binary_tree */ package com.abc.leetcode.p0104_maximum_depth_of_binary_tree; // basic util import java.util.*; import com.ciaoshen.leetcode.util.*; // leetcode-helper library import com.ciaoshen.leetcode.helper.PropertyScanner; // junit import org.junit.runner.JUnitCore; impor...
package com.atguigu.gmall.ums.entity; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.util.Date; import lombok.Data; /** * 收货地址表 * * @author fengge * @email fengge@atguigu.com * @date 2020-10-13 14:06:30 */ @Dat...
/* * Copyright 2010-2019 Tim Boudreau * * 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 ex05.pyrmont.valves; import org.apache.catalina.*; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import java.io.IOException; public class ClientIPLoggerValve implements Valve, Contained { protected Container container; @Override public void invoke(Request request,...
package net.minecraft.world.entity.animal; import net.minecraft.core.BlockPos; import net.minecraft.nbt.CompoundTag; import net.minecraft.network.syncher.EntityDataAccessor; import net.minecraft.network.syncher.EntityDataSerializers; import net.minecraft.network.syncher.SynchedEntityData; import net.minecraft.sounds.S...
/** * Logback: the reliable, generic, fast and flexible logging framework. * Copyright (C) 1999-2015, QOS.ch. All rights reserved. * * This program and the accompanying materials are dual-licensed under * either the terms of the Eclipse Public License v1.0 as published by * the Eclipse Foundation * * ...
/* * 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 cookbuddy.logic.commands; import static java.util.Objects.requireNonNull; import java.util.List; import cookbuddy.commons.core.Messages; import cookbuddy.commons.core.index.Index; import cookbuddy.logic.commands.exceptions.CommandException; import cookbuddy.model.Model; import cookbuddy.model.recipe.Recipe; ...
/* * Copyright (c) 2015 Ha Duy Trung * * 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 io.github.mariazevedo88.travelsjavaapi.exception; /** * Class that implements TransactionInvalidUpdateException in the API. * * @author Mariana Azevedo * @since 01/04/2020 */ public class TravelInvalidUpdateException extends Exception{ private static final long serialVersionUID = -6443362632495638948L;...
package com.leyou.order.config; import com.leyou.common.utils.IdWorker; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration @EnableConfigurationProperties(IdWor...
/** * Copyright 2009-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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unle...
/* * 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...
package mikenakis.tyraki.test; import mikenakis.kit.functional.Procedure0; import mikenakis.tyraki.MutableEnumerator; import mikenakis.tyraki.legacy.LegacyCollections; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * Test. * * @author michael.gr */ public class T02_Enumerator_On_...
package org.cidrz.project.zeprs.valueobject.gen; import org.cidrz.project.zeprs.valueobject.gen.*; import org.cidrz.project.zeprs.valueobject.EncounterData; import org.cidrz.webapp.dynasite.valueobject.Patient; import java.sql.Date; import java.util.Set; import java.sql.Time; import org.cidrz.webapp.dynasite.valueobje...
package com.halink.scaffold.common.entity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; @ApiModel(value = "com-ha...
package uk.ac.manchester.cs.goblin.model; /** * @author Colin Puleston */ class ImpliedValueConstraint extends Constraint { public ConstraintSemantics getSemantics() { return ConstraintSemantics.IMPLIED_VALUE; } ImpliedValueConstraint(ConstraintType type, Concept sourceValue, Concept targetValue) { super(...
package com.project0.model; public class Transaction { private long id; private long accountId; private int type; private double amount; public Transaction() { } public Transaction(long accountId, int type, double amount) { this.accountId = accountId; this.type = type; ...
package org.json; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface JSO...
/** * */ package bgi.ipeak; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.HashMap; import java.util.Set; import java.util.Vector; import org.kohsuke.args4j.CmdLineException; import...
package com.example.notispanner; 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 ...
/* * Copyright 2017 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 a...
/* * Copyright 2021 Red Hat * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
package com.wealth.wealthusers.controller; import com.wealth.wealthusers.common.ControllerUtil; import com.wealth.wealthusers.common.LoadUtil; import com.wealth.wealthusers.entity.WcWealthManager; import com.wealth.wealthusers.service.WcWealthManagerService; import org.springframework.beans.factory.annotation.Autowire...
package openanonymizer.model.wrapper; import openanonymizer.model.describer.EntityDescriber; import java.util.Map; /** * Container for {@link openanonymizer.model.dataset.DataSet} values. * * @version 0.1 * @since Open Anonymizer 1.0.0 */ public interface EntityWrapper { /** * @return id of entity ...
/** * Copyright 2010-2014 Axel Fontaine * * 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 o...
/* * Copyright 2006-2010 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...
package io.atlasmap.core; import java.util.ArrayList; import java.util.List; import io.atlasmap.v2.AtlasMapping; import io.atlasmap.v2.BaseMapping; import io.atlasmap.v2.Collection; import io.atlasmap.v2.Field; import io.atlasmap.v2.Mapping; public class AtlasModuleSupport { public static List<String> listTarget...
/* * Copyright 2021-2022 Aklivity Inc. * * Aklivity licenses this file to you 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) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ pa...
/* * CommonPackage * * Copyright (c) 2021-2022 * * @author: Viet-Man Le (vietman.le@ist.tugraz.at) */ package at.tugraz.ist.ase.common; import lombok.Getter; import lombok.experimental.UtilityClass; import lombok.extern.slf4j.Slf4j; import java.util.Random; /** * Random stuff for projects * * This random u...
package org.rcsb.cif.api.generated; import org.rcsb.cif.model.*; import javax.annotation.Generated; import java.util.Map; /** * Data items in the category record overall map properties such * as correlation, real space Rfactors and the Zscore calculated * from refmac and mapman. */ @Generated("org.rcsb.cif.gener...
/* * Copyright 2000-2017 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...
package jsky.image.gui; import edu.gemini.shared.util.immutable.Pair; import jsky.image.ImageChangeEvent; import jsky.util.I18N; import javax.swing.*; import java.util.HashMap; public final class ImageScaleMenu extends JMenu { private static final I18N _I18N = I18N.getInstance(ImageDisplayMenuBar.class); ...
package com.xero.api; import com.google.api.client.auth.oauth.OAuthAuthorizeTemporaryTokenUrl; public class OAuthAuthorizeToken { private String authUrl = null; public OAuthAuthorizeToken(Config c, String tempToken) { OAuthAuthorizeTemporaryTokenUrl accessTempToken = new OAuthAuthorizeTemporaryTokenUrl(c.get...
/* * 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 info.hebbeker.david.memorex; import android.content.Context; import android.content.SharedPreferences; import android.content.res.TypedArray; import android.media.AudioManager; import android.media.MediaPlayer; import android.media.SoundPool; import android.preference.PreferenceManager; import android.util.Att...
package com.brucetoo.videoplayer.videomanage.messages; import android.content.Context; import android.media.MediaPlayer; import android.net.Uri; import com.brucetoo.videoplayer.videomanage.interfaces.VideoPlayerManagerCallback; import com.brucetoo.videoplayer.videomanage.meta.MetaData; import com.brucetoo.videoplayer...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.applicationinsights.models; import com.azure.core.annotation.Fluent; import com.fasterxml.jackson.annotation.JsonProperty; /** ...
package Chapter20; import java.util.*; public class TestArrayAndLinkedLiest { public static void main(String[] args) { List<Integer> arrayList = new ArrayList<>(); arrayList.add(1); arrayList.add(2); arrayList.add(3); arrayList.add(1); arrayList.add(1); arr...
package org.cjzheng01.inventory.pojo.response; import java.util.List; public class ListResponse <T> extends CommonResponse { private static final long serialVersionUID = 1610792978872732678L; private List<T> data; public List<T> getData() { return data; } public ListResponse<T> setDat...
package net.zhongli.tech.luwu.admin.module.system.contorller; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import io.swagger.models.Model; import net.zhongli.tech.luwu.admin.common.annotation.OperateLog; import net.zhongli.tech.luwu.admin.common.base.BaseController; import net.zhongli.te...
/* * Copyright 2018 JDCLOUD.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 required by applicable law or agreed to in...
package ru.sbtqa.tag.pagefactory.tasks; import java.io.IOException; import org.apache.commons.lang3.SystemUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ru.sbtqa.tag.pagefactory.properties.Configuration; import ru.sbtqa.tag.pagefactory.junit.CoreSetupSteps; public class KillProcessesTask imple...
package com.github.siyamed.shapeimageview.shader; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Bitmap; import android.graphics.BitmapShader; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Matrix; import android.graphics.Paint; im...
package fr.aumgn.bukkitutils.gson; import com.google.common.base.Charsets; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import com.google.gson.stream.JsonReader; import org.bukkit.plugin.Plugin; import java.io.*; import java.lang.reflect.Type; /** * Class which handle loading of .json reso...
package org.zstack.sdk; import java.util.HashMap; import java.util.Map; import org.zstack.sdk.*; public class GetL3NetworkMtuAction extends AbstractAction { private static final HashMap<String, Parameter> parameterMap = new HashMap<>(); private static final HashMap<String, Parameter> nonAPIParameterMap = ne...
package aleGrammar; import java.io.*; import java.util.ArrayList; import org.antlr.runtime.ANTLRFileStream; import org.antlr.runtime.ANTLRStringStream; import org.antlr.runtime.CharStream; import org.antlr.runtime.CommonTokenStream; import org.antlr.runtime.ParserRuleReturnScope; import org.antlr.runtime.RecognitionE...
package com.nicolas.coding.third.salvage; import android.support.v4.view.PagerAdapter; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; /** * A {@link PagerAdapter} which behaves like an {@link android.widget.Adapter} with view types and * view recycling. */ public abstra...
package org.hl7.fhir.r5.model; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, \ are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyr...
package com.ternence.designpattern.decorator; /** * create by 陶江航 at 2017/11/5 20:20 * * @version 1.0 * @email taojianghang@xinzhentech.com * @description 白衬衫的装饰器 * <p> * 现在我要利用这个类给白衬衫加一点装饰 */ public abstract class WhiteShirtDecorator implements Clothes { private Clothes clothes; public WhiteShirtDeco...
/* * Copyright (C) 2014 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...
package org.frameworkset.web.util; import java.io.ByteArrayOutputStream; import java.io.UnsupportedEncodingException; import org.frameworkset.util.Assert; /** * Utility class for URI encoding and decoding based on RFC 3986. * Offers encoding methods for the various URI components. * * <p>All {@code en...
// -------------------------------------------------------------------------------- // Copyright 2002-2021 Echo Three, 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:/...
/* * 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...
class zWePuftdJqiW { } class JenqXz4e { } class O0wD7fybfvUjP { } class LfY0qU { } class S_X7tZQgx { } class zIf23SKQ1tMk { public void[][][][][][] DonSB2e9; public boolean[][][] EYE (void DkvjfUgnAlgd, int DH_1H) throws hdGOy { void mv; { boolean McNWkdNMev58; ...
/* * The MIT License * * Copyright 2013 gburdell. * * 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 poussecafe.domain; import poussecafe.storage.internal.InternalDataAccess; public class SimpleAggregateDataAccess extends InternalDataAccess<SimpleAggregateId, SimpleAggregate.Attributes> { }
package com.ydl.iec.util; import com.ydl.iec.iec104.message.MessageDetail; import com.ydl.iec.iec104.enums.TypeIdentifierEnum; import com.ydl.iec.iec104.enums.UControlEnum; /** * * @ClassName: Iec104Util * @Description: 工具类 * @author YDL * @date 2020年5月13日 */ public class Iec104Util { private static int contr...
/* * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) 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 * * Unles...
// Copyright 2017 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...
package com.dbc.pessoaapi.security; import java.util.Optional; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotyp...
package com.zkc.barcodescan.activity; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.zkc.Service.CaptureService; import com.zkc.barcodescan.R; import android.app.Activity; import android.app.ListActivity; import android.c...
package wjc.ivan.coolweather.gson; import com.google.gson.annotations.SerializedName; public class Now { @SerializedName("tmp") public String temperature; @SerializedName("cond") public More more; public class More { @SerializedName("txt") public String info; } }
package de.uni.bielefeld.sc.hterhors.psink.obie.projects.scio.ontology.interfaces; import de.hterhors.obie.core.ontology.AbstractIndividual; import de.hterhors.obie.core.ontology.IndividualFactory; import de.hterhors.obie.core.ontology.annotations.AssignableSubClasses; import de.hterhors.obie.core.ontology.annotations...
/* * 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...
package com.tle.web.api.institution.interfaces; import com.tle.web.api.institution.interfaces.beans.InstitutionBean; import com.tle.web.api.interfaces.Institutional; import com.tle.web.api.interfaces.Institutional.Type; import com.tle.web.api.interfaces.beans.SearchBean; import com.wordnik.swagger.annotations.Api; imp...
package io.github.cexj.declarser.csv.stages.annotations.prevalidations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD,ElementType.TYPE}) pub...
package io.subutai.bazaar.share.dto.environment; public class EnvironmentTelemetryOperation { public enum State { FAILED, SUCCESS } private String containerId; private String targetHost; private String command; private State state; private int timeout; private String logs...