text
stringlengths
7
995k
package cyan.simple.pgsql; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; @SpringBootApplication ...
package com.hyh.baselib; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void additi...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
package seedu.address.logic.parser; import static seedu.address.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT; import seedu.address.logic.commands.SortCommand; import seedu.address.logic.parser.exceptions.ParseException; //@@author chokxy /** * Parses input arguments and creates a new SortCommand object * S...
package com.jaycen.cybrepinger; import android.graphics.Typeface; import android.support.v4.view.ViewCompat; import android.text.TextUtils; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.Te...
package com.muggle.config; import de.codecentric.boot.admin.server.domain.entities.Instance; import de.codecentric.boot.admin.server.web.client.InstanceExchangeFilterFunction; import org.springframework.stereotype.Component; import org.springframework.web.reactive.function.client.ClientRequest; import org.springframew...
/* * 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.insightfullogic.honest_profiler.core.aggregation.result.straight; import java.util.ArrayList; import java.util.List; import com.insightfullogic.honest_profiler.core.aggregation.result.Aggregation; import com.insightfullogic.honest_profiler.core.aggregation.result.Keyed; import com.insightfullogic.honest_p...
package com.study.yang.everynotificationdemo; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; public class AActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceS...
/* * Copyright 2013-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...
package crm.JasminReisen.Functions; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import javax.swing.JFormattedTextField.AbstractFormatter; public class DateLabelFormatter extends AbstractFormatter { private String datePattern = "yyyy-MM-dd"; private SimpleDa...
package co.com.bancolombia.factory; import co.com.bancolombia.exceptions.CleanException; import co.com.bancolombia.task.GenerateStructureTask; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; import java.nio.file.Files; import org.gradle.api.Project; import org.gradle....
package com.example.demo.ioc.step2; public class OrderManager { // 비즈니스 환경에서 사용하는 프로그램은 변화의 요구가 극심합니다. // 현대자동차에게 주문하던 것을 기아자동차로 변경해야 하는 요구가 발생했다. // HyundaiMaker maker = new HyundaiMaker(); KiaMaker maker = new KiaMaker(); // 고객의 요구는 다양하다. 어떤 고객은 매일 매일 거래 자동차 회사를 바꾸고 싶어합니다. // 개발자인 우리는 어떻게 해야할까요? // 변화를 적용할...
package br.com.pyrodevir.monstruousbelly; import com.badlogic.gdx.ApplicationAdapter; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g...
/* * 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 ma...
package com.coolweather.app.util; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class HttpUtil { public static void sendHttpRequest(final String address,final HttpCallbackListener listener){ new Thread(n...
/* * Copyright 2012-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 2017 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, sof...
package com.bazl.dna.lims.connector.constants; /*** * @Description:定义本模块API的错误信息 * @author lt * @date 2018-10-09 */ public class ErrorInfo { /** * 参数错误 */ public static final String ERR_PARAM = "参数错误"; /** * 数据已存在 */ public static final String ERR_IS_EXISTS = "数据已存在"; /** * 用户名不能为空 */ publi...
/* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */ /***************************************************************** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional info...
public class QuestionD { public static int maxMinutes(int[] massages) { int oneAway = 0; int twoAway = 0; for (int i = massages.length - 1; i >= 0; i--) { int bestWith = massages[i] + twoAway; int bestWithout = oneAway; int current = Math.max(bestWith, bestWithout); twoAway = oneAway; oneAway = cu...
package com.lin.service.impl; import java.util.HashSet; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.lin.constants.BlockConstant; import com.lin.dao.Bloc...
package com.github.lhervier.domino.oauth.server.ext.core; import java.util.Collections; import java.util.List; import org.springframework.stereotype.Component; import com.github.lhervier.domino.oauth.server.NotesPrincipal; import com.github.lhervier.domino.oauth.server.ext.AuthorizeResponse; import com.github.lhervi...
/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.app.rest; import static org.hamcrest.Matchers.contains; import static org.hamcrest....
/* This file is part of the iText (R) project. Copyright (c) 1998-2018 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation ...
package lyhoangvinh.com.myutil.rx.functions; import io.reactivex.annotations.NonNull; import io.reactivex.functions.Predicate; /** * Created by vinh on 7/31/17. * Like {@link Predicate but without exception} */ public interface PlainPredicate<T> extends Predicate<T> { /** * Test the given input value an...
/* * Copyright @ 2015 Atlassian 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 ag...
import java.io.Serializable; public class Message implements Serializable { private static final long serialVersionUID = 1L; public String type, sender, content, recipient; public Message(String type, String sender, String content, String recipient) { this.type = type; this.sender = sende...
package org.opensrp.web.util; import java.util.List; import java.util.Map; import org.opensrp.acl.entity.Location; import org.opensrp.common.util.Tree; import org.opensrp.common.util.TreeNode; /** * {@link LocationTree} is an specification of {@link Tree} which provides helper methods for * creating a Tree for {@l...
/* * Copyright 2013 Rackspace * * 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 pers.yue.common.util; import com.amazonaws.util.Md5Utils; import org.apache.commons.codec.DecoderException; import org.apache.commons.codec.binary.Base64; import org.apache.commons.codec.binary.Hex; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import pers.yue.exceptions.ExceedingBoundaryException; ...
package org.hva.cityrunner.plus.rastermaps; import java.util.Map; import org.hva.cityrunner.ResultMatcher; import org.hva.cityrunner.map.TileSourceManager.TileSourceTemplate; import org.hva.cityrunner.plus.activities.SettingsBaseActivity; import org.hva.cityrunner.plus.views.SeekBarPreference; import org.hva.cityru...
/** * generated by Xtext 2.17.1 */ package fr.n7.ui; import fr.n7.ui.AbstractPDL2UiModule; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.eclipse.xtend.lib.annotations.FinalFieldsConstructor; /** * Use this class to register components to be used within the Eclipse IDE. */ @FinalFieldsConstructor @Supp...
/* * 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 ec.edu.itq.lenguajeprogramacion2.modelo; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; i...
package com.github.akarazhev.jacademy.datastructures.doublylinkedlist; import com.github.akarazhev.jacademy.datastructures.Employee; /** * Provides a simple doubly linked list implementation. */ final class DoublyLinkedList { private Node head; private Node tail; private int size; /** * Adds a...
// Copyright (c) Facebook, Inc. and its affiliates. // This source code is licensed under the MIT license found in the // LICENSE file in the root directory of this source tree. package com.facebook.ads.injkit.crashshield; import com.facebook.ads.injkit.model.Model; import java.util.HashMap; import java.util.HashSet...
package org.ovirt.engine.api.restapi.resource; import java.util.List; import javax.ws.rs.core.Response; import org.ovirt.engine.api.model.DiskProfile; import org.ovirt.engine.api.model.DiskProfiles; import org.ovirt.engine.api.resource.DiskProfileResource; import org.ovirt.engine.api.resource.DiskProfilesResource; i...
package com.qstarter.admin.entity; import com.qstarter.admin.enums.LogActionTypeEnum; import lombok.Data; import lombok.Getter; import lombok.Setter; import org.springframework.data.annotation.CreatedDate; import javax.persistence.*; import java.time.LocalDateTime; /** * @author peter * date: 2019-09-24 09:44 **/...
/** * Copyright 2009-2019 PrimeTek. * * 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 ...
begin_unit|revision:0.9.5;language:Java;cregit-version:0.0.1 begin_comment comment|/* * 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...
/* * Copyright 2004-2013 ICEsoft Technologies Canada Corp. * * 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 appli...
/* * MIT License * * Copyright (c) 2002-2021 Mikko Tommila * * 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 (C) 2018 justlive1 * * 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...
/* * Copyright (C) 2015-2021 52°North Spatial Information Research GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless r...
package org.dbsyncer.parser; import org.dbsyncer.cache.CacheService; import org.dbsyncer.common.event.FullRefreshEvent; import org.dbsyncer.common.event.RowChangedEvent; import org.dbsyncer.common.model.Result; import org.dbsyncer.common.model.Task; import org.dbsyncer.common.util.CollectionUtils; import org.dbsyncer....
/* * Copyright © 2014-2017 EntIT Software LLC, a Micro Focus company (L.P.) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unl...
/* * 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 ...
package blocktimsort; public enum Subarray { LEFT, RIGHT; }
package com.hrf.chess.activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.os.SystemClock; import android.support.v7.app.AppCompatActivity; import android.text.TextUtils; import android.util.Log; import android.view.KeyEvent; import android.view.View; import android....
package com.atguigu.gmall.wms.service; import com.baomidou.mybatisplus.extension.service.IService; import com.atguigu.gmall.common.bean.PageResultVo; import com.atguigu.gmall.common.bean.PageParamVo; import com.atguigu.gmall.wms.entity.PurchaseEntity; import java.util.Map; /** * 采购信息 * * @author Jiaming * @email...
package com.atguigu.gulimall.product.controller; import java.util.Arrays; import java.util.Map; // import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bi...
package cn.leancloud; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface IMHook { IMHookType type(); }
package tree; /** * You are given the root of a binary tree with n nodes where each node in the tree has node.val coins. There are n coins in total throughout the whole tree. * * In one move, we may choose two adjacent nodes and move one coin from one node to another. A move may be from parent to child, or from chi...
/* * 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...
/* * 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 ma...
package demo.commands; import net.minestom.server.command.CommandSender; import net.minestom.server.command.builder.Command; import net.minestom.server.command.builder.CommandContext; import net.minestom.server.command.builder.suggestion.SuggestionEntry; import static net.minestom.server.command.builder.arguments.Arg...
package com.kingsoft.sjk.config; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class AppConfig { private static final Logger logger = LoggerFactory.getLogger(AppConfig.class); // private static String templateDir; // // static { // URL url = AppConfig.class.getClass().getClassLoa...
/* * Copyright (c) 2010-2019 Nathan Rajlich * * 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...
// // 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.2.8-b130911.1802 生成的 // 请访问 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // 在重新编译源模式时, 对此文件的所有修改都将丢失。 // 生成时间: 2017.04.14 时间 11:15:40 AM CST // package org.tylor.hkp.client.bizModel.classData; import javax.xml.bind.annotation....
/** * Copyright Microsoft Corporation * * 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...
/* * 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...
/* * Copyright 2010-2013 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.md_5.bungee.api.plugin; import java.io.File; import java.util.HashSet; import java.util.Set; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * POJO representing the plugin.yml file. */ @Data @NoArgsConstructor @AllArgsConstructor public class PluginDescription ...
/* * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE) */ package org.ligoj.bootstrap.resource.system.session; import java.util.List; import java.util.Map; import java.util.Set; import org.ligoj.bootstrap.model.system.SystemAuthorization; import org.springframework.beans.factory.annotation.Aut...
/** * @Author Gladson Antony * @Date 01-Jan-2018 * @Time 9:38:13 AM */ package steps.scenarioSteps; import net.thucydides.core.annotations.Step; import net.thucydides.core.pages.Pages; import net.thucydides.core.steps.ScenarioSteps; import pages.homePage.GoogleHomePage;; public class GoogleHomePageSteps extends ...
package br.com.cinema.model; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import ja...
/* * Copyright 2021 Hazelcast Inc. * * Licensed under the Hazelcast Community License (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://hazelcast.com/hazelcast-community-license * * Unless required by applicable law or agree...
// Copyright 2017 Archos 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in w...
package frc.robot.commands; import edu.wpi.first.wpilibj2.command.ParallelCommandGroup; import frc.robot.Systems; import frc.robot.commands.subsystems.AnglerCommand; /** * A manual version of AimAndShoot (i.e., no limelight) * @author Colin Wong */ public class AngleAndShootCommand extends ParallelCommandGroup { ...
package com.simibubi.create.foundation.block.render; @FunctionalInterface public interface IBlockVertexColor { public int getColor(float x, float y, float z); }
package com.jfinal.ext.utils; /** * 描述:是非判断工具类 * */ public class BooleanUtil { public static String trim(String arg) { return (arg == null) ? arg : arg.trim(); } // public static String trim(HttpServletRequest request, String key) // { // String value = request.getParameter(key); /...
/** * 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.example.android.sunshine.app; import android.test.suitebuilder.TestSuiteBuilder; import junit.framework.Test; import junit.framework.TestSuite; /** * Created by Dmitrii on 7/13/2016. */ public class FullTestSuite extends TestSuite { public static Test suite() { return new TestSuiteBuilder(F...
package com.forgerock.app.condition; import java.util.*; public class NotFilter implements Filter { private Filter c1; public NotFilter(Filter c1) { this.c1 = c1; } /** * Negates a filter according the logic operator NOT. * * @param resource the resource to be filtered. If...
package com.gh.framework.config; import com.google.code.kaptcha.impl.DefaultKaptcha; import com.google.code.kaptcha.util.Config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import java.util.Properties; /** * 验证码配置 * * @author gh */ @Configurati...
/* * 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.peerbox.app.manager.file.messages; import java.util.Set; import org.hive2hive.core.model.UserPermission; import org.peerbox.app.manager.file.FileInfo; public final class RemoteShareFolderMessage extends AbstractFileMessage { private Set<UserPermission> permissions; private String invitedBy; public R...
/* * 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 info.xiaomo.server.db.msyql; import info.xiaomo.core.persist.persist.PersistFactory; import info.xiaomo.core.persist.persist.Persistable; import info.xiaomo.server.db.DataType; import info.xiaomo.server.entify.User; import info.xiaomo.server.util.JdbcUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactor...
package org.ovirt.engine.ui.webadmin.section.main.presenter.tab.user; import org.ovirt.engine.core.common.businessentities.aaa.DbUser; import org.ovirt.engine.ui.common.presenter.AbstractMainSelectedItems; import org.ovirt.engine.ui.webadmin.section.main.presenter.UserSelectionChangeEvent; import com.google.inject.In...
package org.springframework.data.r2dbc.core; import java.util.function.Function; import org.reactivestreams.Publisher; import org.springframework.data.relational.core.query.Query; import org.springframework.data.relational.core.query.Update; import org.springframework.data.relational.core.sql.SqlIdentifier; import c...
package org.hl7.fhir.dstu3.model.codesystems; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above co...
/* * Copyright 2015 Groupon.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 law or agreed to ...
/* * Copyright 2018 iserge. * * 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 w...
package pp.block4.cc.test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import java.io.ByteArrayInputStream; import java.io.File; import java.io.IOException; import org.junit.Test; import pp.iloc.Assembler; import pp.iloc.Simulator; import pp.iloc.eval.Machine; import pp.iloc.mo...
package l.c.h.j.f; final class z$i extends Enum { public static final z$i qks = new z$i("posX", 0); public static final z$i qkm = new z$i("posZ", 1); public static final z$i qkj = new z$i("negX", 2); public static final z$i qkc = new z$i("negZ", 3); // $FF: synthetic field private static final z$i[] ...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE197_Numeric_Truncation_Error__int_connect_tcp_to_short_11.java Label Definition File: CWE197_Numeric_Truncation_Error__int.label.xml Template File: sources-sink-11.tmpl.java */ /* * @description * CWE: 197 Numeric Truncation Error * BadSource: connect_tcp Read data using...
package com.puffer.admin.module.system.mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import org.springframework.stereotype.Component; import java.util.Map; /** * Mapper操作模板(不可以存在同名方法) * <p> * 基于基本类型参数的 增 / 删 / 改 / 查 / 分页 * <p> * 基于对象参数的 增 / 删 / 改 / 查 / 分页 * ...
package filters.student; import business.Settings; import business.Student; import java.io.IOException; import java.sql.SQLException; import java.util.logging.Level; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.ser...
/* * 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.classicmodels.entity; import java.io.Serializable; import java.util.HashSet; import java.util.Set; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.ManyTo...
package com.prowidesoftware.swift.model.mx; import com.prowidesoftware.swift.model.mx.dic.*; import com.prowidesoftware.swift.model.mx.AbstractMX; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annota...
package com.awen.coolweather.gson; import com.google.gson.annotations.SerializedName; /** * Created by Administrator on 2017/6/19. */ public class Basic { @SerializedName("city") public String cityName; @SerializedName("id") public String weatherId; public Update update; public class Update...
/* * 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) 2002-2020 Gargoyle Software 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 ...
/* * Copyright (c) 2002-2020 "Neo4j," * Neo4j Sweden AB [http://neo4j.com] * * This file is part of Neo4j. * * 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....
begin_unit|revision:0.9.5;language:Java;cregit-version:0.0.1 begin_comment comment|/* * 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 ...
/** * Copyright 2019 The JoyQueue Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or...
// Copyright 2011 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 in...