text
stringlengths
7
995k
package com.dtrules.samples.chipeligibility.app; import com.dtrules.samples.chipeligibility.app.dataobjects.Job; public interface EvaluateJob { public abstract String getName(); public abstract String evaluate(int threadnum, ChipApp app, Job job); }
package io.zero88.qwe.example.systemd; import io.zero88.qwe.example.CounterProducer; public final class SystemdVerticle extends CounterProducer { @Override public String appName() { return "systemd-example"; } }
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v6/enums/campaign_status.proto package com.google.ads.googleads.v6.enums; public interface CampaignStatusEnumOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.googleads.v6.enums.CampaignStatusEnum)...
package com.cgfay.filterlibrary.audioplayer; import android.content.Context; import android.media.AudioManager; import java.util.HashSet; import java.util.Iterator; import java.util.Set; /** * 音频对焦管理器 */ public class AudioFocusManager { // 音频管理器 private AudioManager mAudioManager; // 音频管理器状态 priv...
package com.sae.event.core; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import javax.persistence.*; import java.security.Principal; import jav...
package com.qmuiteam.qmuidemo.fragment.lab; import android.content.Context; import android.graphics.Color; import android.util.AttributeSet; import android.util.Log; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView;...
/** * 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.ywh.problem.leetcode.easy; /** * 阶乘末尾 0 的个数 * [数学] * * @author ywh * @since 20/11/2019 */ public class LeetCode172 { /** * Time: O(log5(n)), Space: O(1) * * @param n * @return */ public int trailingZeroes(int n) { // 只要找出 n! 中有多少个 2 和 5 的配对(末尾 0 是由 2*5=10 贡献的...
package io.vertx.wamp.messages; import java.util.List; public class SubscribedMessage extends AbstractWAMPMessage { private final long id; private final long subscription; public SubscribedMessage(long requestId, long subscription) { super(Type.SUBSCRIBED); this.id = requestId; this.subscription =...
/* * Copyright 2021 Adobe. 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...
/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * Licensed ...
package ua.nino.logic.action; import ua.nino.logic.action.utils.actionutil.SearchesUtil; import ua.nino.model.ads.Ads; import ua.nino.model.user.User; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import java.io.IOException; import ...
// Copyright 2017 The Nomulus Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
/* * 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.power.home.jpush; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.graphics.drawable.BitmapDrawable; import androidx.core.app.NotificationCompat; import android.widget.Re...
/* * Copyright 2020 C. Schanck * * 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 i...
package com.frostrocket.testrailsdk.model; import android.util.Log; import org.json.simple.JSONObject; import java.lang.reflect.Field; import java.util.HashMap; @SuppressWarnings("unchecked") public class Configuration { private static final String TAG = Configuration.class.getSimpleName(); private final I...
package uk.co.autotrader.traverson.http; import org.apache.hc.client5.http.impl.classic.CloseableHttpResponse; import org.apache.hc.core5.http.ClassicHttpRequest; import org.apache.hc.core5.http.Header; import org.apache.hc.core5.http.HttpEntity; import org.apache.hc.core5.http.HttpRequest; import org.apache.hc.core5....
package com.aldogg.sorter.generators; import java.util.Random; import java.util.function.Function; public class GeneratorParams { public int size; public int limitLow; public long limitHigh; public Random random; public Generator.GeneratorFunctions function; }
package com.qjuzi.tools.other.deprecated.iocV1; public class ViewException extends RuntimeException { public ViewException(String strExce) { super(strExce); } }
/* * Copyright 2012-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 indi.jackie.acmpu.p1006; import org.junit.Test; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.Scanner; /** * @author jackie chen * @create 2017/7/25 * @description P1006 */ public class P1006 { private static fina...
package com.ghstudios.android.ui.compound; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.res.AssetManager; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.drawable.Drawable; import android.util.Attribute...
/* * Copyright (c) 2016 - Qeo LLC * * The source code form of this Qeo Open Source Project component is subject * to the terms of the Clear BSD license. * * You can redistribute it and/or modify it under the terms of the Clear BSD * License (http://directory.fsf.org/wiki/License:ClearBSD). See LICENSE file * fo...
package ru.medv.cubemobile.util3d; /** * Side of the triangle - the vertex indices and the color of the face. * Face of the cube - two triangles. * @author darkbarker <barkdarker@gmail.com> */ class Triangle { int v1; int v2; int v3; Color color; public Triangle( int v1, int v2, int v3, Color c) { this.v...
/* * Copyright 2017 HugeGraph Authors * * 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, Ve...
package org.apache.commons.ssl.org.bouncycastle.asn1.eac; import java.util.Hashtable; public class BidirectionalMap extends Hashtable { private static final long serialVersionUID = -7457289971962812909L; Hashtable reverseMap = new Hashtable(); public Object getReverse(Object o) { return ...
/* * 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...
package net.noconroy.itproject.application; import android.content.Context; import android.content.Intent; import android.os.AsyncTask; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.Button; import android.widget.Tex...
package org.mcmonkey.sentinel.events; import net.citizensnpcs.api.event.NPCEvent; import net.citizensnpcs.api.npc.NPC; import org.bukkit.event.HandlerList; /** * Event fired when a Sentinel NPC has no targets remaining. */ public class SentinelNoMoreTargetsEvent extends NPCEvent { /** * Handler objects, f...
/* * Copyright 2020 Haulmont. * * 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...
package com.example.juan.testappae; import android.app.Activity; import android.app.ActionBar; import android.app.Fragment; import android.support.v4.app.ActionBarDrawerToggle; import android.support.v4.view.GravityCompat; import android.support.v4.widget.DrawerLayout; import android.content.SharedPreferences; import...
package nl.knokko.customitems.editor.menu.edit.projectile.effect; import java.util.Collection; import nl.knokko.customitems.editor.menu.edit.EditProps; import nl.knokko.customitems.editor.set.ItemSet; import nl.knokko.customitems.editor.util.HelpButtons; import nl.knokko.customitems.projectile.effects.ProjectileEffec...
package de.tu_darmstadt.sse.decisionmaker.analysis.dynamicValues; public class DynamicIntValue extends DynamicValue{ private final int intValue; private final int codePosition; private final int paramIdx; public DynamicIntValue(int codePosition, int paramIdx, int intValue) { super(codePosition, paramIdx); t...
package seedu.address.logic.commands.patientcommands; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import static seedu.address.logic.commands.patientcommands.PatientCommandTestUtil.DESC_AMY; import static seedu.address.logic.commands.patientcomm...
/** * Copyright (C) 2007 Logan Johnson * * 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 com.dc.smarteam.modules.cms.utils; import com.dc.smarteam.common.utils.StringUtils; import java.util.ArrayList; import java.util.List; /** * User: songlai * Date: 13-8-22 * Time: 上午10:23 */ public class TplUtils { /** * 去除模板前缀 * * @param list 模板列表 * @param prefix 模板前缀 例如“fr...
package com.example; import javax.enterprise.context.RequestScoped; import javax.enterprise.inject.Produces; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; @RequestScoped public class EntityManagerProvider { @PersistenceContext(unitName = "example") private EntityManager em; ...
package industrialcraft.common.feature; import industrialcraft.IndustrialCraft; import industrialcraft.common.registries.BlockRegistries; import net.minecraft.core.Holder; import net.minecraft.data.worldgen.placement.PlacementUtils; import net.minecraft.world.level.levelgen.placement.PlacedFeature; public class ICPla...
package graphql.analysis; import graphql.PublicApi; import graphql.language.FragmentDefinition; import graphql.language.Node; import graphql.schema.GraphQLCompositeType; import graphql.schema.GraphQLSchema; import graphql.util.TraversalControl; import graphql.util.TraverserContext; import graphql.util.TraverserVisitor...
package hu.hdani1337.marancsicsDash.Stage; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; import com.badlogic.gdx.utils.viewport.Viewport; import hu.hdani1337.marancsicsDash.Actor.Background; import hu.hdani133...
// Copyright 2016 Google Inc. 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 law...
package ch.unizh.ori.nabu.ui.http.sotm; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.PrintStream; import javax.servlet.ServletException; import javax.servlet.ServletOutputStre...
package com.rideshare.controllers; import play.mvc.Controller; import play.mvc.Result; /** * Created by thisararanawaka on 7/13/17. */ public class UserController extends Controller { public Result test(){ return ok("Rideshare Backend"); } public static void main(String[] args) { } }
package org.JMathStudio.ImageToolkit.IntensityTools; import org.JMathStudio.DataStructure.Cell.Cell; import org.JMathStudio.Exceptions.BugEncounterException; import org.JMathStudio.Exceptions.IllegalArgumentException; import org.JMathStudio.MathToolkit.StatisticalTools.CellStatistics.CellStatistics; import org.JMathSt...
/* * Copyright (C) 2011 Scripture Software * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache L...
package itm.video; /******************************************************************************* This file is part of the ITM course 2016 (c) University of Vienna 2009-2016 *******************************************************************************/ import itm.model.MediaFactory; import itm.model.VideoMedia...
/* * Copyright 2000-2010 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...
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under t...
/* * 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...
package listeners; import java.util.EventListener; public interface ChangeEtapeListener extends EventListener { public void changeEtape(int etape); }
package com.jn.audit.core.resource.parser.parameter; import com.jn.audit.core.model.ResourceDefinition; import com.jn.audit.core.resource.parser.ResourceSupplierParser; import com.jn.audit.core.resource.supplier.MapResourceSupplier; import com.jn.langx.util.Emptys; import com.jn.langx.util.Strings; import com.jn.langx...
package module0046_generated.a; import javax.net.ssl.*; import javax.rmi.ssl.*; import java.awt.datatransfer.*; /** * Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut * labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dol...
/* * Copyright 2014 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
package com.iterable.iterableapi; import android.app.Activity; import android.net.Uri; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import org.junit.After; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.mockito.ArgumentCaptor; import org.mo...
package com.rivendell.rxdemo; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.annotation.TargetApi; import android.content.Context; import android.databinding.DataBindingUtil; import android.os.Build; import android.support.v7.app.AppCompatActivity; import android.os...
package de.tum.in.www1.artemis.security; import java.util.Collection; import java.util.Optional; import org.springframework.security.core.Authentication; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.context.SecurityContext; import org.springframework.security.cor...
// This is mutant program. // Author : ysma public class slicedGaussian { public static double phi( double x ) { return Math.exp( -x * x / 2 ) / Math.sqrt( 2 * Math.PI ); } public static double Phi2( double z ) { if (z < -8.0) { return 0.0; } if (z > 8....
// Copyright (c) YugaByte, Inc. package com.yugabyte.yw.models; import static io.swagger.annotations.ApiModelProperty.AccessMode.READ_ONLY; import static io.swagger.annotations.ApiModelProperty.AccessMode.READ_WRITE; import static play.mvc.Http.Status.BAD_REQUEST; import com.fasterxml.jackson.databind.JsonNode; impo...
package com.sequenceiq.environment.api.v1.environment.model; import javax.validation.constraints.Size; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.sequenceiq.environment.api.d...
/* * Copyright (C) 2016 Singular Studios (a.k.a Atom Tecnologia) - www.opensingular.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 ...
/******************************************************************************* * Copyright © 2019 by California Community Colleges Chancellor's Office * * 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 * o...
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.searchdefinition.processing; import com.yahoo.config.application.api.ApplicationPackage; import com.yahoo.io.IOUtils; import com.yahoo.path.Path; import com.yahoo.searchdefinition.pa...
/* Copyright 2017 Institut National de la Recherche Agronomique 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 com.halo.config.config.properties; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.boot.context.properties.ConfigurationProperties; /** * @author shoufeng */ @Data @ConfigurationProperties(prefix = HaloConfigProperties.PREFIX) @NoArgsConstru...
package com.microsoft.bingads.v11.api.test.entities.budget.read; import com.microsoft.bingads.v11.api.test.entities.budget.BulkBudgetTest; import com.microsoft.bingads.v11.bulk.entities.BulkBudget; import com.microsoft.bingads.v11.bulk.entities.Status; import com.microsoft.bingads.internal.functionalinterfaces.Functio...
/* Copyright (c) 2016 Robert Atkinson All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: Redistributions of source code must retain the above copyright...
/* * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
/* * 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 ...
/* This file is part of Arcadeflex. Arcadeflex is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Arcadeflex is distributed in the hope ...
/* * */ package com.synectiks.process.server.indexer.searches; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.synectiks.process.server.indexer.searches.SearchFailure; import org.junit.Test; import java.io.IOException; import static org.assertj.core.ap...
/* * ****************************************************************************** * Copyright (c) 2013-2014 Gabriele Mariotti. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ...
package simulation.consumers.masongui; import java.io.IOException; public class MasonTestUI { public static void main(String[] args) throws IOException { MasonModelUIController controller = MasonModelUIController.getInstance(); controller.run(); System.in.read(); } }
package com.cardealer.car_dealer.util; import org.springframework.beans.factory.annotation.Autowired; import javax.validation.ConstraintViolation; import javax.validation.Validator; import java.util.Set; public class ValidatorUtilImpl implements ValidatorUtil { private final Validator validator; @Autowired...
package org.jeecg.modules.songdd.service; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.songdd.entity.Visitinfo2; /** * @Description: visitinfo2 * @Author: jeecg-boot * @Date: 2021-06-01 * @Version: V1.0 */ public interface IVisitinfo2Service extends IService<Visitinfo2> ...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
/* * Copyright (c) 2005-2021 Xceptance Software Technologies 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 requir...
package com.template.states; import com.google.common.collect.ImmutableList; import com.template.contracts.UserContract; import net.corda.core.contracts.BelongsToContract; import net.corda.core.contracts.ContractState; import net.corda.core.contracts.LinearState; import net.corda.core.contracts.UniqueIdentifier; impor...
package net.glowstone.command.minecraft; import net.glowstone.command.CommandUtils; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.World; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; public class WorldBorderCommand extends GlowVanillaCommand { /** * Cre...
package mk.ukim.finki.photo; import mk.ukim.finki.photo.config.ApplicationProperties; import mk.ukim.finki.photo.config.DefaultProfileUtil; import io.github.jhipster.config.JHipsterConstants; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.SpringApplication; import org.spring...
package ca.bc.gov.tno.dal.db.repositories; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; import ca.bc.gov.tno.dal.db.entities.Role; /** * IRoleRepository interface, provides a way to interact with the Role * repository. */ @Repository public interface...
package net.minecraft.item; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.projectile.EntityPotion; import net.minecraft.init.SoundEvents; import net.minecraft.potion.PotionUtils; import net.minecraft.stats.StatList; import net.minecraft.util.ActionResult; import net.minecraft.util.EnumAc...
import java.util.Collection; import java.util.List; import java.util.Map; /** * Created by krr428 on 11/12/14. */ public interface IAdjacencyMatrix<T extends Comparable<T>> { public void put(String row, String col, T value); public boolean has(String row, String col); public T get(String row, String co...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ pa...
/**********************************************************\ | | | hprose | | | | Official WebSite: http://www.hprose.com/ | | ...
package com.example.entity_processor; import galdr.annotations.EntityProcessor; import galdr.annotations.GaldrSubSystem; @GaldrSubSystem public abstract class OverlapExcludeExcludeEntityProcessorSubSystem { public static class MyComponent { } @EntityProcessor( exclude = { MyComponent.class, MyComponent.class...
/** * */ package com.github.jsonldjava.utils; import static org.junit.Assert.assertNotNull; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.util.Collection; import java.util.Iterator; import org.apache.commons.io.IOUtils; /** * @autho...
package net.boomerangplatform.model.projectstormv5; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import com.fasterxml.jackson.annotation.JsonAnyGetter; import com.fasterxml.jackson.annotation.JsonAnySetter; import com.fasterxml.jackson.annotation.JsonIgnore; impor...
/* * Copyright (c) 2008-2019, Hazelcast, Inc. 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 ...
package com.mabiao.mall.product.dao; import com.mabiao.mall.product.entity.AttrGroupEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.mabiao.mall.product.vo.SpuItemAttrGroupVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /**...
/* * Copyright 2017 LinkedIn 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 applicable law or agreed to i...
package org.omg.CosNaming.NamingContextPackage; /** * org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java . * Generated by the IDL-to-Java compiler (portable), version "3.2" * from ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl * Friday, March 1, 2013 3:32:44 AM PST */ /** * I...
/* * Copyright 2015 Adaptris 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 agreed t...
/* * MSX SDK * MSX SDK client. * * The version of the OpenAPI document: 1.0.8 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.cisco.msx.platform.model; import java.util.Objects...
package scripts.utils.tdrwrapper; import bio.terra.datarepo.client.ApiException; @FunctionalInterface public interface ApiFunction<R> { R apply() throws ApiException; }
package com.itmcs.roo.mirisk.repository; import io.springlets.data.jpa.repository.support.QueryDslRepositorySupportExt; import org.springframework.roo.addon.layers.repository.jpa.annotations.RooJpaRepositoryCustomImpl; import com.itmcs.roo.mirisk.dta.EventType; import com.itmcs.roo.mirisk.dta.QEventType; import com.que...
package com.angopapo.datoo.modules.charting.components; import android.graphics.DashPathEffect; import com.angopapo.datoo.modules.charting.utils.ColorTemplate; public class LegendEntry { public LegendEntry() { } /** * * @param label The legend entry text. A `null` label will start a group. ...
package io.github.kira076.adventureclasses.commands; import org.spongepowered.api.command.args.CommandContext; import org.spongepowered.api.command.source.CommandBlockSource; import org.spongepowered.api.command.source.ConsoleSource; import org.spongepowered.api.entity.living.player.Player; import org.spongepowered.ap...
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 ...