text
stringlengths
7
995k
package com.ercpng.redbirdhacks2016.activities; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import android.os.CountDownTimer; import android.os.Handler; import android.os.SystemClock; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.vi...
/* * Copyright (C) 2011 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.oagi.score.gateway.http.api.bie_management.data.bie_edit; import lombok.Data; import org.oagi.score.gateway.http.helper.Utility; import java.math.BigInteger; @Data public class BieEditBdtSc { private BigInteger dtScManifestId; private String guid; private String propertyTerm; private Str...
package com.lufficc.ishuhui.adapter; import android.content.Context; import com.lufficc.ishuhui.adapter.viewholder.ChapterImagesViewHolderProvider; import com.lufficc.ishuhui.model.ChapterImages; import com.lufficc.lightadapter.LightAdapter; /** * Created by lcc_luffy on 2016/1/23. */ public class ChapterImagesAda...
package com.wk.surveys.classes; import android.text.InputFilter; import android.text.Spanned; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Created by watsaponk on 19/12/2017 AD. */ public class PartialRegexInputFilter implements InputFilter { private Pattern mPattern; public Par...
package com.chinagoods.bigdata.functions.geo; import com.chinagoods.bigdata.functions.utils.GeoUtils; import org.apache.hadoop.hive.ql.exec.Description; import org.apache.hadoop.hive.serde2.io.DoubleWritable; /** * @author ruifeng.shan * date: 2016-07-27 * time: 17:01 */ @Description(name = "wgs_distance" ...
/* * 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 com.twu.biblioteca; import java.util.Scanner; public class InputUtils { private static Scanner in = null; public static void openStream() { if (in == null) { in = new Scanner(System.in); } } public static String getInputFromUser(String instruction) { Syst...
/* * 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 ...
import javax.swing.JApplet; import java.util.Random; import java.util.ArrayList; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import java.awt.Color; import java.awt.event.KeyAdapter; import java.awt.event.KeyEvent; public class Driver extends JApplet { Image board; Graphics b...
//,temp,TestPipelinesFailover.java,209,263,temp,TestPipelinesFailover.java,129,191 //,3 public class xxx { private void doWriteOverFailoverTest(TestScenario scenario, MethodToTestIdempotence methodToTest) throws Exception { Configuration conf = new Configuration(); conf.setInt(DFSConfigKeys.DFS_BLOCK_SI...
/* * Copyright (c) 2010-2012 Sonatype, Inc. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. * You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/lic...
/* * 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...
package com.etiennelawlor.quickreturn.activities; import android.app.ActionBar; import android.app.Fragment; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.graphics.Typeface; import android.os.Bundle; import android.support.v13.app.FragmentPagerAdapter; import android.suppor...
import integersets.DynamicFusionNodeDontCaresInsert; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; class DynamicFusionNodeDontCaresInsertTest { static final long seed ...
package vg.civcraft.mc.namelayer.zeus.rabbit.incoming.groupedits; import java.util.HashMap; import java.util.Map; import java.util.UUID; import org.json.JSONObject; import com.github.maxopoly.zeus.servers.ConnectedServer; import vg.civcraft.mc.namelayer.core.Group; import vg.civcraft.mc.namelayer.core.GroupRank; im...
package modelo; /** * esta clase guardara el precio * @author Dani * */ public class Precio { /** * guarada la latitud */ private String latitud; /** * guarda la longitud */ private String longitud; /** * guarda el precio */ private String precio; /** * guarda el consumo */ private String ...
package com.bootdo.mobile.system.service.impl; import java.util.List; import java.util.Map; import com.bootdo.mobile.system.domain.MobileUser; public interface MobileUserService { MobileUser findById(Long id); MobileUser save(MobileUser user); List<MobileUser> list(Map<String, Object> map); void remove(Long ta...
// This problem is a bit odd. It turns out that when there are 4 stones on the table first player // always loses, actually it extends to any X % 4 == 0, such as 8, because they are reduced to the // 4 stones (both players play optimal strategy). Any other combination would result in the first // player picking the las...
package dtprogrammer.github.io.p42; /** * 42. Trapping Rain Water * http://dtprogrammer.github.io/42-trapping-rain-water/ */ public class Solution { public int trap(int[] height) { if (height == null || height.length == 0) { return 0; } int leftMax = 0, rightMax = 0, left =...
// .result=COMPILE_FAIL import java.util.*; public class Test { interface A { int[][] m(int i); } public static void main(String[] arg) { if(int[][]::new == null) { } } }
/* * Copyright (C) 2015 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.strata.collect.io; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import sta...
package com.devexperts.appdirect.event; import javax.xml.bind.annotation.XmlRootElement; import lombok.Data; import lombok.ToString; @Data @ToString @XmlRootElement(name = "payload") public class SubscriptionStatusPayload { Account account; Notice notice; }
package uni.webservice.service.jaxws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * This class was generated by Apache CXF 2.7.18 * Fri Apr 16 16:37:44 CEST 2021 * Ge...
/* * 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. * Licensed under the Zeebe Community License 1.1. You may not use this file * ...
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /* * 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. */ /** * * @author Ayush */ public class...
package pk.home.busterminal.web.jsf.webflow; import java.io.Serializable; import pk.home.busterminal.domain.Items; import pk.home.busterminal.service.ItemsService; import pk.home.libs.combine.web.jsf.flow.AWFControl; /** * JSF edit control class for entity class: Items * Items - запись ордера * * @author povloi...
package org.apache.poi.hssf.record.formula; import org.apache.poi.util.LittleEndian; /** * * @author Jason Height (jheight at chariot dot net dot au) */ public class FuncPtg extends AbstractFunctionPtg{ public final static byte sid = 0x21; private int numParams=0; private FuncPtg() { //Requ...
/* * 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 com.bazaarvoice.emodb.auth.jersey; import com.bazaarvoice.emodb.common.api.UnauthorizedException; import com.google.common.collect.ImmutableMap; import org.apache.shiro.authc.AuthenticationException; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import j...
package com.intkr.saas.domain.type.sns; /** * * @author Beiden * @date 2011-10-18 下午2:30:44 * @version 1.0 */ public enum CommentStatus { WaitAudit("waitAudit", "待审核"), // unapprove("unapprove", "驳回"), // Spam("spam", "垃圾"), // Trash("trash", "回收站"), // Approve("approve", "批准"), // Error("error", "异常"); /...
/* * The MIT License (MIT) * * Copyright (c) 2019 University of Manchester * * 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 ...
package io.cattle.platform.process.snapshot; import static io.cattle.platform.core.model.tables.SnapshotStoragePoolMapTable.SNAPSHOT_STORAGE_POOL_MAP; import io.cattle.platform.core.dao.GenericMapDao; import io.cattle.platform.core.model.Snapshot; import io.cattle.platform.core.model.SnapshotStoragePoolMap; import io....
/** * Copyright (c) 2013, impossibl.com * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of cond...
/** * 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 * distribu...
// Copyright 2009-2020 Information & Computational Sciences, JHI. All rights // reserved. Use is subject to the accompanying licence terms. package jhi.flapjack.gui; import java.awt.*; import java.awt.geom.*; import javax.swing.*; public class TitlePanel extends JPanel { private String title; private static Color...
package com.ailbb.alt.linux.ssh; import com.ailbb.ajj.entity.$Result; import com.ailbb.ajj.entity.$Status; import com.ailbb.alt.$; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; /* * Created by Wz on 7/10/2019. */ public class $SSHThread imp...
package com.applozic.mobicomkit.sync; import com.applozic.mobicomkit.annotations.ApplozicInternal; import com.applozic.mobicommons.json.JsonMarker; import com.applozic.mobicomkit.api.conversation.Message; import java.util.List; @ApplozicInternal public class SyncMessageFeed extends JsonMarker { private Long las...
/* * The MIT License (MIT) * * Copyright (c) 2019 ‭‭‭‭‭‭‭‭‭‭‭‭[smallbun] www.smallbun.org * * 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 limit...
package comp3350.go2fit.BuisnessLayer; import java.util.HashMap; import java.util.ArrayList; import java.util.LinkedHashMap; import comp3350.go2fit.BuisnessLayer.DatabaseManagers.ChallengeManager; import comp3350.go2fit.BuisnessLayer.ChallengesService; import comp3350.go2fit.PresentationLayer.ChallengesModelParceable;...
/* * 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.owens.oobjloader.builder; // This code was written by myself, Sean R. Owens, sean at guild dot net, // and is released to the public domain. Share and enjoy. Since some // people argue that it is impossible to release software to the public // domain, you are also free to use this code under any version of...
/** * Copyright 2014 Andreas Schildbach * * 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) 2014 The Android Open Source Project * Copyright (c) 1994, 2013, 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 Publi...
package com.avalith.hotelo.service.query; import com.avalith.hotelo.domain.Customer; import com.avalith.hotelo.dto.CustomerDto; public interface CustomerQueryService extends FetchAllByPageable<CustomerDto> { Customer findCustomerById(Long id); }
package com.linwoain.demo.utils; import java.io.DataOutputStream; /*** * root cmd命令 */ public class RootCmd { //翻译并执行相应的adb命令 public static boolean execCmd(String command) { Process process = null; DataOutputStream os = null; try { process = Runtime.getRuntime().exec("su"); os = new Dat...
/* * Copyright 2012-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...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Administrator */ public class ActorPublic { public int actorID = 0; public String firstName = "-required-"; public String lastName = "-required-"; }
package de.balvi.cuba.entityreminder.entity; import javax.persistence.Entity; import javax.persistence.Table; import javax.persistence.Column; import com.haulmont.cuba.core.entity.StandardEntity; import com.haulmont.chile.core.annotations.NamePattern; @NamePattern("%s|name") @Table(name = "DBCER_CUSTOMER") @Entity(na...
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 广告创意返回信息 * * @author auto create * @since 1.0, 2018-10-22 15:16:42 */ public class AdMaterialResultDTO extends AlipayObject { private static final long serialVersionUID = 217592688279266767...
/* * Copyright (c) 2018, Adam <Adam@sigterm.info> * Copyright (c) 2018, Cas <https://github.com/casvandongen> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of sour...
package algorithms; import algorithms.interfaces.IGenerator; @SuppressWarnings("UnusedDeclaration") public class Wichman_Hill implements IGenerator { private long seed; /** * */ public Wichman_Hill() { seed = System.currentTimeMillis() + System.identityHashCode(new Object()); } ...
/******************************************************************************* * Copyright (C) 2018-2019 camLine 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 restric...
/* * Copyright (c) 2016, University of Oslo * * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this * list of condition...
/* * 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.shoporder.dao.mapper; import com.baomidou.mybatisplus.mapper.BaseMapper; import org.apache.ibatis.annotations.Insert; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface OrderMapper extends BaseMapper { @Insert("insert into shop_or...
package pl.sdacademy.java11poz.main; public class BlokKoduCwiczenie { public static void main(String[] args) { // if int pozycja = 0; int suma = 0; { if (pozycja < 5) { suma = 100; suma++; } suma += 200; } suma += 100; pozycja = 9876; } }
/* =========================================================== * Orson Charts : a 3D chart library for the Java(tm) platform * =========================================================== * * (C)opyright 2013-2017, by Object Refinery Limited. All rights reserved. * * http://www.object-refinery.com/orsoncharts/i...
package io.github.jsonSnapshot.matchingstrategy; import lombok.NonNull; import org.json.JSONException; import org.skyscreamer.jsonassert.JSONAssert; import org.skyscreamer.jsonassert.JSONCompareMode; import io.github.jsonSnapshot.SnapshotDataItem; import io.github.jsonSnapshot.SnapshotMatchException; import io.githu...
/* * 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 org.ovirt.engine.ui.uicommonweb.models.pools; import java.util.Collections; import org.ovirt.engine.core.compat.*; import org.ovirt.engine.ui.uicompat.*; import org.ovirt.engine.core.common.businessentities.*; import org.ovirt.engine.core.common.vdscommands.*; import org.ovirt.engine.core.common.queries.*; impo...
package org.arend.frontend.library; import org.arend.ext.error.ErrorReporter; import org.arend.ext.module.ModulePath; import org.arend.ext.ui.ArendUI; import org.arend.frontend.source.FileRawSource; import org.arend.frontend.ui.ArendCliUI; import org.arend.library.LibraryDependency; import org.arend.library.LibraryHea...
package com.example.vm510l.coolweather.android; import android.content.Intent; import android.content.SharedPreferences; import android.graphics.Color; import android.os.Build; import android.os.Bundle; import android.os.PersistableBundle; import android.preference.PreferenceManager; import android.support.annotation....
/* * Copyright 1999-2018 Alibaba Group Holding Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
package com.medusa.gruul.platform.model.vo; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; import java.time.LocalDateTime; /** * @author whh * @description ...
package ca.uhn.fhir.validation; /* * #%L * HAPI FHIR - Core Library * %% * Copyright (C) 2014 - 2021 Smile CDR, 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 * * htt...
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., 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 it * unde...
/* * 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 guru.springframework.spring5webapp.bootstrap; import guru.springframework.spring5webapp.model.Author; import guru.springframework.spring5webapp.model.Book; import guru.springframework.spring5webapp.model.Publisher; import guru.springframework.spring5webapp.repositories.AuthorRepository; import guru.springframe...
package com.kernal.passportreader.sdk.view; import android.annotation.TargetApi; import android.app.Service; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; import android.graphics.Color; import android.hardware.Camera; impo...
/* * MIT License * * Copyright (c) 2021 Brandon Li * * 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, modif...
package org.ovirt.engine.ui.webadmin.section.main.presenter.popup.storage.backup; import org.ovirt.engine.ui.common.presenter.AbstractModelBoundPopupPresenterWidget; import org.ovirt.engine.ui.uicommonweb.models.templates.ImportTemplateModel; import com.google.gwt.event.shared.EventBus; import com.google.inject.Injec...
/* * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.spi.orb ; /** A generic class representing a function that takes a value and returns...
package th.skyousuke.braveland.utils; public class CompareUtils { private CompareUtils() { } public static boolean floatEquals(float value1, float value2) { return Float.compare(value1, value2) == 0; } }
package com.exasol.errorcodecatalog.loader; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertAll; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.util.Collections; import org.hamcrest.Matchers; import org.junit.ju...
package org.testng.internal.dynamicgraph; import org.testng.annotations.Test; public class SequentialClassA { @Test public void testMethodOneSequentialClassA() {} @Test public void testMethodTwoSequentialClassA() {} }
package cn.hutool.crypto.test; import cn.hutool.core.io.FileUtil; import cn.hutool.core.io.resource.ResourceUtil; import cn.hutool.core.util.StrUtil; import cn.hutool.crypto.PemUtil; import cn.hutool.crypto.asymmetric.KeyType; import cn.hutool.crypto.asymmetric.RSA; import cn.hutool.crypto.asymmetric.SM2; import org.j...
package br.edu.cesmac.si.nolweb.service; import br.edu.cesmac.si.nolweb.domain.Editoria; import br.edu.cesmac.si.nolweb.repository.EditoriaRepositoryJPA; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import java.util.List; @ApplicationScoped public class EditoriaService { @Injec...
package jp.co.yahoo.adssearchapi.v6.model; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.ArrayList; import java.util.List; impo...
package pl.zmudzin.library.core.application.catalog.book; import pl.zmudzin.library.core.application.common.NotFoundException; import pl.zmudzin.library.core.application.common.Paginated; import pl.zmudzin.library.core.domain.catalog.author.Author; import pl.zmudzin.library.core.domain.catalog.author.AuthorId; import ...
package data; public class Checkpoint { private Tile tile; private int xDirection, yDirection; /** * Constructor for the Checkpoint Class. A checkpoint is a tile's border. The enemies can only travel on dirt tiles. * If it has reached a tile which is not dirt, it will change the direction of its movement. *...
/* * 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...
package com.khelacademy.www.pojos; public class Sports { private Integer sportsId; private String SportsName; public Integer getSportsId() { return sportsId; } public void setSportsId(Integer sportsId) { this.sportsId = sportsId; } public String getSportsName() { return SportsName; } public void setSpor...
/*- * #%L * wildfly-liquibase-itests * %% * Copyright (C) 2017 James Netherton * %% * 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 com.vacuum.app.metquiz.NavigationDrawer; import android.content.Context; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.vacuum.app.metquiz.R; /** * Created by Home on 10/19/2017. */ p...
/* ### * IP: GHIDRA * * 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 writin...
/** * iBizSys 5.0 机器人生产代码(不要直接修改当前代码) * http://www.ibizsys.net */ package com.sa.unip.app.xtgl.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.s...
package votecountMR; import java.io.IOException; import org.apache.hadoop.io.IntWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Mapper; public class CountMapper extends Mapper<Object, Text, Text, IntWritable> { private final static IntWritable one = new IntWritable(1); @Override publi...
/* * Copyright 2014-2020 Rudy De Busscher (https://www.atbash.be) * * 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...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.core; public final class R { private R() {} public static final class attr { private attr() {} ...
package com.sap.config; import io.github.bonigarcia.wdm.WebDriverManager; import org.openqa.selenium.Dimension; import org.openqa.selenium.Point; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.chrome.ChromeOptions; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium...
package de.perdian.divelog.web.modules.backup; import java.io.IOException; import java.util.List; import org.springframework.web.multipart.MultipartFile; interface BackupService { List<BackupImportItem> executeImport(MultipartFile inputFile) throws IOException; Backup createBackup(); }
/* * 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 n...
/* * Copyright 1999-2015 dangdang.com. * <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 * * Unless required by applicable law o...
/* * 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) 2016, Gluon * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and ...
package ajaycamden.game.objects; public class MountainNaturals { }
package Assembler; import BitArea.StdUnit; import MIPSException.myParserException; import Memory.Storage; import OperationSet.Operation; import Parser.CodeParser; import java.io.*; import java.nio.file.Path; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import java.util.Scanner; /** * C...
package tr.havelsan.ueransim.ngap0.ies.sequences; import tr.havelsan.ueransim.ngap0.core.*; import tr.havelsan.ueransim.ngap0.pdu.*; import tr.havelsan.ueransim.utils.bits.*; import tr.havelsan.ueransim.utils.octets.*; import tr.havelsan.ueransim.ngap0.ies.bit_strings.*; import tr.havelsan.ueransim.ngap0.ies.octet_str...
package com.bumptech.glide.load.model; import android.content.Context; import android.net.Uri; import com.bumptech.glide.load.Options; import java.io.InputStream; import java.util.Arrays; import java.util.Collections; import java.util.HashSet; import java.util.Set; /** * Handles http/https Uris by delegating to th...