text
stringlengths
7
995k
package com.yunjeapark.technote.network.data; public class ImageSliderData { private String id; private String photo_url_1; private String photo_url_2; private String photo_url_3; private String photo_url_4; private String photo_url_5; public String getId() { return id; } p...
package akka.spring; import javax.annotation.PreDestroy; import javax.annotation.PostConstruct; public interface PojoInf { public String getStringFromVal(); public String getStringFromRef(); public boolean gotApplicationContext(); public boolean isPreStartInvoked(); }
package com.kjss; import org.mybatis.generator.api.MyBatisGenerator; import org.mybatis.generator.config.Configuration; import org.mybatis.generator.config.xml.ConfigurationParser; import org.mybatis.generator.internal.DefaultShellCallback; import java.io.InputStream; import java.util.ArrayList; import java.util.List...
/* * 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 ...
/* * 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 2016 Michael Syson * 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 fr.free.nrw.commons.contributions; import fr.free.nrw.commons.BasePresenter; /** * The contract for Contributions View & Presenter */ public class ContributionsContract { public interface View { void showMessage(String localizedMessage); } public interface UserActionListener extends B...
package jat.coreNOSA.trajectory; /* JAT: Java Astrodynamics Toolkit * * Copyright (c) 2003 National Aeronautics and Space Administration. All rights reserved. * * This file is part of JAT. JAT is free software; you can * redistribute it and/or modify it under the terms of the * NASA Open Source Agreement * ...
package io.github.shadowchild.heavensreign.gui.element; import com.shc.silenceengine.core.SilenceEngine; import com.shc.silenceengine.graphics.Batcher; import com.shc.silenceengine.graphics.Graphics2D; import com.shc.silenceengine.graphics.IFont; import com.shc.silenceengine.math.Vector2; /** * Created by Zach Pidd...
package com.vaadin.tutorial.crm.backend.service; import com.vaadin.tutorial.crm.backend.entity.Company; import com.vaadin.tutorial.crm.backend.repository.CompanyRepository; import org.springframework.stereotype.Service; import java.util.HashMap; import java.util.List; import java.util.Map; @Service public class Com...
package mytown.entities; import com.google.common.collect.ImmutableList; import mytown.MyTown; import mytown.config.Config; import mytown.core.ChatUtils; import mytown.core.Localization; import mytown.datasource.MyTownDatasource; import mytown.datasource.MyTownUniverse; import mytown.entities.flag.FlagType; import myt...
package org.tests.rawsql.nativesql; import io.ebean.BaseTestCase; import io.ebean.BeanState; import io.ebean.DB; import io.ebean.Query; import io.ebean.annotation.IgnorePlatform; import io.ebean.annotation.Platform; import io.ebean.test.LoggedSql; import org.junit.jupiter.api.Test; import org.tests.model.basic.Custome...
package dev.laarryy.clippyv2.commands; import de.btobastian.sdcf4j.Command; import de.btobastian.sdcf4j.CommandExecutor; import dev.laarryy.clippyv2.Constants; import dev.laarryy.clippyv2.util.ChannelUtil; import dev.laarryy.clippyv2.util.RoleUtil; import org.javacord.api.DiscordApi; import org.javacord.api.entity.cha...
/* * Copyright 1999-2017 Alibaba Group Holding 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 applica...
package lexico; public enum TipoToken { OPMAIOR, OPMENOR, OPIGUAL,OPMENORIGUAL, OPMAIORIGUAL, IDTIPO, IDVAR, EOF, ERRO; }
package usung.com.mqttclient.bean.db; import java.io.Serializable; import usung.com.mqttclient.bean.HttpResposeDataBase; /** * 初始化数据结果 * * @author herui * @date 2018/12/20 */ public class InitiaDataResult extends HttpResposeDataBase implements Serializable { public InitiaData Data; public InitiaData g...
/* * Copyright 2006 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by applica...
package ru.job4j.list; import org.junit.Before; import org.junit.Test; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertThat; public class SimpleArrayListTest { private SimpleArrayList<Integer> list; @Before public void beforeTest() { list = new SimpleArrayList<>(); ...
package org.springframework.biz.web.servlet.module; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class AcceptHeaderModuleResolver extends AbstractModuleResolver { @Override public String resolveModule(HttpServletRequest request) { String module = request.get...
package com.maxml.timer.ui.fragments; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.location.Location; import android.os.Bundle; import android.support.v7.app.Actio...
package com.freeman.common.auth.shiro.session; import org.apache.shiro.session.Session; import org.apache.shiro.session.UnknownSessionException; import org.apache.shiro.session.mgt.eis.AbstractSessionDAO; import org.crazycake.shiro.IRedisManager; import org.crazycake.shiro.RedisSessionDAO; import org.crazycake.shiro.S...
import java.util.ArrayList; public class Tamagotchi { public static final int MAX_FOOD = 10; public static final int MAX_SLEEP = 10; public static final int MAX_ACTIVITY = 10; private String mName; private int mFoodLevel; private int mSleepLevel; private int mActivityLevel; private boolean mIsAlive; ...
package com.ruoyi.web.controller.system; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.validation.annotation.Validated; import org.springfra...
package com.ybsystem.tweetmate.activities.preference; import android.content.Intent; import android.os.Bundle; import androidx.fragment.app.FragmentTransaction; import com.ybsystem.tweetmate.R; import com.ybsystem.tweetmate.activities.ActivityBase; import com.ybsystem.tweetmate.fragments.preference.AccountFragment; ...
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.openapi.projectRoots.impl; import com.intellij.icons.AllIcons; import com.intellij.openapi.actionSystem.DataKey; import com.intellij.openapi.application.Path...
package com.codepath.flicks; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.widget.Toast; import com.codepath.flicks.models.Config; import com.codepa...
package net.minecraft.client.renderer.entity.model; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterables; import net.minecraft.client.renderer.model.ModelRenderer; import net.minecraft.entity.monster.VexEntity; import net.minecraft.util.HandSide; import net.minecraft.util.math.Mat...
/* * 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.mypurecloud.sdk.v2.api.request; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; import com.mypurecloud.sdk.v2.ApiException; import com.mypurecloud.sdk.v2.ApiClient; import com.mypurecloud.sdk.v2.ApiRequest; import com.mypurecloud.sdk.v2.ApiRequestBuil...
/** * Copyright 2015 IBM 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 applicable l...
/* 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 the Lic...
package ru.nsu.ccfit.zuev.osu.game; import android.graphics.PointF; import android.os.SystemClock; import com.dgsrz.bancho.game.sprite.VideoSprite; import com.edlplan.ext.EdExtensionHelper; import com.edlplan.framework.support.osb.StoryboardSprite; import com.edlplan.osu.support.timing.TimingPoints; import com.edlpla...
/* * 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...
package sagan.guides; import org.springframework.util.Assert; @SuppressWarnings("rawtypes") class AbstractDocument implements Document { private final ContentProvider contentProvider; private String content; private String sidebar; public AbstractDocument(ContentProvider contentProvider) { t...
import diningroom.Fork; import philosophers.Philosopher; import java.util.ArrayList; /** * Created by carl on 3/25/17. */ public class Main { public static void main(String[] args) { Fork[] tableForks = {new Fork(), new Fork(), new Fork(), new Fork()}; ArrayList<Thread> philosopherThreads = ne...
package uk.co.alt236.btlescan.adapters; import java.util.List; import uk.co.alt236.bluetoothlelib.device.BluetoothLeDevice; import uk.co.alt236.bluetoothlelib.device.IBeaconDevice; import uk.co.alt236.bluetoothlelib.util.IBeaconUtils; import uk.co.alt236.btlescan.R; import uk.co.alt236.btlescan.util.Constants; import...
package com.uweather.model.weather; import com.google.gson.annotations.SerializedName; public class Suggestion { @SerializedName("comf") public Comfort comfort; @SerializedName("cw") public CarWash carWash; public Sport sport; public class Comfort { @SerializedName("txt") ...
package com.valtech.aem.saas.api.bestbets; /** * A custom exception which is thrown when a best bet action fails. */ public class BestBetsActionFailedException extends RuntimeException { public BestBetsActionFailedException(String message) { super(message); } public BestBetsActionFailedExceptio...
/** * Copyright (C) 2011 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.financial.forex.derivative; import org.apache.commons.lang.ObjectUtils; import org.apache.commons.lang.Validate; import com.opengamma.analytics.fina...
/* * Based on http://code.google.com/p/javacoveragent/ by * "alex.mq0" and "dmitry.kandalov" * * * 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/L...
package com.xiao.springcloud.job; import org.springframework.boot.SpringApplication; /** * [简要描述]: * [详细描述]: * * @author llxiao * @version 1.0, 2018/12/10 11:10 * @since JDK 1.8 */ public class JobServiceApplication { public static void main(String[] args) { SpringApplication.run(JobServiceAppl...
package draylar.identity.mixin; import draylar.identity.impl.DimensionsRefresher; import draylar.identity.registry.Components; import net.minecraft.entity.*; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.Box; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; impo...
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 虚拟卡信息查询 * * @author auto create * @since 1.0, 2019-11-04 11:07:16 */ public class AlipayCommerceTransportOfflinepayVirtualcardBatchqueryModel extends AlipayObject { private static final lon...
package com.softicar.platform.common.ui.wiki.token.matcher; import com.softicar.platform.common.ui.wiki.token.WikiTokenType; public class WikiTokenMatchers { public static final IWikiTokenMatcher BOLD_MATCHER = new StaticWikiTokenMatcher(WikiTokenType.BOLD, "**"); public static final IWikiTokenMatcher BACKTICK_MAT...
/** * generated by Xtext 2.17.0 */ package com.foliage.xenia.ui.outline; import org.eclipse.xtext.ui.editor.outline.impl.DefaultOutlineTreeProvider; /** * Customization of the default outline structure. * * See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#outline */ @SuppressWarnings("a...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE113_HTTP_Response_Splitting__connect_tcp_setHeaderServlet_52c.java Label Definition File: CWE113_HTTP_Response_Splitting.label.xml Template File: sources-sinks-52c.tmpl.java */ /* * @description * CWE: 113 HTTP Response Splitting * BadSource: connect_tcp Read data usi...
/* * Autopsy * * Copyright 2019 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://www.apache.org/lice...
package com.cqx; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class StnDubboConsumerApplication { public static void main(String[] args) { SpringApplication.run(StnDubboConsumerApplication.class, args); } }
/* * 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 org.robolectric.shadows; import static android.app.usage.UsageStatsManager.INTERVAL_DAILY; import static android.app.usage.UsageStatsManager.INTERVAL_WEEKLY; import static android.content.Context.USAGE_STATS_SERVICE; import static android.os.Build.VERSION_CODES.LOLLIPOP; import static com.google.common.truth.T...
package com.ops.sc.tc.grpc.async; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.ops.sc.tc.grpc.GrpcClient; import com.ops.sc.tc.grpc.GrpcInitParams; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Spons...
/* * MIT License * * Copyright (c) 2021 Imanity * * 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, ...
/* * 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 io.github.laminalfalah.backend.common.filter; /* * Copyright (C) 2021 the original author laminalfalah All Right Reserved. * * io.github.laminalfalah.backend.common.filter * * This is part of the backend-framework. * * Licensed under the Apache License, Version 2.0 (the "License"). * you may not use th...
package top.codings.websiphon.core.support; import top.codings.websiphon.bean.PushResult; import top.codings.websiphon.bean.WebRequest; import top.codings.websiphon.core.Crawler; import top.codings.websiphon.core.context.BasicCrawlerContext; import top.codings.websiphon.core.context.CrawlerContext; import top.codings....
/* * 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 ...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/spanner/admin/database/v1/spanner_database_admin.proto package com.google.spanner.admin.database.v1; /** * <pre> * The request for [GetDatabase][google.spanner.admin.database.v1.DatabaseAdmin.GetDatabase]. * </pre> * * Protobuf type {@...
package it.bonofiglio.kata.controller; import it.bonofiglio.kata.bean.LoginBeanLocal; import it.bonofiglio.kata.utils.JsonConfigParser; import it.bonofiglio.kata.utils.ServletUtils; import java.io.IOException; import java.io.PrintWriter; import java.util.Map; import javax.ejb.EJB; import javax.servlet.ServletExcepti...
package io.opensphere.osh.results.video; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.PushbackInputStream; /** Byte utilities. */ public final class ByteUtilities { /** The buffer size. */ private static final int BUFFER_SIZE = 8192; /** * Reads...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ pa...
/* * Copyright (c) 2005, 2017, 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 ...
/* Node is defined as class Node { int data; Node next; Node(int d) {data = d; next = null; } } */ class Solution { public static boolean detectLoop(Node head){ // Add code here //basic metehod we use here is we take two node fast and slow fast node will movw twice fast as slow ...
package net.moxuan.common.entity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; /** * @author: moxuan * @description: */ @Data @EqualsAndHashCode(callSuper = true) @TableName(...
package com.cjz.coolweather.gson; public class Forecast { /** * date : 2019-12-27 * cond : {"txt_d":"多云"} * tmp : {"max":"20","min":"11"} */ private String date; private CondBean cond; private TmpBean tmp; public String getDate() { return date; } public void s...
package net.humba01.inquiry.tools.subclass; import net.minecraft.item.AxeItem; import net.minecraft.item.ToolMaterial; public class CustomAxeItem extends AxeItem { public CustomAxeItem(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) { super(material, attackDamage, attackSpeed, ...
package com.tzx.client.changeskin.test; import android.content.Context; import android.support.annotation.Nullable; import android.util.AttributeSet; import android.view.View; import com.tzx.client.changeskin.view.SkinBackgroundAttr; import com.tzx.client.changeskin.view.SkinViewInterface; /** * Created by Tanzhen...
package com.ext.nacid.web.taglib.applications; import java.io.IOException; import java.util.HashSet; import java.util.Set; import javax.servlet.jsp.JspException; import javax.servlet.jsp.PageContext; import javax.servlet.jsp.tagext.SimpleTagSupport; import com.ext.nacid.web.handlers.impl.applications.ExtApplications...
/** * OLAT - Online Learning and Training<br> * http://www.olat.org * <p> * Licensed under the Apache License, Version 2.0 (the "License"); <br> * you may not use this file except in compliance with the License.<br> * You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Un...
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2021.02....
/* * Copyright © 2017 Cask Data, 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 ag...
package com.ericsson.research.trap.spi.transports; /* * ##_BEGIN_LICENSE_## * Transport Abstraction Package (trap) * ---------- * Copyright (C) 2014 Ericsson AB * ---------- * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions ...
package api.longpoll.bots.methods.impl.stories; import api.longpoll.bots.http.params.BoolInt; import api.longpoll.bots.methods.AuthorizedVkApiMethod; import api.longpoll.bots.methods.VkApiProperties; import java.util.Arrays; import java.util.List; /** * Implements <b>stories.getVideoUploadServer</b> method. * <p> ...
/** * This program contains an error and cannot be compiled. * Exceptions should be caught in increasing order of hierarchy i.e. smallest first * @author souveek */ public class ExceptionCatchHierarchy { public static void main(String[] args) { int dividend = 10; int divisor = 0; float q...
// Licensed to the Software Freedom Conservancy (SFC) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The SFC licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you m...
/* * This file is part of Nucleus, licensed under the MIT License (MIT). See the LICENSE.txt file * at the root of this project for more details. */ package io.github.nucleuspowered.nucleus.modules.home.commands; import io.github.nucleuspowered.nucleus.Nucleus; import io.github.nucleuspowered.nucleus.Util; import i...
package application; public class WhileException extends Exception { WhileException(String message){ System.out.println(message); } }
/* * Copyright 2017 StreamSets 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...
/* * Copyright (c) 1998 - 2012. University Corporation for Atmospheric Research/Unidata * Portions of this software were developed by the Unidata Program at the * University Corporation for Atmospheric Research. * * Access and use of this software shall impose the following obligations * and understandings on the...
package mahajans; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Servlet implementatio...
package fr.crazyws.mccrestart; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.util.logging.ConsoleHandler; import java.util.logging.Logger; import net.minecraft.server.ConsoleCommandHandler; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukk...
/* * 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 u...
// @formatter:off /******************************************************************************* * * This file is part of tensorics. * * Copyright (c) 2008-2011, CERN. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance wit...
package nl.maarten.naberink.cryptoexchange.view.query.data; import java.math.BigDecimal; import nl.maarten.naberink.cryptoexchange.enums.OrderType; public class OrderData { private final String orderId; private final String pair; private BigDecimal amountEur; private BigDecimal amountCrypto; private final Or...
/* * Copyright 2012-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...
package com.google.android.material.transformation; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorSet; import android.animation.ObjectAnimator; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; impo...
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 4.0.2 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ------------------------------...
/******************************************************************************* * 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) 2001-2008, The HSQL Development Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this * list...
/* * Licensed to Elastic Search and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. Elastic Search licenses this * file to you under the Apache License, Version 2.0 (the * "License"); you m...
package module608packageJava0; import java.lang.Integer; public class Foo238 { Integer int0; Integer int1; public void foo0() { new module608packageJava0.Foo237().foo4(); } public void foo1() { foo0(); } public void foo2() { foo1(); } public void foo3() { foo2(); } public v...
/* file: Pooling3dForwardResult.java */ /******************************************************************************* * Copyright 2014-2018 Intel Corporation * All Rights Reserved. * * If this software was obtained under the Intel Simplified Software License, * the following terms apply: * * The source code, in...
/* * 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...
/* * Licensed to Crate.io GmbH ("Crate") under one or more contributor * license agreements. See the NOTICE file distributed with this work for * additional information regarding copyright ownership. Crate licenses * this file to you under the Apache License, Version 2.0 (the "License"); * you may not use this f...
/* * Copyright © 2012 - 2013 Atlassian Corporation Pty 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 applicable law or ...
/* ### * IP: GHIDRA * REVIEWED: YES * * 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...
package se.l4.dust.core.internal.expression.model; import se.l4.dust.api.template.Expose; /** * Person representation for tests. * * @author Andreas Holstenson * */ public class Person { private String name; private int age; @Expose private boolean verified; public String role; public Person() { } pub...
package com.trembleturn.trembleturn; 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.*; /** * Instrumented test, which will execute on an And...
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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for getCustomFieldOptionResponse element declaration. * * ...