text
stringlengths
7
995k
/* * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package qrcoba.jun.dev.qrcoba.ui.pickedfromgallery; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.view.Menu; import android.view.MenuItem; import android.view.View; import com.bumptech.glide.Glide; import androidx.appcompat.app.ActionBar; import androidx.appco...
/** */ package primitives; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Header</b></em>'. * <!-- end-user-doc --> * * * @see primitives.PrimitivesPackage#getHeader() * @model * @generated */ public interface Header extends AbstractType { } // Header
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Comparator; import net.runelite.mapping.Export; import net.runelite.mapping.Implements; import net.runelite.mapping.ObfuscatedName; import net.runelite.mapping.ObfuscatedSignature; import net.runelite.rs.Reflection; @ObfuscatedName("lt")...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package org.kyojo.schemaorg.m3n3.core.impl; import java.util.ArrayList; import java.util.List; import org.kyojo.schemaorg.SimpleJsonBuilder; import org.kyojo.schemaorg.m3n3.core.Container; import org.kyojo.schemaorg.m3n3.core.DataType.Number; import org.seasar.doma.Transient; public class MIN_PRICE implements Conta...
/** * Copyright (c) 2008-2014 Ardor Labs, Inc. * * This file is part of Ardor3D. * * Ardor3D is free software: you can redistribute it and/or modify it * under the terms of its license which may be found in the accompanying * LICENSE file or at <http://www.ardor3d.com/LICENSE>. */ package com.ardor3d.extension...
/* * Copyright 2006-2009 Odysseus Software 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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable l...
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.nextLine(); s = s.replace("apa", "a"); s = s.replace("ipi", "i"); s = s.replace("epe", "e"); s = s.replace("opo", "o"); s...
package javaBase.io.nio; import java.io.FileInputStream; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; /** * 读取并显示 */ public class ReadAndShow { static public void main(String args[]) throws Exception { FileInputStream fileInputStream = new FileInputStream("readandshow.txt"); ...
package applica.framework.data.mongodb.constraints; import applica.framework.data.Entity; /** * Applica (www.applicamobile.com) * User: bimbobruno * Date: 30/10/14 * Time: 16:55 */ public interface ReferencedConstraint<T1 extends Entity, T2 extends Entity> { Class<T1> getPrimaryType(); //String getPrima...
/* Derby - Class org.apache.derby.impl.store.raw.data.ContainerActionOnCommit 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 thi...
/** * Copyright : www.aposoft.cn */ package cn.aposoft.tutorial.crypt.rsa; import java.math.BigInteger; /** * @author LiuJian * @date 2017年4月22日 * */ public class RsaKnowledge { /** * RSA算法 * * @param args */ public static void main(String[] args) { // 定义两个质数 f...
package at.favre.lib.dali.builder.live; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.os.Handler; import android.os.Looper; import android.support.v4.view.ViewCompat; import android.util.Log; import android.view.View; import ...
/** * Copyright 2017 David Green * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed t...
package com.yildizan.newsfrom.api.entity; import com.yildizan.newsfrom.api.utility.TimeConverter; import lombok.Data; import javax.persistence.*; @Data @MappedSuperclass public class BaseNews { @Id private Integer id; private String title; private String description; private String link; pr...
package com.tianjunwei.learn.learn1; import java.io.InputStream; import java.util.HashMap; import java.util.Map; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import com.tianjunwei.learn.learn1.entity.User; ...
/* * The MIT License * * Copyright 2017 pj.alvarado10. * * 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, m...
package com.ww7h.ww.common.natives; public class ConstantNative { }
package site.dungang.luosimao; import java.io.File; import java.io.IOException; import java.security.KeyManagementException; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; import java.util.Iterator; import java.util.List; import java.util.Map; import org.apache.http.HttpEntity;...
/* 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...
// Given a binary tree, determine if it is height-balanced. // For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1. /** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left...
/* * Copyright 2018 The Higgs 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 agree...
package edu.wit.cs.comp1000.tests; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.PrintStream; import java.security.Permission; import edu.wit.cs.comp1000.PA3a; import junit.framework.TestCase; public class PA3aTestCase extends TestCase { @SuppressWarnings("serial") pri...
package io.github.zhtmf; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.List; import org.junit.Assert; import org.junit.Test; import io.github.zhtmf.DataPacket; import io.github.zhtmf.annotat...
/* * 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 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.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 诊断信息 * * @author auto create * @since 1.0, 2019-04-17 16:16:07 */ public class DiagnosisInfo extends AlipayObject { private static final long serialVersionUID = 2776819921868844147L; /** ...
package com.kenny.movie.config.datasource; import com.alibaba.druid.pool.DruidDataSource; import com.baomidou.mybatisplus.plugins.OptimisticLockerInterceptor; import com.baomidou.mybatisplus.plugins.PaginationInterceptor; import com.kenny.movie.core.config.properties.DruidProperties; import com.kenny.movie.core.datasc...
package org.opentoolset.poc.expect; import java.nio.file.Path; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.Map; import java.util.concurrent.TimeUnit; import org.junit.jupiter.api.Assertions; import net.sf.expectit.Result; import net.sf.expectit.interact.InteractBuilder...
import org.voltdb.*; import java.io.File; import java.io.RandomAccessFile;; /* * usage: * exec Delete p_key, file_name, user_name; */ public class Delete extends VoltProcedure { public final SQLStmt getCurrDir = new SQLStmt("SELECT current_directory FROM UserInfo " + "WHERE user_n...
package io.vertx.test.codegen.testapi; import io.vertx.codegen.annotations.VertxGen; /** * @author <a href="http://tfox.org">Tim Fox</a> */ @VertxGen public interface VertxGenClass1 { void foo(String str); }
package com.jorgeldra.seio.utils; import java.util.ArrayList; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import android.app.Activity; import android.app.ProgressDialog; import com.jorgeldra.seio.MainActivity; import com.jorgeldra.seio.entidad.AlmacenPrograma; import com.jor...
package com.java.study.algorithm.zuo.cadvanced.advanced_class_05; /** * 二叉树中,一个节点可以往上走和往下走,那么从节点A总能走到节点 B。 * 节点A走到节点B的距离为:A走到B最短路径上的节点个数。 求一棵二叉树上的最远距离 */ public class Code_03_MaxDistanceInTree{ }
/** * */ package com.oregonscientific.bbq.ble; import java.io.Serializable; import java.util.Arrays; import android.bluetooth.BluetoothGattCharacteristic; import android.os.Parcel; import android.os.Parcelable; /** * @author aaronli * */ public class Command implements Parcelable { /** * */ private int...
/* * Autopsy Forensic Browser * * Copyright 2013 Basis Technology Corp. * Contact: carrier <at> sleuthkit <dot> org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http:/...
/* * Copyright 2019 Centre for Computational Geography, University of Leeds. * * 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 * * U...
package cui.repair.store.service; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import cui.repair.store.dao.BuildingDao; import cui.repair.store.entity.Building; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java....
/* * 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 ru.job4j.set; import ru.job4j.list.DynamicList; import java.util.Iterator; /** * @author Vyacheslav Khan (mailto: beckkhan@mail.ru) * @version 1.0 * @since 15.10.2018 */ public class SimpleSet<E> implements Iterable<E> { private DynamicList<E> list = new DynamicList<>(); public void add(E e) { ...
// 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 git4idea; import com.intellij.dvcs.branch.DvcsTaskHandler; import com.intellij.openapi.project.Project; import com.intellij.util.Function; import com.intellij.util.contai...
/* * Copyright 2002-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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
class SneakyThrowsPlain { SneakyThrowsPlain() { try { System.out.println("constructor"); } catch (final java.lang.Throwable $ex) { throw lombok.Lombok.sneakyThrow($ex); } } SneakyThrowsPlain(int x) { this(); try { System.out.println("constructor2"); } catch (final java.lang.Throwable $ex) { t...
/** * 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...
package com.planet_ink.coffee_mud.Abilities.Druid; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.core.collections.*; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.planet_ink.coffee_mud.Areas.interfaces.*; import com.pl...
boolean next_perm(int[] a) { int len = a.length; for (int i = len - 2, j = 0; i >= 0; --i) { if (a[i] < a[i + 1]) { j = len - 1; for (; a[j] <= a[i]; --j) ; int p = a[j]; a[j] = a[i]; a[i] = p; j = i + 1; for (int ed = l...
/* * Copyright (C) 2014-2016 LinkedIn Corp. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use * this file except in compliance with the License. You may obtain a copy of the * License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
/* * Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package org.hl7.fhir.r4.model.codesystems; /* 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 co...
/* * Copyright 2019 Baidu, 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 writ...
/* * oxTrust is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */ package org.gluu.oxtrust.ldap.service; import java.io.IOException; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.concurrent.Lin...
package com.zzqfsy.project.conf.redis; import io.lettuce.core.ClientOptions; import org.redisson.Redisson; import org.redisson.api.RedissonClient; import org.redisson.config.Config; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Value; import org.spri...
package trip.spi; import lombok.Getter; @Getter public class Readable { @Provided PrintableWord word; }
/* * Copyright 2015-2020 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...
/*********************************************************************************** * SmsMessageParserImpl.java * Copyright (c) 2008 Sakai Project/Sakai Foundation * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. ...
package org.camunda.bpm.engine.test.api.runtime; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import org.camunda.bpm.engine.delegate.DelegateExecution; import org.camunda.bpm.engine.delegate.JavaDelegate; public class AddVariablesService im...
package com.intershop.oms.test.servicehandler.transmissionservice.v1_0.mapping; import org.mapstruct.InheritInverseConfiguration; import org.mapstruct.Mapper; import org.mapstruct.factory.Mappers; import com.intershop.oms.rest.transmission.v1.model.SortDirection; import com.intershop.oms.test.businessobject.OMSSortDi...
/* * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 * (the "License"). You may not use this work except in compliance with the License, which is * available at www.apache.org/licenses/LICENSE-2.0 * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDI...
import java.util.*; import java.io.*; public class StackWithMax { class FastScanner { StringTokenizer tok = new StringTokenizer(""); BufferedReader in; FastScanner() { in = new BufferedReader(new InputStreamReader(System.in)); } String next() throws IOException...
/* * Copyright (c) 2017, 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 applicabl...
package net.sf.py4j.defaultserver.preferences; import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer; import org.eclipse.jface.preference.IPreferenceStore; import py4j.GatewayServer; import net.sf.py4j.defaultserver.DefaultServerActivator; /** * Class used to initialize default preference value...
/* * 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 ...
// Template Source: BaseEntityWithReferenceRequestBuilder.java.tt // ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ----------------...
package org.checkerframework.dataflow.cfg.node; import com.sun.source.tree.NewArrayTree; import com.sun.source.tree.Tree; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Objects; import javax.lang.model.type.TypeMirror; import org.checkerframework.checker.nullness.qual....
/* * Copyright 2014 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...
/** * MIT License * * Copyright (c) 2010 - 2020 The OSHI Project Contributors: https://github.com/oshi/oshi/graphs/contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software withou...
package com.dingdong.party.gateway.config; import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.Ordered; import org.springframework.web.cors.CorsConfiguration;...
package com.github.fosin.anan.auth.controller; import com.github.fosin.anan.auth.service.inter.PermissionService; import com.github.fosin.anan.cloudresource.constant.UrlPrefixConstant; import com.github.fosin.anan.cloudresource.dto.AnanUserAllPermissionDto; import com.github.fosin.anan.cloudresource.dto.request.AnanPe...
/* Copyright 2020 Mrudul Tora (ToraLabs) 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 in writing, softw...
/* * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package com.github.chen0040.data.frame; import org.testng.annotations.Test; import java.util.Random; import static org.testng.Assert.*; /** * Created by xschen on 6/6/2017. */ public class SamplerUnitTest { private static Random random = new Random(); public static double rand(){ return random.next...
/** * Copyright (c) 2011-2017, 玛雅牛 (myaniu AT gmail dot 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 ...
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
package com.wechat.pay.contrib.apache.httpclient.notification; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; /** * 请求体解析结果 * * @author lianup */ @JsonIgnoreProperties(ignoreUnknown = true) public class Notification { @JsonProperty("id") ...
/* Copyright (c) 2017 FIRST. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided that * the following conditions are met: * * Redistributions of source code must retain the above cop...
/* * Copyright 2016 JBoss by 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 agr...
/* * Copyright (c) 2014-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 org.firstinspires.ftc.teamcode.technicaldifficulties.subsystems; import com.disnodeteam.dogecommander.Subsystem; import com.qualcomm.robotcore.hardware.DcMotor; import com.qualcomm.robotcore.hardware.DcMotorSimple; import com.qualcomm.robotcore.hardware.Gamepad; import com.qualcomm.robotcore.hardware.HardwareM...
package com.example.tayor.karz.views.payment; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import androidx.annotation.NonNull; import androidx.appcompat.app.AlertDialog; import android.util.Log; import android.view.View; import android.webkit.WebSettings; import andr...
package com.example.missj.crimelintent; import java.util.UUID; /** * Created by miss.j on 2017/10/11. */ public class Crime { private UUID mId; private String mTitle; public Crime() { mId = UUID.randomUUID(); } public UUID getId() { return mId; } public Str...
package de.ugoe.cs.smartshark.mutaSHARK.util.expressions; public class DecrementPrefixExpressionOperatorExpression extends PrefixExpressionOperatorExpression { @Override protected String getLabel() { return "--"; } }
package br.ufrn.imd.appointmentscheduler.ms.notification.entity; import javax.persistence.*; import java.util.Date; @Entity @Table(name = "notifications") public class Notification extends BaseEntity { @Column(name = "title") private String title; @Column(name = "message") private String message; ...
package rems.brewtaste.repository; import rems.brewtaste.domain.Authority; import org.springframework.data.jpa.repository.JpaRepository; /** * Spring Data JPA repository for the Authority entity. */ public interface AuthorityRepository extends JpaRepository<Authority, String> { }
package downingjj.prismatech; import downingjj.prismatech.capability.dna.CapabilityDNA; import downingjj.prismatech.proxy.IProxy; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fluids.FluidRegistry; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.SidedProxy; im...
/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distribute...
/* * Copyright 1999-2015 dangdang.com. * <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 law or...
package com.yin.bolgs.sys.sysuserauthority.vo; import com.yin.bolgs.common.pojo.PageCondition; import com.yin.bolgs.sys.sysauthority.vo.SysAuthorityVo; import com.yin.bolgs.sys.sysuser.vo.SysUserVo; import lombok.Data; import java.io.Serializable; import java.util.Date; @Data public class SysUserAuthorityVo extends ...
package de.uka.ipd.sdq.dsexplore.qml.handling; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class Activator extends AbstractUIPlugin { // The plug-in ID...
package company.alibaba; import java.util.Random; /** * @Description 给你一个整数数组nums,请你将该数组升序排列。 * @Author Zhang Qihang * @Date 2022/2/3 14:53 */ public class _912sortArray { //1. 快排 public int[] sortArray(int[] nums) { quickSort(nums, 0, nums.length - 1); return nums; } public void ...
/************************************************************************************ * Program: ThemePark.java * * Date: May 1, 2019 * * Purpose: Contains logic for the theme park operations...
/******************************************************************************* * Copyright (c) 2005, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
package org.cee.webreader.client.ui; /* * #%L * News Reader * %% * Copyright (C) 2013 Andreas Behnke * %% * 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....
/* Copyright 2012-2013 SpringSource. * * 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 com.hamusuke.damageindicator.network; import com.hamusuke.damageindicator.client.DamageIndicatorClient; import net.minecraft.network.PacketBuffer; import net.minecraft.util.text.ITextComponent; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.fml.DistExecutor; import net.minecraftforge....
package com.medicapital.client.pages.menu; import static com.medicapital.client.log.Tracer.tracer; import com.google.gwt.event.shared.EventBus; import com.google.gwt.user.client.ui.RootPanel; import com.medicapital.client.dao.DaoFactory; import com.medicapital.client.event.ClientEvent; import com.medicapital.client.e...
package org.hisp.dhis.trackedentity.action.program; /* * Copyright (c) 2004-2017, 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 re...
package com.google.api.ads.dfp.jaxws.v201502; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * * Error for AdSense related API calls. * * * <p...
/* * Copyright (C) 2020 Intel Corporation. All rights reserved. SPDX-License-Identifier: Apache-2.0 */ package com.openiot.cloud.base.help; import static org.assertj.core.api.Assertions.assertThat; import com.openiot.cloud.base.Application; import java.util.concurrent.CompletableFuture; import java.util.concurrent...
package xyz.nkomarn.harbor.util; import com.google.common.base.Enums; import net.md_5.bungee.api.ChatMessageType; import net.md_5.bungee.api.chat.BaseComponent; import net.md_5.bungee.api.chat.TextComponent; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.World; import org.bukkit.boss.BarColor...
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2012 Oracle and/or its affiliates. All rights reserved. * * Oracle and Java are registered trademarks of Oracle and/or its affiliates. * Other names may be trademarks of their respective owners. * * The contents of this file are subject...