text
stringlengths
7
995k
package org.edx.mobile.view.dialog; import android.os.Bundle; import androidx.fragment.app.DialogFragment; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; import org.edx...
package abstractFactory.product.ingredients.impl; import abstractFactory.product.ingredients.Veggies; public class Mushroom implements Veggies{ public String toString() { return "Mushroom"; } }
/* Part of the G4P library for Processing http://www.lagers.org.uk/g4p/index.html http://sourceforge.net/projects/g4p/files/?source=navbar Copyright (c) Peter Lager 2019 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as p...
package xyz.cafeconleche.web.thebride.service; import java.util.List; import xyz.cafeconleche.web.thebride.dto.Persona; import xyz.cafeconleche.web.thebride.hateoas.resources.TheBrideResourceSupport; public interface TheBrideResourceService { List<TheBrideResourceSupport> list(); TheBrideResourceSupport getById(...
/* * 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 ...
/* * 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 com.ub.st.utils; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.WebResource; /** * * @author uli...
/* * 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 ...
/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
/** * This Source Code Form is subject to the terms of the Mozilla Public License, * v. 2.0. If a copy of the MPL was not distributed with this file, You can * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under * the terms of the Healthcare Disclaimer located at http://openmrs.org/license....
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.06.10 at 09:40:5...
/* * 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.intermine.webservice.server.user; /* * Copyright (C) 2002-2022 FlyMine * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public Licence. This should * be distributed with the code. See the LICENSE file for more * information or http://www.gnu.org/copyl...
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2019.06.12 at 09:16:3...
/* * Copyright 2015 Async-IO.org * * 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 © 2014 - 2018 Leipzig University (Database Research Group) * * 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 * * Unles...
package com.campoy.chord.voicing.creator.model; public class CircularLinkedListNode <T> { T value; CircularLinkedListNode<T> nextNode; public CircularLinkedListNode(T value) { this.value = value; } @Override public String toString() { return "Node(" + value.toString(...
/** * 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.example.youngmall.product.service.impl; import io.renren.common.utils.Query; import org.springframework.stereotype.Service; import java.util.Map; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extensio...
package dataturks.drip; import bonsai.Utils.CommonUtils; import bonsai.config.AppConfig; import bonsai.config.DBBasedConfigs; import bonsai.dropwizard.dao.d.DProjectInvites; import bonsai.dropwizard.dao.d.DProjects; import bonsai.dropwizard.dao.d.DUsers; import com.codahale.metrics.MetricRegistry; import com.fasterxml...
/* * 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 ...
/* * * * 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 com.org.lengchuan.algorithm.leetcode.p199; //给定一棵二叉树,想象自己站在它的右侧,按照从顶部到底部的顺序,返回从右侧所能看到的节点值。 // // 示例: // // 输入: [1,2,3,null,5,null,4] //输出: [1, 3, 4] //解释: // // 1 <--- // / \ //2 3 <--- // \ \ // 5 4 <--- // // Related Topics 树 深度优先搜索 广度优先搜索 //leetcode submit region b...
/* * The MIT License * * Copyright 2021 Thomas Lehmann. * * 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, ...
/* * Copyright 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://www.apache.org/licenses/LICENSE-2.0 *...
package io.spotnext.spring.web.http; import java.util.ArrayList; import java.util.List; import java.util.Objects; import java.util.Optional; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; /** * <p>Payload class.</p> * * @author mojo2012 * @versio...
/* * 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 ...
/*- * ============LICENSE_START======================================================= * ONAP * ================================================================================ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. * ==================================================================...
/* * 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...
/* * 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 ...
public class Hw9 { public static void main(String[] args) { // 2~10사이의 랜덤한 숫자 뽑기 int min = 2; int max = 10; int range = (max - min)+ 1; // 여기서부터 전체를 루프로 감쌌으면 될 것 (12.24 feedback) int rand = (int)(Math.random() * range + min); //sum값 지정 int sum = 0; ...
/* * 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 com.huellapositiva.infrastructure.security; import com.fasterxml.jackson.databind.ObjectMapper; import com.huellapositiva.application.dto.AuthenticationRequestDto; import com.huellapositiva.application.dto.JwtResponseDto; import org.springframework.http.HttpHeaders; import org.springframework.http.MediaType; i...
package kr.ync.project.controller.front; import java.util.Locale; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotatio...
package com.alibaba.alink.common.fe.def.statistics; public class BaseLastN implements BaseStatistics { int n; @Override public String name() { return "lastn_" + n; } public int getN() { return n; } }
/* * 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 io; import java.io.*; /** * Quelques méthodes pour lire des entiers et des réels. * * @author Xavier Crégut (très largement inspiré par Cay Horstmann) * @version $Revision: 1.2 $ */ public class Console { /** * Afficher un prompt à l'écran (sans passage à la ligne) * * @param prompt texte à affi...
package com.google.api.ads.dfp.jaxws.v201511; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * * Creates ...
package dev.cheerfun.pixivic.biz.credit.aop; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut; import org.springframewor...
package ru.stqa.pft.addressbook.tests; import org.testng.annotations.Test; import ru.stqa.pft.addressbook.model.GroupData; import ru.stqa.pft.addressbook.model.Groups; import java.sql.*; /** * Created by Olga on 07.04.2016. */ public class DbConnectionTest { @Test public void testDbConection() { C...
package com.guykn.setsolver.imageprocessing.classify.models.v2floatmodels; import android.content.Context; import android.graphics.Bitmap; import com.guykn.setsolver.imageprocessing.ImageProcessingConfig; import com.guykn.setsolver.imageprocessing.classify.ClassificationResult; import com.guykn.setsolver.imageprocess...
/* * @Author: Zhe Chen * * @Date: 2021-04-22 12:52:04 * * @LastEditors: Zhe Chen * * @LastEditTime: 2021-05-14 21:53:46 * * @Description: 记录数据访问类 */ package com.buaa.lookclipboard.dao.impl; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.time.LocalD...
/* * 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.portfolio.alexey.connector.command; import android.bluetooth.BluetoothGattCharacteristic; import android.bluetooth.BluetoothGattDescriptor; import com.portfolio.alexey.connector.Sensor; /** * Created by lesa on 14.01.2017. */ public class CommandTimer extends Command { public CommandTimer(Sensor ...
// Copyright 2021 The Terasology Foundation // SPDX-License-Identifier: Apache-2.0 package org.terasology.engine.utilities.procedural; import org.joml.Math; import org.joml.RoundingMode; import org.joml.Vector2f; import java.util.Random; public class Voronoi { private static final float DENSITY_ADJUSTMENT = 0.3...
/* * Copyright (c) 2011-2017 Nexmo Inc * * 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, merge, publ...
/* * 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 com.antviktorov.chess.figures; import com.antviktorov.chess.Cell; import com.antviktorov.chess.exceptions.ImpossibleMoveException; import com.antviktorov.chess.figures.moves.Multiway; import com.antviktorov.chess.figures.moves.Move; /** * Queen class. * @author antonviktorov * @since 1.0 */ public class Q...
package com.kovizone.poi.ooxml.plus.anno; import com.kovizone.poi.ooxml.plus.api.anno.Processor; import com.kovizone.poi.ooxml.plus.processor.WriteCriteriaProcessors; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotatio...
// // ======================================================================== // Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others. // // This program and the accompanying materials are made available under // the terms of the Eclipse Public License 2.0 which is available at // https://www.eclipse.org/leg...
package com.company.input; public class ConsoleException extends RuntimeException { private static final long serialVersionUID = 42L; public ConsoleException(Throwable cause) { super(cause); } }
package org.apache.ibatis.cache.decorators; import java.lang.ref.ReferenceQueue; import java.lang.ref.SoftReference; import java.util.Deque; import java.util.LinkedList; import java.util.concurrent.locks.ReadWriteLock; import org.apache.ibatis.cache.Cache; /** * Soft Reference cache decorator Thanks to Dr. Heinz Ka...
/* * ARX: Powerful Data Anonymization * Copyright 2012 - 2021 Fabian Prasser and contributors * * 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/LICE...
/* * Copyright (c) 2002-2018 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 ...
package demo.catlets; import org.apache.curator.framework.CuratorFramework; import org.apache.curator.framework.CuratorFrameworkFactory; import org.apache.curator.retry.ExponentialBackoffRetry; import org.apache.curator.utils.ZKPaths; import org.apache.zookeeper.data.Stat; import org.json.JSONObject; import org.slf4j....
package messenger; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicLong; import javax.enterprise.context.ApplicationScoped; import org.eclipse.microprofile.reactive.messaging.Outgoing; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import io.reactivex.Flowable; import io.sma...
/** * Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending */ package io.deephaven.time; import org.joda.time.DateTimeZone; import java.util.Arrays; import java.util.List; /** * Defines Deephaven-supported timezones, which may be used for PQ-scheduling and display purposes */ public enum TimeZone { ...
package com.app.dao; import com.app.pojos.Employee; import java.util.List; public interface IEmpDao { List<Employee> getAllEmps(); Employee getEmpDetailsById(int empId); Employee addNewEmpDetails(Employee e); void deleteEmp(Employee e); Employee updateEmpDetails(Employee e); }
package com.clsaa.dop.server.test.doExecute; import com.clsaa.dop.server.test.model.dto.InterfaceStageDto; import java.util.Comparator; import static java.util.Objects.isNull; /** * @author xihao * @version 1.0 * @since 22/03/2019 */ public class StageSorter implements Comparator<InterfaceStageDto> { @Over...
package com.revolsys.record.io.format.xlsx; import java.io.OutputStream; import java.nio.charset.Charset; import com.revolsys.collection.map.MapEx; import com.revolsys.record.Record; import com.revolsys.record.RecordFactory; import com.revolsys.record.io.AbstractRecordIoFactory; import com.revolsys.record.io.RecordRe...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE400_Resource_Exhaustion__sleep_connect_tcp_04.java Label Definition File: CWE400_Resource_Exhaustion__sleep.label.xml Template File: sources-sinks-04.tmpl.java */ /* * @description * CWE: 400 Resource Exhaustion * BadSource: connect_tcp Read count using an outbound tcp c...
/* * MIT License * * Copyright (c) 2021 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 pers.tavish.code.chapter4.undirectedgraphs; import edu.princeton.cs.algs4.In; // 深度优先搜索 public class DepthFirstSearch { private boolean[] marked; // marked[v]表示是否存在s-v的路径 private int count; // 与s链接的顶点数 /* * 构造函数:计算图G中与起点s相连的顶点 */ public DepthFirstSearch(Graph G, int s) { marked = new boolean[G.V(...
package io.shadon.cloudservice.system.service; import io.shadon.cloudservice.system.entity.UserDO; /** * @author https://github.com/shadon178 */ public interface UserService { /** * 根据账号获取用户信息 * @return account 账号 */ UserDO getOneByAccount(String account); }
/* * Copyright 2020 Marc Nuri * * 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 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...
/* * Gate API v4 * Welcome to Gate.io API APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf. * * NOTE: This class is auto generated by OpenAPI Generator (https://openap...
/** * Copyright (C) 2016 Cambridge Systematics, 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 app...
package cc.before30.algex.dp; import org.junit.Assert; import org.junit.Test; import static org.junit.Assert.*; /** * BestTimeToBuyStockTest * * @author before30 * @since 2019-06-17 */ public class BestTimeToBuyStockTest { @Test public void maxProfit() { BestTimeToBuyStock stcok = new BestTime...
/* * JBoss, Home of Professional Open Source. * Copyright 2014 Red Hat, Inc., and individual contributors * as indicated by the @author tags. * * 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 Licen...
/* * Copyright (C) 2015 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 demos; import java.util.Arrays; import org.eclipse.rdf4j.query.TupleQuery; import org.eclipse.rdf4j.query.TupleQueryResult; import org.eclipse.rdf4j.query.TupleQueryResultHandlerException; import org.eclipse.rdf4j.repository.Repository; import com.fluidops.fedx.Config; import com.fluidops.fedx.FedXFactory; i...
package org.linlinjava.litemall.core.notify; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage; import org.springframework.scheduling.annotation.Async; import java.util.ArrayList; import ja...
/* * Hibernate Validator, declare and validate application constraints * * License: Apache License, Version 2.0 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>. */ package org.hibernate.validator.internal.engine.messageinterpolation.el; import jakarta.el.ELExceptio...
/******************************************************************************* * Copyright (c) 2016 Alex Shapiro - github.com/shpralex * This program and the accompanying materials * are made available under the terms of the The MIT License (MIT) * The above copyright notice and this permission notice shall be in...
package softuni.services; public interface AlbumService<Album, Integer> extends ServiceInterface<Album,Integer> { }
/* * Copyright 2020 by OLTPBenchmark 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 applicable law ...
package com.crazykulou.config; import com.baomidou.mybatisplus.core.toolkit.StringUtils; import lombok.extern.slf4j.Slf4j; import org.apache.http.HttpHost; import org.apache.http.auth.AuthScope; import org.apache.http.auth.UsernamePasswordCredentials; import org.apache.http.client.CredentialsProvider; import org.apach...
package org.pushingpixels.radiance.demo.theming.main.check.svg.filetypes; import java.awt.*; import java.awt.geom.*; import java.awt.image.BufferedImage; import java.io.*; import java.lang.ref.WeakReference; import java.util.Base64; import java.util.Stack; import javax.imageio.ImageIO; import javax.swing.SwingUtilitie...
/* * Copyright 2020 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 a...
/******************************************************************************* * Copyright (c) 2006, 2010 Soyatec (http://www.soyatec.com) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this...
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ package com.microsoft.azure.maven.servicefabric; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugin.logging.Log; import ...
package cn.nwcdcloud.samples.ocr.service.impl.textract; import java.util.List; import org.junit.jupiter.api.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import cn.nwcdcloud.samples.ocr.parse.BlockItemUtils; import cn.nw...
package com.jpaquery.core.facade; public interface OrderPath { enum OrderPathType { asc, desc } Order asc(); Order desc(); }
/*- * #%L * anchor-plugin-image * %% * Copyright (C) 2010 - 2021 Owen Feehan, ETH Zurich, University of Zurich, Hoffmann-La Roche * %% * 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 ...
package android.coolweater.com.coolweather.db; import org.litepal.crud.DataSupport; /** * Created by Ms.zhan on 2017/12/4. */ //县 public class County extends DataSupport { private int id; private String countyName;//县名 private String weatherId;//天气id private int cityId;//所属市id public int getCit...
package com.androidstudy.mpesa; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.v7.app.AppCompatActivity; import android.text.TextUtils; import android.util.Log; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import com.androidstu...
/* * Copyright (C) 2017 the original author or authors. * * This file is part of jBB Application Project. * * Licensed under the Apache License, Version 2.0 (the "License"); * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 */ package org.jbb.members.web.base.form;...
package org.tucke.jtt809.packet.upexg; import io.netty.buffer.ByteBuf; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; import org.tucke.jtt809.common.Jtt809Util; /** * @author tucke */ @ToString(callSuper = true) @EqualsAndHashCode(callSuper = true) @Data public class UpExgRegisterPacke...
public class Example11 { public static void main(String args[]) { String text = null; try { System.out.println(text.length()); } catch (Exception e) { System.out.println("Exception: this should be a NullPointerException"); throw new RuntimeException(); ...
/* * * Copyright (c) 2019, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org...
package dev.utils.common; import java.lang.reflect.GenericArrayType; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Set; import dev.utils.JCLogUtils; /** * detail: 类型工具类 * @author Ttt * <pre> * ...
/* * 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 FUJITSU LIMITED 2017 *******************************************************************************/ package org.oscm.operatorsvc.client.commands; import static org.junit.Assert.assertEquals; import static org.junit.Asser...
package themoviedb.android.example.com.themoviedb.model; import com.google.gson.annotations.Expose; public class Genre { @Expose int id; @Expose String name; public int getId() { return id; } public String getName() { return name; } public void setId(int id) { ...
/* * Copyright 2017-2019 original 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 agre...
package medium.array; import java.util.HashMap; import java.util.Map; public class DotProductOfTwoSparseVectors_1570 { static class SparseVector { private Map<Integer, Integer> coordinates; SparseVector(int[] nums) { coordinates = new HashMap<>(); for (int i = 0; i < nums....
/* * Copyright 2000-2014 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 2021 - 2022 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...
/* * 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...
/* * Copyright 2000-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...