text
stringlengths
7
995k
package basicsPartTwo.forEachLoop; public class ForEachLoop { public static void main(String[] args) { String[] colors = {"red", "green", "blue", "black", "white"}; System.out.println("For:"); for (int i = 0; i < colors.length; i++) { System.out.println(colors[i]); } ...
package com.company; import edu.princeton.cs.algs4.*; public class QuickSortFast3WayPartitioning1 { public static boolean less( Comparable a, Comparable b ) { return a.compareTo( b ) == -1; } public static void exchange( Comparable[] a, int i, int j ) { Comparable temp = a[ i ]; a...
package com.dezhonger.y2020.m01.d19; import java.util.Arrays; /** * Created by dezhonger on 2020/01/20 * * @author dezhonger * @since 2020/01/20 */ public class Leetcode1326 { public int minTaps(int n, int[] ranges) { int[][] a = new int[ranges.length][2]; for (int i = 0; i < ranges.length; i...
/* * Copyright 2000-2012 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 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 org.ovirt.engine.core.bll; import java.util.List; import org.ovirt.engine.core.common.action.RolesOperationsParameters; import org.ovirt.engine.core.common.businessentities.Role; import org.ovirt.engine.core.common.validation.group.CreateEntity; import org.ovirt.engine.core.common.validation.group.UpdateEntit...
/* * 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 com.ttn.test; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import com.ttn.main.Reports; import com.ttn.pages.Login; public class TestLogin { WebDriver driver; Login login; public void beginLoginTest(Reports rr) { String chromePath = "D:...
package com.heitaoshu.controller.order; import com.alibaba.dubbo.config.annotation.Reference; import com.heitaoshu.entity.PageResult; import com.heitaoshu.entity.Result; import com.heitaoshu.pojo.order.ReturnCause; import com.heitaoshu.service.order.ReturnCauseService; import org.springframework.web.bind.annotation.*;...
/* * Copyright (c) 2017-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 a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
package it.unisannio.catman.screens.eventmanager.client.queries; import java.util.Date; import java.util.List; import com.google.web.bindery.requestfactory.shared.Request; import it.unisannio.catman.common.client.AbstractQuery; import it.unisannio.catman.domain.workflow.client.EventProxy; public class EventManagerQ...
package com.afirme.payment.model; import android.text.TextUtils; import androidx.annotation.Nullable; import java.util.Calendar; import java.util.Locale; /** * Utilities function class for the models package. */ public class ModelUtils { /** * Check to see whether the input string is a whole, positive nu...
package com.atguigu.gmall.oms.entity; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.math.BigDecimal; import java.io.Serializable; import java.util.Date; import lombok.Data; /** * 订单退货申请 * * @author Guan FuQing * @email moumouguan@gmail.com ...
package backtype.storm.transactional; import backtype.storm.task.TopologyContext; import java.util.Map; public interface ICommitterTransactionalSpout<X> extends ITransactionalSpout<X> { public interface Emitter extends ITransactionalSpout.Emitter { void commit(TransactionAttempt attempt); } ...
/* * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
package net.h34t.enrico.op; import net.h34t.enrico.LabelOffsetTranslator; import net.h34t.enrico.Operation; import net.h34t.enrico.Ref; import net.h34t.enrico.VM; /** * Defines a target for jmp* operations. * <p> * Note that label doesn't emit byte code - it's converted to a memory offset to jump to during the com...
package androidx.core.graphics; import android.content.Context; import android.content.res.Resources; import android.graphics.Typeface; import android.net.Uri; import android.os.CancellationSignal; import android.util.Log; import androidx.collection.SimpleArrayMap; import androidx.core.content.res.FontResourcesParserC...
/* * Copyright 2015 The OpenDCT 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...
package com.kiduyu.njugunaproject.agrifarm.Session; import com.kiduyu.njugunaproject.agrifarm.Model.User; public class Prevalent { public static User currentOnlineUser; public static final String UserPhoneKey = "UserPhone"; public static final String UserPasswordKey = "UserPassword"; }
package com.github.chic.common.util; import cn.hutool.extra.servlet.ServletUtil; import cn.hutool.http.useragent.UserAgent; import cn.hutool.http.useragent.UserAgentUtil; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.serializer.SerializerFeature; import com.github.chic.common.model.api.ApiResult; impor...
/* * 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...
/* * 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 com.ruoyi.common.core.utils.file; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.OutputStream; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import javax.s...
package wassilni.pl.navigationdrawersi.ui; import android.content.Context; import android.content.Intent; import android.os.AsyncTask; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.widget.Toast; import java.io.BufferedReader; import...
package com.micro.disk.service; import java.util.List; import java.util.Map; import com.micro.disk.bean.Chunk; import com.micro.disk.bean.FileBean; import com.micro.disk.bean.FileListBean; import com.micro.disk.bean.FolderProp; import com.micro.disk.bean.FolderTree; import com.micro.disk.bean.MergeFileBean; import co...
/************************************************************************ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved. * * Use is subject to license terms. * * Licensed under the Apache License, Version 2.0 (the "Lic...
/* * Copyright 2017-2019 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...
/* * 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 me.xiaobailong24.mvvmarms.repository.utils; import android.content.Context; import android.content.pm.ApplicationInfo; import android.content.pm.PackageManager; import android.util.Log; import java.util.ArrayList; import java.util.List; import me.xiaobailong24.mvvmarms.repository.ConfigRepository; /** * @a...
/* * Copyright (c) 2008-2020, 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 ...
/* * Copyright 2015, The Querydsl Team (http://www.querydsl.com/team) * * 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 ...
/* * Copyright 2012-2018 Aerospike, Inc. * * Portions may be licensed to Aerospike, Inc. under one or more contributor * license agreements WHICH ARE COMPATIBLE WITH THE APACHE LICENSE, VERSION 2.0. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in complian...
package com.vaadin.componentfactory.enhancedgrid; import java.util.List; import com.vaadin.componentfactory.enhancedgrid.bean.Department; import com.vaadin.componentfactory.enhancedgrid.data.DepartmentData; import com.vaadin.componentfactory.enhancedgrid.filtering.TextFilterField; import com.vaadin.componentfactory.e...
/* * Copyright (C) 2016 Cognifide Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed u...
package zone.rong.loliasm.common.registries.mixins; import net.minecraft.client.audio.SoundEventAccessor; import net.minecraft.client.audio.SoundRegistry; import net.minecraft.util.ResourceLocation; import net.minecraft.util.registry.RegistrySimple; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.as...
package com.wangcaitao.admin.system.service; import com.baomidou.mybatisplus.extension.service.IService; import com.wangcaitao.admin.system.entity.RoleEmployeeBO; import com.wangcaitao.admin.system.entity.RoleEmployeeDO; import com.wangcaitao.admin.system.entity.RoleEmployeeQuery; import com.wangcaitao.admin.system.en...
package local; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.concurrent.WorkerStateEvent; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.geometry.Bounds; import javafx.scene.control.Button; import javafx.scene.control.Pagination; import javafx...
package com.vuforia; public class EyewearUserCalibrator { protected boolean swigCMemOwn; private long swigCPtr; public static final class CONSISTENCY { public static final int BAD = 1; public static final int CONSISTENCY_LEN = 4; public static final int GOOD = 3; public sta...
package gov.cdc.usds.simplereport.api; import static gov.cdc.usds.simplereport.api.Translators.parseEmail; import static gov.cdc.usds.simplereport.api.Translators.parseEthnicity; import static gov.cdc.usds.simplereport.api.Translators.parseGender; import static gov.cdc.usds.simplereport.api.Translators.parseRace; impo...
/* * Copyright 2017 Zhihu 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 ...
package com.nerotomato.shardingspherejdbc.controller; import com.nerotomato.shardingspherejdbc.entity.OmsOrder; import com.nerotomato.shardingspherejdbc.entity.PageRequest; import com.nerotomato.shardingspherejdbc.service.OmsOrderService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; i...
/* Copyright 2020-2021 Better Ltd (www.better.care) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable la...
package org.esupportail.esupsignature.entity; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.esupportail.esupsignature.entity.enums.EmailAlertFrequency; import org.esupportail.esupsignature.entity.enums.UiParams; import org.esupportail.esups...
/* * Copyright (c) 2008-2015, 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.packtpub.mmj.user.domain.repository; import java.util.Collection; /** * * @author Sourabh Sharma * @param <Booking> * @param <String> */ public interface UserRepository<Booking, String> extends Repository<Booking, String> { /** * * @param name * @return */ boolean contain...
package frc.vision; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import java.util.HashMap; import edu.wpi.first.vision.VisionPipeline; import org.opencv.core.*; import org.openc...
package com.cml.cmlwanandroid.base.view; /** * Created by chenmingliang on 2018/4/18. */ public interface BaseView { }
/* * Copyright 2021 LinkedIn Corp. Licensed under the BSD 2-Clause License (the "License"). See License in the project root for license information. */ package com.linkedin.kafka.cruisecontrol.detector.notifier; import com.linkedin.cruisecontrol.detector.Anomaly; import com.linkedin.cruisecontrol.detector.AnomalyTy...
/* * Copyright (C) 2014 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 2015-2020 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 2012-2017 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 db.migration; import java.sql.Connection; import org.flywaydb.core.api.MigrationInfo; import org.flywaydb.core.api.callback.BaseFlywayCallback; public class ExampleFlywayCallback extends BaseFlywayCallback { private String _descr; @Override public void beforeEachMigrate(Connection connection, M...
/** * vertigo - simple java starter * * Copyright (C) 2013-2019, vertigo-io, KleeGroup, direction.technique@kleegroup.com (http://www.kleegroup.com) * KleeGroup, Centre d'affaire la Boursidiere - BP 159 - 92357 Le Plessis Robinson Cedex - France * * Licensed under the Apache License, Version 2.0 (the "License"); ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.appservice.implementation; import com.azure.core.annotation.BodyParam; import com.azure.core.annotation.Delete; import com.azure...
package br.com.integrador.model; import br.com.integrador.exception.HabilitacaoInvalidaException; import java.util.ArrayList; public class Caminhao extends Veiculo { public Caminhao() { this.setCapacidade(3); this.carga = new ArrayList<>(this.getCapacidade()); } @Override public voi...
/* * Copyright 2014-2019 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 2016-2020 Bowler Hat LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, softwar...
/* * Copyright 2016-2021 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 2018 Karlsruhe Institute of Technology. * * 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 appl...
package com.disruptor.netty.common; <<<<<<< HEAD /** * Created with IntelliJ IDEA. * Description: * User: kkc * Email: wochiyouzhi@gmail.com * Date: 2018-11-01 * Time: 上午9:57 */ ======= >>>>>>> e34cfaaf75c090c83b307d83bb7c1c8af07acefb import io.netty.handler.codec.marshalling.DefaultMarshallerProvider; import 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")...
package org.apereo.cas.mock; import org.apereo.cas.authentication.Authentication; import org.apereo.cas.authentication.principal.Service; import org.apereo.cas.ticket.ExpirationPolicy; import org.apereo.cas.ticket.ProxyGrantingTicketImpl; import org.apereo.cas.ticket.ServiceTicket; import org.apereo.cas.ticket.Ticket;...
/***************************************************************** JADE - Java Agent DEvelopment Framework is a framework to develop multi-agent systems in compliance with the FIPA specifications. Copyright (C) 2000 CSELT S.p.A. GNU Lesser General Public License This library is free software; you can redistrib...
package net.justdave.nwsweatheralertswidget; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.util.ArrayList; import java.util.List; import java.util.Timer; import java.util.TimerTask; import android.app.Se...
/* * 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 org.apache.helix.task; /* * 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, Vers...
package com.ttkey.dynamodb.utils; import java.util.Map; public class Conditionals { public static boolean isNullOrEmpty(final String val) { return val == null || val.isEmpty(); } public static boolean isNullOrEmpty(final String[] val){ return val == null || val.length == 0; } pu...
package uu.toolboxapp.ui; import android.bluetooth.BluetoothGattService; import androidx.annotation.NonNull; import android.view.View; import android.widget.TextView; import java.util.UUID; import uu.toolbox.bluetooth.UUBluetooth; import uu.toolboxapp.R; public class ServiceListRow { private TextView idLabel; ...
package com.ll.blog.config; import com.ll.blog.interceptor.BackInterceptor; import com.ll.blog.interceptor.ForeInterceptor; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.http.converter.HttpMessageConverter; import org.springf...
/* * 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 resnyx.model; public final class Invoice { }
//Created by MyEclipse Struts // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.1/xslt/JavaClass.xsl package com.spon.utils.sc.forms; import java.sql.Connection; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionMessage; import org.apach...
/** * Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose eith...
package com.cp3.base.validator.model; import lombok.Data; import lombok.ToString; import lombok.experimental.Accessors; import java.util.Map; /** * 检验约束信息 * * @author zuihou * @date 2019-07-12 14:28 */ @Data @ToString @Accessors(chain = true) public class ConstraintInfo { /** * 约束对象的类型 */ priv...
import org.cprover.CProver; public class Test { public static void test() { String[] strings = new String[0]; Object[] clone = CProver.createArrayWithType(1, strings); assert clone instanceof String[]; assert clone.length == 1; assert clone[0] == null; assert clone instanceof Object[]; ...
/* * Copyright 2000-2017 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...
/* * Copyright 2005 The Codehaus. * * 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.ashim.fxdeals.service.transaction; import com.ashim.fxdeals.bean.Deal; import com.ashim.fxdeals.bean.DealCount; import com.ashim.fxdeals.repo.jpa.DealRepository; import com.ashim.fxdeals.repo.jpa.ValidDealRepository; import com.ashim.fxdeals.service.DealCountService; import com.ashim.fxdeals.service.Storag...
/* * Copyright (C) 2018 xuexiangjys(xuexiangjys@163.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 a...
package top.vkeep.smart.proxy; import net.sf.cglib.proxy.Enhancer; import net.sf.cglib.proxy.MethodInterceptor; import net.sf.cglib.proxy.MethodProxy; import java.lang.reflect.Method; import java.util.List; /** * 代理管理器 * 提供一个创建代理对象的方法 * <p>@author: zhourl(zhouronglv@gmail.com) * <p>@description: keep * <p>@sinc...
package com.ztiany.webview.diff_data; import android.support.v4.app.Fragment; /** * @author Ztiany * Email: ztiany3@gmail.com * Date : 2017-08-31 17:08 */ public class LoadDiffDataFragment extends Fragment { /* https://jeffjade.com/2015/03/19/2015-03-19-android-webview/ loadU...
/* 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 mooc.vandy.java4android.gate.logic; /** * This file defines the Gate class. */ public class Gate { // TODO -- Fill in your code here public static final int IN = 1; public static final int OUT = -1; public static final int CLOSED = 0; private int mSwing ; public Gate(){ mSwing...
/** Packages to support the CSS-style element selector. */ package mundosk_libraries.jsoup.select;
/* * Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. */ package com.intellij.util; import com.intellij.internal.IconsLoadTime; import com.intellij.internal.IconsLoadTime.StatData; import com.intellij.testFramework.PlatformTestU...
import java.util.Scanner; public class Caesar { public static String encryptCaesar(String message) { String n = new String(); for(int i = 0; i < message.length(); i++) { int c = message.charAt(i); if ((c >=97 && c <= 122)||(c >=65 && c <= 90)){ c += 3;...
package com.alexanza.common.api.service; import com.alexanza.common.api.model.Switch; import java.util.List; import retrofit.Callback; import retrofit.http.GET; /** * Created by alex on 1/02/15. */ public interface SwitchesService { @GET("/json.htm?type=devices&used=true") public void listSwitches(Callbac...
/** * Copyright 2013 Jonathan Cobb * Copyright 2014 TangoMe 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...
/* * 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 ...
/* * Docker Engine API * * OpenAPI spec version: 1.37 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ package io.swagger.client.model; import java.util.Objects; import com.google.gson.T...
package com.zorben.dns.rrdef.rdata; import java.util.ArrayList; import com.zorben.dns.rrdef.ResourceRecord; import com.zorben.dns.util.CSParser; /** * Parses and stores data pertaining to the text data record. * <br> * Format is described below: * <pre> * +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ * /...
/* * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. Camunda licenses this file to you under the Apache License, * Version 2.0; y...
package io.redisearch.querybuilder; import io.redisearch.aggregation.AggregationBuilder; import io.redisearch.aggregation.AggregationRequest; import io.redisearch.aggregation.Group; import java.util.Arrays; import org.junit.Test; import static io.redisearch.aggregation.SortedField.desc; import static io.redisearch.ag...
package com.braintreepayments.api.models; import android.os.Parcel; import android.os.Parcelable; import android.text.TextUtils; import org.json.JSONException; import org.json.JSONObject; /** * Base builder class used to build various types of cards */ public abstract class BaseCardBuilder<T> extends PaymentMethod...
package com.atguigu.gmall.sms.service; import com.baomidou.mybatisplus.extension.service.IService; import com.atguigu.gmall.sms.entity.CouponSpuCategoryRelationEntity; import com.atguigu.core.bean.PageVo; import com.atguigu.core.bean.QueryCondition; /** * 优惠券分类关联 * * @author saber * @email lxf@theking.com * @da...
package cn.miozus.gulimall.product.controller; import cn.miozus.gulimall.common.utils.PageUtils; import cn.miozus.gulimall.common.utils.R; import cn.miozus.gulimall.product.entity.SpuInfoEntity; import cn.miozus.gulimall.product.service.SpuInfoService; import cn.miozus.gulimall.product.vo.SpuSaveVo; import org.springf...
package cn.com.heaton.blelibrary.ble.scan; import android.annotation.TargetApi; import android.bluetooth.BluetoothDevice; import android.bluetooth.le.BluetoothLeScanner; import android.bluetooth.le.ScanCallback; import android.bluetooth.le.ScanFilter; import android.bluetooth.le.ScanResult; import android.bluetooth.le...
package com.github.charlyb01.xpstorage_trinkets.mixin; import com.github.charlyb01.xpstorage.Utils; import com.github.charlyb01.xpstorage.XpBook; import com.github.charlyb01.xpstorage_trinkets.XpstorageTrinkets; import com.github.charlyb01.xpstorage_trinkets.config.ModConfig; import com.mojang.authlib.GameProfile; imp...
package com.lcwork.multimall.db.domain.generate; import java.time.LocalDate; import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; public class MultimallUserExample { protected String orderByClause; protected boolean distinct; protected List<Criteria> oredCriteria; publ...