text
stringlengths
7
995k
package mb.spoofax.compiler.language; import mb.spoofax.compiler.util.Shared; import org.checkerframework.checker.nullness.qual.Nullable; /** * Facade for consistently and easily building a {@link LanguageProjectCompiler.Input} instance. */ public class LanguageProjectCompilerInputBuilder { public final ClassLo...
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annotation.WebServ...
package io.netty.mitix.rpc.v1.common; /** * 计算方法 */ public class CalculatorServiceImpl implements CalculatorService { @Override public double add(double op1, double op2) { return op1 + op2; } @Override public double substract(double op1, double op2) { return op1 - op2; } ...
package com.velocitypowered.proxy.protocol.packets; import com.velocitypowered.proxy.protocol.ProtocolConstants; import com.velocitypowered.proxy.protocol.MinecraftPacket; import com.velocitypowered.proxy.protocol.ProtocolUtils; import io.netty.buffer.ByteBuf; public class Handshake implements MinecraftPacket { p...
package top.hcode.hoj.util; import java.util.*; /** * @Author: Himit_ZH * @Date: 2021/1/1 13:00 * @Description: 常量枚举类 */ public class Constants { /** * @Description 提交评测结果的状态码 * @Since 2021/1/1 */ public enum Judge { // 提交失败 STATUS_NOT_SUBMITTED(-10, "Not Submitted"), ...
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.ecs20140526.models; import com.aliyun.tea.*; public class CreateStorageSetRequest extends TeaModel { @NameInMap("ClientToken") public String clientToken; @NameInMap("RegionId") @Validation(required = true) public String reg...
package net.minecraft.client.particle; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.BufferBuilder; import net.minecraft.entity.Entity; import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import...
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2011, by Object Refinery Limited and Contributors. * * Project Info: http://www.jfree.org/jfreechart/in...
/******************************************************************************* * Copyright (c) quickfixengine.org All rights reserved. * * This file is part of the QuickFIX FIX Engine * * This file may be distributed under the terms of the quickfixengine.org * license as defined by quickfixengine.org and ...
/* * Copyright 2013-2018 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 2018 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 araword.tts.strategy; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; import java.util.ArrayList; import java.util.logging.Level; import java.util.logging.Logger; import araword.G; import araw...
// Copyright (c) YugaByte, Inc. package com.yugabyte.yw.controllers; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.collect.ImmutableList; import com.yugabyte.yw.common.FakeApiHelper; import com.yugabyte.yw.common.FakeDBApplication; impo...
/* * 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...
package ru.job4j.tracker; /** * Метод расширяет класс UserAction. Находит заявку по идентификатору. */ public class FindById extends BaseAction { public FindById(int key, String name) { super(key, name); } @Override public void execute(Input input, Tracker tracker) { System.out.printl...
/* * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
/** * MIT License * Copyright (c) 2018 yadong.zhang * 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, ...
/* * Copyright 1999-2019 Seata.io Group. * * 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.autuan.common.exception.user; import com.autuan.common.exception.base.BaseException; /** * 用户信息异常类 * * @author ruoyi */ public class UserException extends BaseException { private static final long serialVersionUID = 1L; public UserException(String code, Object[] args) { super("us...
package com.hzitoun.camera2SecretPictureTaker; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will exec...
/* * ARX: Powerful Data Anonymization * Copyright 2012 - 2017 Fabian Prasser, Florian Kohlmayer and contributors * * 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....
package squeek.spiceoflife.compat; public class CompatHelper { }
package com.serverless; import com.amazonaws.ClientConfiguration; import com.amazonaws.regions.Regions; import com.amazonaws.services.lambda.runtime.Context; import com.amazonaws.services.lambda.runtime.LambdaLogger; import com.amazonaws.services.lambda.runtime.RequestHandler; import com.amazonaws.services.lambda.runt...
package com.click2sync.rc.srv.sapb1; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.Date; import java.util.Properties; import org.json.simple.JSONObject; public class Main { final String configFile = "./config.properti...
// 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.openeo.spring.api; import java.net.URI; import java.net.URISyntaxException; import java.util.Optional; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.openeo.spring.model.Billing; import org.openeo.spring.model.BillingPlan; import org.openeo.spring.model.Capa...
// Copyright 2014 The Bazel Authors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by appl...
package edu.gdut.imis.product.controller; import java.io.IOException; import java.io.PrintWriter; import java.util.List; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest;...
/** * Copyright (c) 2018, vindell (https://github.com/vindell). * * 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 ...
/* * Copyright 2000-2009 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 net.optifine.entity.model.anim; import java.io.IOException; import java.io.PushbackReader; import java.io.Reader; import java.io.StringReader; import java.util.ArrayList; import java.util.List; public class TokenParser { public static Token[] parse(String str) throws IOException, ParseException { ...
package com.sap.cloud.lm.sl.cf.persistence.processors; import java.io.InputStream; import com.sap.cloud.lm.sl.cf.persistence.model.FileEntry; /** * An interface for reading the content of an uploaded file. * * @author i072928 * */ public interface FileDownloadProcessor { /** * Gets file entry object r...
package Automata.diagram.view.factories; import java.util.ArrayList; import java.util.List; import org.eclipse.gmf.runtime.diagram.ui.view.factories.DiagramViewFactory; import org.eclipse.gmf.runtime.notation.MeasurementUnit; import org.eclipse.gmf.runtime.notation.NotationFactory; import org.eclipse.gmf.runtime.nota...
/* MIT License * * Copyright (c) 2012-2020 tecartlab.com * * 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, ...
package com.reactmastende; import android.app.Application; import com.facebook.react.ReactApplication; import com.airbnb.android.react.maps.MapsPackage; import com.lugg.ReactNativeConfig.ReactNativeConfigPackage; import com.airbnb.android.react.lottie.LottiePackage; import com.facebook.react.ReactNativeHost; import ...
/** * 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 uk.gov.hmcts.reform.divorce.orchestration.controller; import org.junit.Before; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.boot.test.mock.mockito.SpyBean; import org.springframework....
package org.tests.query; import io.ebean.xtest.BaseTestCase; import io.ebean.DB; import io.ebean.test.LoggedSql; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.tests.model.basic.Customer; import org.tests.model.basic.Order; import org.tests.model.basic.ResetBasicData; import jav...
// ============================================================================ // // Copyright (C) 2006-2021 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have receiv...
package io.kubernetes.client.openapi.models; import io.kubernetes.client.fluent.VisitableBuilder; import io.kubernetes.client.fluent.Nested; import java.util.ArrayList; import java.util.function.Predicate; import java.lang.Integer; import java.lang.Deprecated; import io.kubernetes.client.fluent.BaseFluent; import java...
/** * 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 * distribu...
package net.minecraft.entity.item; import net.minecraft.entity.Entity; import net.minecraft.init.Items; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.BlockPos; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.MathHelper; import net.minecra...
// Targeted by JavaCPP version 1.5-SNAPSHOT: DO NOT EDIT THIS FILE package org.bytedeco.onnx; import java.nio.*; import org.bytedeco.javacpp.*; import org.bytedeco.javacpp.annotation.*; import static org.bytedeco.onnx.global.onnx.*; @Namespace("google::protobuf::io") @Opaque @Properties(inherit = org.bytedeco.onnx....
/* * Copyright 2002-2016 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 ap...
/******************************************************************************* * 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...
/* * Copyright (c) 2013 3 Round Stones Inc., Some 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 requir...
package com.mercadopago.android.px.internal.features.express.slider; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; impo...
package net.hydrogen2oxygen.markdowntohomepage.domain; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.util.HashMap; import java.util.Map; @Data @AllArgsConstructor @NoArgsConstructor public class ConfigurationObject { private Map<String,Website> websites = new...
/* * 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.net.*; import java.io.*; public class TCPClient { public static void main (String args[]) { // arguments supply message and hostname Socket s = null; try{ int serverPort = 7896; s = new Socket(args[1], serverPort); DataInputStream in = new DataInputStream( s.getInputStream()); DataOutput...
/* * Copyright 2015-2021 OpenEstate.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://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
package com.github.teocci.codesample.javafx.threads.foo; import com.github.teocci.codesample.javafx.models.Foo; import com.github.teocci.codesample.javafx.tasks.foo.FooModifierTask; import javafx.concurrent.Service; import javafx.concurrent.Task; /** * Created by teocci. * * @author teocci@yandex.com on 2018-Jul-2...
package me.zhengjie.modules.article.rest; import me.zhengjie.aop.log.Log; import me.zhengjie.modules.article.domain.Article; import me.zhengjie.modules.article.service.ArticleService; import me.zhengjie.modules.article.service.dto.ArticleQueryCriteria; import org.springframework.beans.factory.annotation.Autowired; imp...
/* * Copyright 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 "license" ...
/* * Copyright (c) 2016 - 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 ut...
package com.nd.shapedexamproj.activity; import android.app.Activity; import android.os.Bundle; import android.text.TextUtils; import com.nd.shapedexamproj.App; import com.nd.shapedexamproj.R; import com.nd.shapedexamproj.util.UIHelper; /** * 主界面--课堂 */ public class HomeActivity extends Activity{ @Override...
package com.fasterxml.jackson.databind.ser.jdk; import java.math.BigDecimal; import java.util.*; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.databind.*; public class BigDecimalAsString2519Test extends BaseMapTest { static class Bean2519Typed { public List<BigDecimal> ...
package com.hellobike.base.tunnel.spi.kafka; import lombok.Data; /** * @author machunxiao create at 2019-01-04 */ @Data public class KafkaClientConfig { private String server; private String ackConfig; private String keySerializer; private String valSerializer; }
package com.pfcstyle.js.performance.loading; import android.content.Context; import androidx.annotation.Nullable; import com.eclipsesource.v8.V8; import com.pfcstyle.js.performance.JsExecutionScheduler; import rx.Observable; import rx.android.schedulers.AndroidSchedulers; import rx.functions.Action1; class V8Loade...
/* * This file was automatically generated by EvoSuite * Tue Dec 15 04:57:19 GMT 2015 */ package org.dom4j.io; import static org.junit.Assert.*; import org.junit.Test; import org.dom4j.io.OutputFormat; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.evosuite.runti...
/* * Copyright 2014 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 ...
package org.squiddev.plethora.integration.ic2; import com.google.common.collect.Maps; import ic2.api.crops.CropCard; import ic2.api.crops.CropProperties; import ic2.api.crops.Crops; import ic2.api.crops.ICropSeed; import ic2.core.IC2; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import org.squi...
package com.todoapp2; import com.facebook.react.ReactActivity; public class MainActivity extends ReactActivity { /** * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ @Override protected String getMainComponentName() { re...
package com.pf.app.api.util; import com.aliyuncs.DefaultAcsClient; import com.aliyuncs.IAcsClient; import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest; import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.profile.DefaultProfile; impor...
/* * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
/* <notice> Copyright 2016, 2017 IBM Corporation 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, merge, publi...
package ru.nsu.ccfit.bayramov.chat_client.model.commands; public class MessageClientCommand extends Command { String message; String userName; public MessageClientCommand(String userName, String message) { commandType = "messageClientCommand"; this.userName = userName; this.messag...
/* * MIT License * * Copyright (c) 2019 1619kHz * * 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, ...
/* * Copyright (c) 2014-2017 Kumuluz and/or its affiliates * and other contributors as indicated by the @author tags and * the contributor list. * * Licensed under the MIT License (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package android.support.customview; public final class R { private R() {} public static final class attr { private att...
package com.reactnativeopensettings; import androidx.annotation.NonNull; import com.facebook.react.ReactPackage; import com.facebook.react.bridge.NativeModule; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.uimanager.ViewManager; import java.util.ArrayList; import java.util.Colle...
package org.wikipedia.views; import java.lang.System; @kotlin.Metadata(mv = {1, 6, 0}, k = 1, d1 = {"\u00004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u...
/** An instance is a circular doubly linked list. */ public class CircularLinkedList<E> { private Node head; // a node of linked list (null if none) private int size; // Number of nodes in linked list. /** Constructor: an empty linked list. */ public CircularLinkedList() { } /** Return the number of values in ...
/*=========================================================================== * Licensed Materials - Property of IBM * "Restricted Materials of IBM" * * IBM SDK, Java(tm) Technology Edition, v8 * (C) Copyright IBM Corp. 2002, 2013. All Rights Reserved * * US Government Users Restricted Rights - Use, duplication...
package net.pmhtech.util.json; import com.google.gson.JsonSyntaxException; import com.google.gson.TypeAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonToken; import com.google.gson.stream.JsonWriter; import java.io.IOException; public class LongDeserializer extends TypeAdapter<Lon...
/* * Portions of this software was developed by employees of the National Institute * of Standards and Technology (NIST), an agency of the Federal Government and is * being made available as a public service. Pursuant to title 17 United States * Code Section 105, works of NIST employees are not subject to copyright...
package pg.eti.ksg.Server.Service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import pg.eti.ksg.Server.Dao.IFriendDao; import pg.eti.ksg.Server.Dao.IUserDao; import pg.eti.ksg.Server.Entities.FriendId; import pg.eti.ksg.Server.Entities.User; import pg....
/* * 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 ...
/* * Copyright (c) 2011-2025 PiChen */ package com.interface21.orm.jdo; import com.interface21.dao.UncategorizedDataAccessException; /** * JDO exception that gets thrown on system errors. * * @author Juergen Hoeller * @since 03.06.2003 */ public class JdoSystemException extends UncategorizedDataAccessExceptio...
/* * Copyright (c) 2018, 2019, Oracle and/or its affiliates. * Copyright (c) 2014, Regents of the University of California * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistr...
package com.skywomantech.app.symptommanagement.data; import java.math.BigInteger; import java.util.Collection; import java.util.TimeZone; public class PatientPrefs { BigInteger id; private TimeZone timezone; private Collection<Reminder> alerts; private boolean notificationOn; public PatientPrefs() { super(...
/** * Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending */ package io.deephaven.client.examples; import io.deephaven.client.impl.ConsoleSession; import io.deephaven.client.impl.script.Changes; import picocli.CommandLine; import picocli.CommandLine.Command; import picocli.CommandLine.Parameters; import ...
/* * Copyright (C) 2012 Sony Mobile Communications AB * * This file is part of ApkAnalyser. * * 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/LIC...
package com.hellokoding.springboot; import com.mongodb.MongoClient; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annota...
/* * Copyright 2015 OpenCB * * 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 wr...
/* * Copyright (C) 2016 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...
import net.runelite.mapping.Export; import net.runelite.mapping.Implements; import net.runelite.mapping.ObfuscatedGetter; import net.runelite.mapping.ObfuscatedName; import net.runelite.mapping.ObfuscatedSignature; @ObfuscatedName("cc") @Implements("TileItem") public final class TileItem extends Renderable { @Obfusca...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /** * Package containing performance test classes for Azure MetricsAdvisor SDK for Java. */ package com.azure.ai.metricsadvisor.perf;
package dk.area9.flowrunner; import android.app.Activity; import android.support.annotation.NonNull; import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.view.ViewTreeObserver; import android.view.Window; public class SoftKeyboardHeightListener { public interface KeyBo...
/* * ****************************************************************************** * * Copyright (c) 2020 Konduit K.K. * * * * 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/LICE...
/* * 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 under t...
package com.qingbo.ginkgo.ygb.web.util; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.annotation.Resource; import org.springframework.stereotype.Service; import org.springframework.ui.Model; import com.qingbo.ginkgo.ygb.base.entity.CodeList; import c...
package org.epics.pvmarshaller.marshaller.deserialisers; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.LinkedHashMap; import java.util.Map; import org.epics.pvdata.factory.BasePVStructure; import org.epics.pvdata.pv.Field; import org.epics.pvdata.pv.PVField; imp...
package fiuba.algo3.tp1.unit.test; import fiuba.algo3.tp1.AlgoBay; import fiuba.algo3.tp1.CuponPorcentajeInvalidoError; import fiuba.algo3.tp1.Producto; import fiuba.algo3.tp1.ProductoNoPresenteError; import org.junit.Assert; import org.junit.Test; public class AlgoBayTest { @Test public void testCrearAlgoBa...
package com.atguigu.gmall.sms.dao; import com.atguigu.gmall.sms.entity.CouponSpuRelationEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** * 优惠券与产品关联 * * @author sf * @email sfengautumn@163.com * @date 2020-02-03 17:38:41 */ @Mapper public interface...
/** * */ package com.ugiant.common.utils.excel.fieldtype; import org.apache.commons.lang3.StringUtils; import com.ugiant.modules.sys.model.Office; import com.ugiant.modules.sys.utils.UserUtils; /** * 字段类型转换 * * @version 2013-03-10 */ public class OfficeType { /** * 获取对象值(导入) */ public static Object ge...
/* * Copyright (c) 2013, SRI International * All rights reserved. * Licensed under the The BSD 3-Clause License; * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://opensource.org/licenses/BSD-3-Clause * * Redistribution and use in source a...
package it.infn.ct.GridEngine.JobCollection; import it.infn.ct.GridEngine.JobResubmission.GESessionFactoryUtil; import java.sql.Timestamp; import java.util.List; import org.hibernate.HibernateException; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.Transaction; /** * * @author ma...
/* * Copyright 2017 Organizations participating in ISAAC, ISAAC's KOMET, and SOLOR development include the US Veterans Health Administration, OSHERA, and the Health Services Platform Consortium.. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compl...
/* * 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...