text
stringlengths
7
995k
package com.github.wxiaoqi.security.admin.entity; import java.util.Date; import javax.persistence.*; @Table(name = "base_user") public class User { @Id private Integer id; private String username; private String password; private String name; private String birthday; private String ad...
/* * 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...
package ru.rogzy.api.core.annotations.api; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.annotation.Retent...
package com.bstek.bdf3.saas.command; /** * @author Kevin Yang (mailto:kevin.yang@bstek.com) * @since 2017年7月3日 */ @FunctionalInterface public interface Command { void execute(); }
package me.yokeyword.fragmentation; import android.content.Context; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentationMagician; import android.view.View; import android.view.inputmethod.InputMethodManager; import java.util.ArrayList; import ...
package com.wiryaimd.mangatranslator.util.vision; import android.graphics.Rect; import android.util.Log; import com.google.gson.Gson; import com.wiryaimd.mangatranslator.api.model.DetectModel; import com.wiryaimd.mangatranslator.model.merge.MergeBlockModel; import com.wiryaimd.mangatranslator.model.merge.MergeLineMod...
package com.bridgeit.junitTest.simple; public class SimpleClass { public boolean evenNumber(int num) { boolean result; if(num%2==0) { result= true; }else { result= false; } return result; } }
package uk.dangrew.exercises.turbine_status.io; import uk.dangrew.exercises.turbine_status.model.AlarmLevel; import java.util.ArrayList; import java.util.List; import java.util.Random; /** * Provides a simple mechanism for emulating input to the model, randomly generating json data as if received from an external s...
/** * Copyright (C) 2017 Julien Bonjean <julien@bonjean.info> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required ...
/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 ...
package com.bondfire.firescreen; import android.app.Application; import com.facebook.react.ReactApplication; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import com.facebook.soloader.SoLoader; import io.invertase.firebase.RNFireb...
package sun.encryption.util; import com.sun.jna.Library; import com.sun.jna.Native; /** * author: Sun Rui */ public class DLLUtil { public interface CLibrary extends Library { // CLibrary INSTANCE = (CLibrary) Native.load(Platform.isWindows() ? "msvcrt": "c", CLibrary.class); // void printf(Stri...
package org.zstack.core.job; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Target(java.lang.annotation.ElementType.FIELD) @Retention(java.lang.annotation.RetentionPolicy.RUNTIME) public @interface JobContext { }
package joshie.harvest.cooking.render; import joshie.harvest.cooking.CookingAPI; import joshie.harvest.cooking.tile.TileCooking; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.BufferBuilder; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.RenderHel...
package com.atguigu.gmall.pms.service; import com.atguigu.gmall.pms.vo.SupInfoVo; import com.baomidou.mybatisplus.extension.service.IService; import com.atguigu.gmall.pms.entity.SpuInfoEntity; import com.atguigu.core.bean.PageVo; import com.atguigu.core.bean.QueryCondition; /** * spu信息 * * @author shuangge * @em...
package cn.edu.jxnu.practice; /** * @description 我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。 * 请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法? * * @author Mr.Li * */ /** * @description 本质还是斐波那契 n={0,1,2}是边界 * @author Mr.Li * */ public class FibonacciDemo2 { public int RectCover(int target) { if (target < 1) { re...
package com.denizenscript.denizen.utilities.maps; import com.denizenscript.denizen.objects.ColorTag; import com.denizenscript.denizen.objects.PlayerTag; import org.bukkit.Color; import org.bukkit.map.MapCanvas; import org.bukkit.map.MapPalette; import org.bukkit.map.MapView; import java.util.Map; import java.util.UUI...
/* * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package info.pinlab.ttada.session.manual.steptest; import info.pinlab.ttada.core.model.MultichoiceTask; import info.pinlab.ttada.core.model.task.TaskSet; import info.pinlab.ttada.session.Registry.Key; import info.pinlab.ttada.session.app.CLI; /** * Should not step with NO response. * Should not step by response. ...
/* * JBoss, Home of Professional Open Source * Copyright 2016, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fi...
package fi.fmi.avi.model.taf.immutable; import java.io.Serializable; import java.util.Objects; import java.util.Optional; import org.inferred.freebuilder.FreeBuilder; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.Jso...
package com.ms.silverking.thread.lwt.test; import java.util.concurrent.Semaphore; import com.ms.silverking.thread.lwt.LWTPoolProvider; import com.ms.silverking.thread.lwt.LWTThreadUtil; import com.ms.silverking.thread.lwt.WorkerGroup; import com.ms.silverking.thread.lwt.WorkerGroupProvider; import com.ms.silverking.t...
/* * Copyright (C) 2015 University of Oregon * * You may distribute under the terms of either the GNU General Public * License or the Apache License, as specified in the LICENSE file. * * For more information, see the LICENSE file. */ package vnmr.print; import java.awt.*; import java.awt.event.ActionListener...
/** Visitor method for parameterized types. * Bound checking is left until later, since types are attributed * before supertype structure is completely known */ public void visitTypeApply(JCTypeApply tree) { DEBUG.P(this,"visitTypeApply(JCTypeApply tree)"); DEBUG.P("tree="+tree); Typ...
package core; import java.util.ArrayList; public class Client { private String name; private String address; private ArrayList<Animal> animals; public Client(String name, String address) { this.name = name; this.address = address; this.animals = new ArrayList<Animal>(); } public void setAddress(String...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package org.egov.bookings.contract; import java.io.Serializable; import java.util.List; import org.egov.bookings.model.CommercialGrndAvailabilityModel; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @AllArgsConstruc...
package com.qkninja.network.utility; import com.qkninja.network.tileentity.TileEntityTransporter; import net.minecraft.client.Minecraft; import java.util.ArrayList; import java.util.List; /** * Helper methods for tracking all the tile entities in the game * * @author Sam Beckmann */ public class TileEntityTracke...
package com.simibubi.create.content.contraptions.components.structureMovement.mounted; import javax.annotation.Nonnull; import javax.annotation.ParametersAreNonnullByDefault; import net.minecraft.MethodsReturnNonnullByDefault; import net.minecraft.world.Container; import net.minecraft.world.item.ItemStack; import net...
/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may ...
package clover; import static org.junit.jupiter.api.Assertions.*; import org.junit.jupiter.api.Test; import core.CodeCoverage; class CloverTest { @Test void testA() { CodeCoverage cc = new CodeCoverage(); CloverT c = new CloverT(); assertEquals(c.a(),2); System.out.println("TESTA"); for(String s : cc.g...
package de.c0debase.bot.pagination; import de.c0debase.bot.Codebase; import net.dv8tion.jda.api.EmbedBuilder; import net.dv8tion.jda.api.entities.Guild; import net.dv8tion.jda.api.entities.Message; import net.dv8tion.jda.api.entities.MessageEmbed; import net.dv8tion.jda.api.entities.TextChannel; import java.util.*; i...
package com.example.qw.networktest; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import okhttp3.OkHttpClient; import okhttp3.Request; /** * Created by qw on 2018/9/21. */ public class HttpUtil { public sta...
/* * Copyright (c) 2018 Evolveum and contributors * * This work is dual-licensed under the Apache License 2.0 * and European Union Public License. See LICENSE file for details. */ package com.evolveum.midpoint.test.asserter; import static org.testng.AssertJUnit.assertEquals; import javax.xml.namespace.QName; im...
/* LICENSE START * * MIT License * * Copyright (c) 2019 Daimler TSS GmbH * * 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 rig...
package com.jellyshack.block6.activity; import android.content.ContentResolver; import android.content.ContentValues; import android.content.Intent; import android.os.AsyncTask; import android.os.Bundle; import android.provider.ContactsContract; import android.provider.Telephony; import android.telephony.PhoneNumberUt...
/* * 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.amazonaws.xray.strategy; import java.util.ArrayList; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.amazonaws.xray.emitters.Emitter; import com.amazonaws.xray.entities.Entity; import com.amazonaws.xray.entities.Segment; import com.amazonaws.xray.entities.S...
/* * 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 2002-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 ap...
package com.pyen.oplop.password; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; import java.util.Vector; import java.util.List; import java.io.IOException; public class PasswordGeneratorTest { @Before public void setup() throws IOException { TestDataParser parser = new...
package com.huobi.service.huobi; import java.util.ArrayList; import java.util.List; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.huobi.client.MarketClient; import com.huobi.client.req.market.CandlestickRequest; import com.huobi.client.req.market.MarketDepthRequest; import...
package com.macro.mall.portal.util; import redis.clients.jedis.Jedis; import java.util.Arrays; import java.util.UUID; /** * Redis distributed lock implementation. * * @author Alois Belaska <alois.belaska@gmail.com> */ public class JedisLock { /** * Lua script which allows for an atomic delete on the lo...
package com.amazonaws.kvstranscribestreaming.lambda; import com.amazonaws.kvstranscribestreaming.handler.KVSTranscribeStreamingHandler; import com.amazonaws.kvstranscribestreaming.constants.Platform; import com.amazonaws.services.lambda.runtime.Context; import com.amazonaws.services.lambda.runtime.RequestHandler; impo...
package Util; public class CifrarioPerSpostamento extends Cifrario{ /** *La classe <code>CifrarioPerTrasposizione</code> è la classe che concretizza Cifrario realizzando la codifica per trasposizione. *@param n = int che indica di quanto vengono trasposti i caratteri *@param maxValue = int che indica il massi...
package com.planet_ink.coffee_mud.core; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.core.collections.*; import com.planet_ink.coffee_mud.core.exceptions.CMException; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.plan...
/* * Copyright 2015-2018 Austin Keener & Michael Ritter & Florian Spieß * * 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 * * Unl...
package dev.tr7zw.transliterationlib.api.wrapper.entity; import dev.tr7zw.transliterationlib.api.annotations.AddToWrapper; import dev.tr7zw.transliterationlib.api.wrapper.internal.InternalBoatEntity; @AddToWrapper public interface BoatEntity extends InternalBoatEntity, Entity { public BoatEntity of(Object handle); ...
package io.github.groupease.channelmember; import javax.annotation.Nonnull; import javax.annotation.Nullable; import javax.annotation.concurrent.Immutable; import io.github.groupease.channel.Channel; import io.github.groupease.exception.ResourceNotFoundException; import org.apache.commons.lang3.builder.EqualsBuilder;...
package com.github.fromi.openidconnect; import java.util.Arrays; import java.util.List; import java.util.Set; import org.springframework.social.connect.Connection; import org.springframework.social.connect.ConnectionFactoryLocator; import org.springframework.social.connect.ConnectionKey; import org.springframework.so...
/* * 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 ...
/* Foilen CRM https://github.com/foilen/foilen-crm Copyright (c) 2015-2021 Foilen (https://foilen.com) The MIT License http://opensource.org/licenses/MIT */ package com.foilen.crm.services; import java.util.List; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowir...
package com.devonfw.cobigen.systemtest; import static com.devonfw.cobigen.api.assertj.CobiGenAsserts.assertThat; import static com.devonfw.cobigen.test.matchers.CustomHamcrestMatchers.hasItemsInList; import static org.assertj.core.api.Assertions.assertThat; import static org.hamcrest.CoreMatchers.equalTo; import stati...
/* * Copyright 2002-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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
/* * Copyright 2015 The Netty Project * * The Netty Project licenses this file to you under the Apache License, * version 2.0 (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless ...
package net.minecraft.util.datafix; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.List; import java.util.Map; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.Util; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; p...
package com.shawckz.myhcf.listener; import com.shawckz.myhcf.Factions; import com.shawckz.myhcf.configuration.FLang; import com.shawckz.myhcf.configuration.FactionLang; import org.bukkit.ChatColor; import org.bukkit.Location; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.eve...
/* * ************************************************************ * 文件:BaseFragmentContainerActivity.java 模块:app-core 项目:component * 当前修改时间:2019年05月15日 09:54:14 * 上次修改时间:2019年05月15日 09:54:14 * 作者:Cody.yi https://github.com/codyer * * 描述:app-core * Copyright (c) 2019 * **************************************...
/* * (C) Copyright 2007-2017, by France Telecom and Contributors. * * JGraphT : a free Java graph-theory library * * This program and the accompanying materials are dual-licensed under * either * * (a) the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation...
public class Quiz8 { public static void main(String[] args) { final int TARGET = 10; int i = 0; while (i < TARGET) { i++; if (i == 8) { continue; } System.out.println("i = " + i); } } }
package cn.edu.gdut.zaoying.Option.tooltip.axisPointer.lineStyle; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface OpacityNumb...
package babroval.storage.util; import java.awt.Component; import java.sql.Date; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; import java.text.SimpleDateFormat; import java.util.Vector; import javax.swing.JOptionPane; import javax.swing.JTable; import javax.swing.table.De...
/* * 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...
/* * Copyright 2015 JBoss, by Red Hat, 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 ...
package org.wso2.developerstudio.eclipse.gmf.esb.diagram.edit.policies; import java.util.Iterator; import org.eclipse.emf.ecore.EAnnotation; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; import org.eclipse.gmf.runtime.emf.commands.core.command.CompositeTr...
/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, 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 i...
/* * 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 mekanism.core; import mekanism.blocks.MekanismBlocks; import mekanism.items.MekanismItems; import mekanism.utils.ItemGroupHelper; import net.fabricmc.api.ModInitializer; import net.minecraft.block.Blocks; import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; public class MekanismCommon imp...
package Mar2021Leetcode; public class _0445AddTwoNumbersII { static public class ListNode { int val; ListNode next; ListNode() { } ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val; this.next = next; } } public static void main(String[] args) { L...
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 服务商代间连商户解绑咨询接口 * * @author auto create * @since 1.0, 2022-01-11 14:33:54 */ public class AntMerchantExpandIndirectBindConsultModel extends AlipayObject { private static final long serialVer...
package com.liyafeng.view.other.textview; public class Main { /** * https://www.cnblogs.com/tianzhijiexian/p/4222393.html * http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0120/2335.html * * Spannable * * SpannableString msp = new SpannableString("测试文字"); * * 设置字...
package net.openid.conformance.openid; import net.openid.conformance.condition.Condition; import net.openid.conformance.condition.client.AddMaxAge1ToAuthorizationEndpointRequest; import net.openid.conformance.condition.client.CheckIdTokenAuthTimeClaimPresentDueToMaxAge; import net.openid.conformance.condition.client.C...
package seedu.address.logic.commands; import seedu.address.model.person.UnitNumberContainsKeywordsPredicate; //@@author zuweitrack /** * Finds and lists the Resident Assistant (RA) of an individual RC Student * in address book whose name contains any of the argument keywords. * Keyword matching is case sensitive. ...
package com.github.appreciated.apexcharts.config; import com.github.appreciated.apexcharts.config.yaxis.*; public class YAxis { private Boolean show; private Boolean showAlways; private String seriesName; private Boolean opposite; private Boolean logarithmic; private Double tickAmount; pri...
package mml4j.main.typist.interfaces; import java.util.Set; /** * This interface represents all methods that a contained should offer * * @author Hugo GUERRIER */ public interface INodeContained { /** * Get the containers that contains the contained * * @return The containers set */ Se...
package com.yinglan.sct.community.dynamic; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.ValueAnimator; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; im...
package com.distrimind.bouncycastle.math.ec; /** * Class holding precomputation data for the WNAF (Window Non-Adjacent Form) * algorithm. */ public class WNafPreCompInfo implements PreCompInfo { volatile int promotionCountdown = 4; protected int confWidth = -1; /** * Array holding the precompute...
@ParametersAreNonnullByDefault @MethodsReturnNonnullByDefault package mezz.jei.api.recipe.advanced; import javax.annotation.ParametersAreNonnullByDefault; import net.minecraft.MethodsReturnNonnullByDefault;
package controller; import controller.util.HeaderUtil; import service.facade.AbstractFacade; import service.facade.producer.EntityManagerProducer; import service.facade.producer.LoggerProducer; import java.io.File; import java.net.URL; import java.util.Map; import javax.ws.rs.client.ClientBuilder; import javax.ws.rs.c...
package bai.kang.yun.zxd.di.component; import com.jess.arms.di.scope.ActivityScope; import bai.kang.yun.zxd.di.module.FristModule; import bai.kang.yun.zxd.mvp.ui.fragment.FristFragment; import common.AppComponent; import dagger.Component; /** * Created by jess on 9/4/16 11:17 * Contact with jess.yan.effort@gmail.c...
package com.sap.scimono.scim.system.tests.conditions; import org.junit.jupiter.api.extension.ConditionEvaluationResult; import org.junit.jupiter.api.extension.ExecutionCondition; import org.junit.jupiter.api.extension.ExtensionContext; import java.lang.reflect.AnnotatedElement; import static com.sap.scimono.entity.G...
/* * Copyright (C) 2016 Google 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 ...
/* Tencent is pleased to support the open source community by making Hippy available. * Copyright (C) 2018 THL A29 Limited, a Tencent company. 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...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE190_Integer_Overflow__int_Environment_postinc_04.java Label Definition File: CWE190_Integer_Overflow__int.label.xml Template File: sources-sinks-04.tmpl.java */ /* * @description * CWE: 190 Integer Overflow * BadSource: Environment Read data from an environment variable ...
package org.notima.camel.fortnox; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; import java.util.Map; import java.util.TreeMap; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.camel.Header; import org.notima.api.fortnox.Fortnox4J...
/* * Copyright (C) 2017 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 agr...
/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
package org.infinispan.compat; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.io.Serializable; import java.util.Collections; import java.util.Set; import org.infinispan.commons.marshall.AdvancedExternalizer; import org.infinispan.commons.marshall.Ids; import org.infin...
/* Copyright 2010-2017 BusinessCode GmbH, Germany Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
package me.calebjones.spacelaunchnow.data.models.main.astronaut; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import io.realm.RealmObject; import io.realm.annotations.PrimaryKey; public class AstronautStatus extends RealmObject { @PrimaryKey @SerializedName("...
/** * Copyright (C) 2016-2019 Expedia, 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...
/* * © Copyright IBM Corp. 201 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed t...
package com.bronto.api.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for readSMSMessages complex type. * * <p>The following schema fragment specifies the expected content contained within this...
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ package org.elasticsearch.xpack.ml.integration; import org.elasticsearch.acti...
/* * Copyright 2018 Vassili Kurman * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
package org.simplejavamail.internal.util; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.simplejavamail.api.email.Recipient; import javax.activation.DataSource; import javax.activation.FileDataSource; import ja...
package com.andev.framework.widget.adapter; import java.util.LinkedHashMap; import java.util.List; import com.andev.framework.data.DevPage; import com.andev.framework.data.multiselect.IMultiSelectEdit; /** * detail: DataManager List Extend * * @author Ttt * <pre> * 在 {@link DevDataList} 基础上添加 {@link DevData...
package me.tempus.collision; public abstract interface IAABB { public abstract AABB getAABB(); }
package com.parse.starter; import android.bluetooth.BluetoothAdapter; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.content.pm.PackageManager; import android.content.res.Configuration; import android.preference.PreferenceManager; 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 ...