text
stringlengths
7
995k
package com.example.launchcontrol.managers; import android.bluetooth.BluetoothDevice; import android.content.Context; import com.example.launchcontrol.interfaces.BluetoothConnectionStatusReceiver; import com.example.launchcontrol.interfaces.BluetoothDataReceiver; import com.example.launchcontrol.models.DataPoint; imp...
// 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 GENERATED TESTCASE FILE Filename: CWE325_Missing_Required_Cryptographic_Step__MessageDigest_update_05.java Label Definition File: CWE325_Missing_Required_Cryptographic_Step.label.xml Template File: point-flaw-05.tmpl.java */ /* * @description * CWE: 325 Missing Required Cryptographic Step * Sinks: MessageDi...
package io.georocket.commands; import java.io.IOException; import java.io.PrintWriter; import java.util.List; import java.util.stream.Collectors; import java.util.stream.Stream; import de.undercouch.underline.InputReader; import de.undercouch.underline.Option.ArgumentType; import de.undercouch.underline.OptionDesc; i...
package orders.protocol.ssh2; class UserAuthPassword extends UserAuth { UserInfo userinfo; UserAuthPassword(UserInfo userinfo) { this.userinfo = userinfo; } public boolean start(Session session) throws Exception { // super.start(session); // System.out.println("UserAuthPassword: start"); Packet packet = ...
/* * 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.quickstart.javase.rate.limit.simple; /** * @author youngzil@163.com * @description TODO * @createTime 2019/12/11 19:30 */ import java.util.concurrent.ConcurrentHashMap; /** * 支持多个请求 * * @author hezhuofan */ public class RateLimiter { private ConcurrentHashMap<String, Bucket> buckets = new Conc...
package com.rainbowluigi.soulmagic.block.entity; import com.rainbowluigi.soulmagic.inventory.SoulCacheScreenHandler; import com.rainbowluigi.soulmagic.item.ReferenceStaffItem; import com.rainbowluigi.soulmagic.item.SoulEssenceStaff; import net.minecraft.block.BlockState; import net.minecraft.block.entity.LockableCont...
public interface Dosen{ public String getNIDN(); public void setNIDN(String NIDN); public String getKeahlian(); public String getPekerjaan(); public void setKeahlian(String keahlian); }
package com.cloudapp.api.model; import java.util.Date; import com.cloudapp.api.CloudAppException; public interface CloudAppAccount { enum DefaultSecurity { PRIVATE, PUBLIC } /** * @return Your ID. */ public long getId() throws CloudAppException; /** * @return Your email address. */ pub...
/* * Copyright 2019 ConsenSys AG. * * 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 2013 Joan Zapata * <p/> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * <p/> * http://www.apache.org/licenses/LICENSE-2.0 * <p/> * Unless required by applicable law or...
package cn.springcloud.gray.event.server; import cn.springcloud.gray.event.GrayEvent; import java.util.Objects; /** * @author saleson * @date 2020-02-05 13:36 */ public abstract class AbstrctEventConverter<SOURCE, E extends GrayEvent> implements EventConverter<SOURCE, E> { @Override public E convert(SOURC...
package io.ppatierno.formula1; import io.ppatierno.formula1.config.KafkaBaseConfig; public class F1WebUIAppConfig extends KafkaBaseConfig { private static final String F1_DRIVERS_GROUP_ID_ENV = "F1_DRIVERS_GROUP_ID"; private static final String F1_DRIVERS_TOPIC_ENV = "F1_DRIVERS_TOPIC"; private static f...
/******************************************************************************* * 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 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, soft...
package me.limbo56.playersettings.menu; import com.google.common.collect.Iterables; import me.limbo56.playersettings.PlayerSettings; import me.limbo56.playersettings.api.Setting; import me.limbo56.playersettings.configuration.YmlConfiguration; import me.limbo56.playersettings.settings.ConfigurationSetting; import me.l...
package app.dao; public interface VariantDAO { /** * Returns true if a variant exists in the dataset * @param variant variant to look for * @return boolean */ boolean variantExists(VariantDescriptor variant); /** * Get the number of variants matching the description * @param...
package org.traccar.protocol; import org.junit.Test; import org.traccar.ProtocolTest; public class BoxProtocolDecoderTest extends ProtocolTest { @Test public void testDecode() throws Exception { BoxProtocolDecoder decoder = new BoxProtocolDecoder(null); verifyNull(decoder, text( ...
package dev.ivanlepi.twitchclips.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import dev.ivanlepi.twitchclips.repository.GameRepository; import dev.ivanlepi.twitchclips.repository.ClipsRepository; import dev.ivanlepi.twitchclips.service.GameLi...
package seedu.address.model; import static java.util.Objects.requireNonNull; import static seedu.address.commons.util.CollectionUtil.requireAllNonNull; import java.time.LocalDate; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import javafx.collections.FXCollections; import javafx.colle...
package tech.greenfield.tests.derby; import java.sql.Connection; import java.sql.SQLException; import org.apache.derby.jdbc.EmbeddedDataSource; public class MockDatabase { public EmbeddedDataSource ds = new EmbeddedDataSource(); public MockDatabase() throws SQLException { ds.setDatabaseName(getUrl()); } pub...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
package com.study.pontointeligente.api.service.impls; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.study.pontointeligente.api.entities.Funcionario; import co...
/* * MIT License * * Copyright (c) 2021-2022 Mihai Bojin * * 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 me.coley.recaf.mapping; import me.coley.recaf.util.StringUtil; import me.coley.recaf.workspace.Workspace; import java.io.IOException; import java.nio.file.Path; import java.util.HashMap; import java.util.Map; import java.util.Stack; import static me.coley.recaf.util.Log.*; /** * Enigma mappings file implem...
package io.dblint.dbsecurity.sqlplanner; import io.dblint.dbsecurity.sqlplanner.enums.EnumContext; import io.dblint.dbsecurity.sqlplanner.enums.QueryType; import io.dblint.dbsecurity.sqlplanner.planner.Parser; import java.util.List; import org.apache.calcite.sql.parser.SqlParseException; import org.apache.calcite.sq...
package com.jarkman.ASKSimpleAndroid; import android.media.AudioFormat; import android.media.AudioManager; import android.media.AudioTrack; public class PlayThread extends Thread{ public boolean isPlaying = true; private byte[] buffer; public PlayThread( byte[] b ) { buffer = new byte[b.length * 2]; //...
package com.phonebank.ripplewallet; import android.content.Context; import android.widget.Toast; /** * UI alerts * @author Tony Gaitatzis * */ public class Notifier { private Context context; public static final int TOAST_LENGTH = Toast.LENGTH_LONG; public Notifier(Context context) { this.context = context...
/** * This software was developed and / or modified by Raytheon Company, * pursuant to Contract DG133W-05-CQ-1067 with the US Government. * * U.S. EXPORT CONTROLLED TECHNICAL DATA * This software product contains export-restricted data whose * export/transfer/disclosure is restricted by U.S. law. Dissemination ...
/* * 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 frc.robot.lib.trajectory.jetsoninterface; import javax.ws.rs.client.Client; import javax.ws.rs.client.ClientBuilder; import javax.ws.rs.core.Response; import frc.robot.lib.trajectory.jetsoninterface.model.ErrorInfo; public class Consumer { public static ErrorInfo consumeWithJsonb(String targetUrl) { ...
package com.baidu.android.voicedemo.wakeup; import com.baidu.android.voicedemo.util.Logger; import com.baidu.speech.asr.SpeechConstant; import org.json.JSONException; import org.json.JSONObject; /** * Created by fujiayi on 2017/6/24. */ public class WakeUpResult { private static final String TAG = "WakeUpResul...
/* * Copyright (C) 2007 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...
/******************************************************************************* * Caleydo - Visualization for Molecular Biology - http://caleydo.org * Copyright (c) The Caleydo Team. All rights reserved. * Licensed under the new BSD license, available at http://caleydo.org/license *********************************...
package com.zero.jimu.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.zero.jimu.entity.User; @Mapper public interface UserDao { List<User> findAll(); User findByOpenIdLike(String openId); int insertUser(@Param("user")User...
package com.example.jiayin.helpfordemo.utils.pointDialog.animation.FallEnter; import android.animation.ObjectAnimator; import android.view.View; import com.example.jiayin.helpfordemo.utils.pointDialog.animation.BaseAnimatorSet; public class FallEnter extends BaseAnimatorSet { @Override public void setAnimation(Vi...
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
/* * Copyright 2000-2016 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 org.recap.model; import org.junit.jupiter.api.Test; import org.recap.BaseTestCase; import org.recap.ScsbCommonConstants; import org.recap.model.transfer.Destination; import org.recap.model.transfer.HoldingTransferResponse; import org.recap.model.transfer.HoldingsTransferRequest; import org.recap.model.transfer...
/* * Copyright (c) Joachim Ansorg, mail@ansorg-it.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 la...
/* * * Copyright 2012 Netflix, 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 ap...
/* * Copyright 2014-2020 Real Logic Limited. * * 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 ...
package com.biblepaywallet.presenter.customviews; import android.content.Context; import android.content.res.TypedArray; import android.support.annotation.Nullable; import android.util.AttributeSet; import android.view.View; import com.biblepaywallet.R; import com.biblepaywallet.presenter.activities.HomeActivity; imp...
package io.lumify.core.ingest.video; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.SortedSet; import java.util.TreeSet; public class VideoTranscript implements Serializable { p...
/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.management.compute.models; import com.azure.core.annotation.Fluent; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List;...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ pa...
package com.github.xpenatan.imgui.custom; public class EditTextFloatData extends EditTextData { public static EditTextFloatData tmp01 = new EditTextFloatData(); public static EditTextFloatData tmp02 = new EditTextFloatData(); public static EditTextFloatData tmp03 = new EditTextFloatData(); public static EditTextF...
/* * This file is part of SpongeAPI, licensed under the MIT License (MIT). * * Copyright (c) SpongePowered <https://www.spongepowered.org> * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Soft...
package io.indexr.util; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.Collection; import java.util.Iterator; import java.util.concurrent.ConcurrentLinkedQueue; public class DelayTask { private Task task; private long runTime; public DelayTask(Task task, long delayMS) { ...
/* * Copyright 2014 Red Hat, Inc. and/or its affiliates. * * 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...
package com.shijingsh.rns.model.collaborative; import java.util.Collection; import java.util.Comparator; import com.shijingsh.ai.data.DataModule; import com.shijingsh.ai.data.DataSpace; import com.shijingsh.ai.math.algorithm.correlation.MathCorrelation; import com.shijingsh.ai.math.structure.vector.ArrayVector; impor...
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.chrome.browser.compositor.layouts; import android.content.Context; import android.content.res.Resources; import android.graphics.Rec...
package com.timeyang.jkes.core.kafka.annotation; import java.lang.annotation.*; /** * @author chaokunyang */ @Retention( RetentionPolicy.RUNTIME ) @Target( ElementType.TYPE ) @Documented public @interface MessagePublish { }
package com.kclmedu.springboot.entity; public enum CustomerLevel { LOW, MIDDLE, HIGH; }
/* * MIT License * * Copyright (c) 2021 MASES s.r.l. * * 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, cop...
package com.codeyn.zk.fetcher; import java.util.List; import com.codeyn.zk.core.ZkNodeStore; public class ChildrenFetcher extends AbstractFetcher { private List<String> lastSnapShot; private ChildrenConverter<?> converter; public ChildrenFetcher(ZkNodeStore zkNodeStore) { super(zkNodeStore); ...
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.0.1). * https://openapi-generator.tech * Do not edit the class manually. */ package org.openapitools.api; import org.openapitools.model.Client; import io.swagger.annotations.*; import org.springframework.http.Response...
package OOD.DeckOfCards; import java.util.ArrayList; import java.util.List; public abstract class Hand <T extends Card> { protected List<T> cards = new ArrayList<>(); public abstract int scores(); public void addCard(T card) { cards.add(card); } public void print() { for (T card...
package com.github.fppt.jedismock.operations.sortedsets; import com.github.fppt.jedismock.datastructures.RMZSet; import com.github.fppt.jedismock.operations.AbstractRedisOperation; import com.github.fppt.jedismock.operations.RedisCommand; import com.github.fppt.jedismock.server.Response; import com.github.fppt.jedismo...
/* * 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. */ package register; import classes.query; import java.io.Console; import org.mindrot.jbcrypt.BCrypt; /** * * @author Tarun Bisht */ ...
/* * Copyright 2014-present Facebook, 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...
import global.*; import java.util.ArrayList; import standardABC.s_abc; import modifiedABC.m1_abc; import modifiedABC.m2_abc; import modifiedABC.m3_abc; import modifiedABC.m4_abc; import modifiedABC.m5_abc; import modifiedABC.m6_abc; import standardABC.sABCParameters; //import abc.ABCModel; import com.panayotis.gnupl...
/* * Copyright (c) 2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. 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/l...
package com.neu.his.api.controller.dms; import com.neu.his.common.api.CommonResult; import com.neu.his.common.dto.dms.DmsCaseHistoryParam; import com.neu.his.common.dto.dms.DmsCaseHistoryResult; import com.neu.his.dms.service.DmsCaseHistoryService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOp...
package com.github.siboxd.fatturapa.model.invoiceheader.thirdpartyintermediary; import org.checkerframework.checker.nullness.qual.NonNull; import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; /** * It contains data of a third party that issues the invoice on behalf of the seller */ @Root(na...
/* This code is copyright Articulate Software (c) 2003. This software is released under the GNU Public License <http://www.gnu.org/copyleft/gpl.html>. Users of this code are also requested, to credit Articulate Software in any writings, briefings, publications, presentations, or other representations of any software...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
package com.a528854302.gmall.seckill.vo; import lombok.Data; import java.util.Date; /** * @ClassName SeckillSessionVo * @Description: TODO * @Author 528854302@qq.com * @Date 2020/8/24 **/ @Data public class SeckillSessionVo { private Long id; /** * 场次名称 */ private String name; /** ...
// Copyright (c) Microsoft Corporation. // All rights reserved. // // This code is licensed under the MIT License. // // 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 restricti...
package com.octo.android.robospice.persistence.ormlite; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import java.util.Map; import roboguice.util.temp.Ln; import android.app.Application; import android.net.Uri; import com.j256.ormlite.table.TableUtils; import com.octo.android.robos...
/* * Copyright (C) 2016-2020 Lightbend Inc. <https://www.lightbend.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 ...
package model.entity; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name="Tipo_Unidade_Medida") public class T...
package uk.aljoni.modelgen.generator; public interface ArgumentListGenerator { String generate(); }
package org.atomnuke.atom.model; import java.net.URI; /** * * @author zinic */ public interface AtomCommonAtributes { URI base(); String lang(); }
package com.publiccms.controller.web.cms; import java.util.Date; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web....
/* * Copyright 2019 Miroslav Pokorny (github.com/mP1) * * 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 applic...
package com.fishercoder.solutions; import com.fishercoder.common.classes.Employee; import java.util.List; import java.util.stream.Collectors; /** * 690. Employee Importance * * You are given a data structure of employee information, which includes the employee's unique id, * his importance value and his direct s...
package com.supergreenowl.sgdx; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.utils.Json; /** * Keeps track of a number of high scores. * Supports scoring systems were either higher or lower scores are more desirable. * @author Luke * */ public class HighScoreBoar...
package uk.ac.ebi.subs.validator.data.structures; /** * Controlled list of validation authors. */ public enum ValidationAuthor { Core, Taxonomy, Ena, // FIXME - This may need further details like checklist Eva, Biosamples, BioStudies, ArrayExpress, Metabolights, Pride, FileRef...
/* * Copyright (c) 2016 Martin Norbert * 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 org.team.framework.tcl.db.service.impl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.team.framework.tcl.db.dao.UserDao; import org.team.framework.tcl.db.eo.User; import org.team.framework.tcl.db.jdbc.dao.CommonDao; import org.team.fram...
/* * Copyright 2011 Azwan Adli Abdullah * * 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 ag...
/* * 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...
/* * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
/* * Copyright 2019 Pivotal, 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 ...
import uk.co.caprica.vlcj.discovery.NativeDiscovery; public class PalyerNOGUI { private static DashPlayer dashPlayer; //{"Bitrate-based", "Buffer-based", "FESTIVE", "D-DASH: MLP2", "MPC", "PANDA", "Scheleton"} private static String choice = "Bitrate-based"; //private static String url = "http://127.0.0...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package users.droid.users.droid; public final class R { public static final class attr { } public static final class id { ...
/* * #%L * FHIR Implementation * %% * Copyright (C) 2018 DataScience 9 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 *...
package com.google.android.gms.internal; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import com.google.android.gms.common.internal.zzbq; import com.google.firebase.auth.ProviderQueryResult; import java.util.List; public final class zzdxd implements ProviderQueryResult { ...
/* * MIT License * * Copyright (c) 2022 MASES s.r.l. * * 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, cop...
/* * Copyright LWJGL. All rights reserved. * License terms: https://www.lwjgl.org/license */ module org.lwjgl { requires transitive jdk.unsupported; exports org.lwjgl; exports org.lwjgl.system; exports org.lwjgl.system.dyncall; exports org.lwjgl.system.jni; exports org.lwjgl.system.libc; ...
package de.adorsys.smartbanking.gateway.filters.pre; import com.netflix.zuul.ZuulFilter; import com.netflix.zuul.context.RequestContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.servlet.http.HttpServletRequest; /** * @author Florian Hirsch */ public class DebugRequestFilter extends Zuu...
package smarttraffic.smartparking.dataModels.Spots.NearbySpot; import smarttraffic.smartparking.dataModels.Lots.PointGeometry; /** * Created by Joaquin on 09/2019. * <p> * smarttraffic.smartparking.dataModels */ public class NearbyLocation { private String type = "Feature"; private NearbyPropertiesFeed ...
public class HelloGoodbye { public static void main(String[] args) { System.out.println("Hello " + args[0] + " and " + args[1] + '.'); System.out.println("Goodbye " + args[1] + " and " + args[0]+ '.'); } }
/** * Copyright 2018 Anson.Zhifu http://www.zhifu.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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required b...
package org.miage.m2.dto; import java.util.Set; import javax.persistence.CollectionTable; import javax.persistence.Column; import javax.persistence.ElementCollection; import javax.persistence.JoinColumn; import org.miage.m2.constants.CoursAcces; import org.miage.m2.constants.CoursStatuts; import com.fasterxml.jacks...
package org.apache.harmony.security.x509; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * 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 * *...
package com.semicolon.spring.dto.club.request; import lombok.Getter; import lombok.NoArgsConstructor; @Getter @NoArgsConstructor public class HongboRequest { private String hongbo; }