text
stringlengths
7
995k
package com.java.study.answer.zuo.abasic.basic_class_05; public class Code_01_TrieTree { public static class TrieNode { public int path; public int end; public TrieNode[] map; public TrieNode() { path = 0; end = 0; map = new TrieNode[26]; } } public static class Trie { private TrieNode root;...
package com.hedera.hashgraph.sdk; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api....
/* * 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 * distribut...
import java.util.Scanner; public class Test { static final int qb=5000; public static void main(String args[]){ Dc dc1 = new Dc(); Dc dc2 = new Dc(); Test t = new Test(); try { t.catM(dc1); //System.out.println("\n"); System.out.println("-...
/* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
/** * */ package com.winterwell.maths.timeseries; import java.util.ArrayList; import java.util.Arrays; import com.winterwell.utils.MathUtils; import com.winterwell.utils.Utils; import com.winterwell.utils.containers.AbstractIterator; import com.winterwell.utils.time.Dt; import com.winterwell.utils.time.TUnit; impo...
/* * Copyright (c) 2000, 2017, 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 com.reactive.reactive.service; import org.junit.jupiter.api.Test; import reactor.core.publisher.Flux; import reactor.core.scheduler.Scheduler; import reactor.core.scheduler.Schedulers; import java.util.stream.Stream; public class ClodVSHotStreamTest { Scheduler schedulerPublisher = Schedulers.newParallel(...
/* * 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 ru.otus.springframework.library.dao.jdbc; import org.junit.jupiter.api.Test; import org.springframework.boot.test.autoconfigure.data.jdbc.DataJdbcTest; import org.springframework.boot.test.mock.mockito.SpyBean; import org.springframework.context.annotation.Import; import org.springframework.test.context.Active...
package com.atguigu.gmall.pms.controller; import java.util.Arrays; import java.util.List; import java.util.Map; import com.atguigu.core.bean.PageVo; import com.atguigu.core.bean.QueryCondition; import com.atguigu.core.bean.Resp; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import io.swagger.an...
/* * Java Genetic Algorithm Library (@__identifier__@). * Copyright (c) @__year__@ Franz Wilhelmstötter * * 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/...
import org.checkerframework.checker.initialization.qual.UnderInitialization; import org.checkerframework.checker.nullness.qual.Nullable; public class GenericTest12b { class Cell<T1 extends @Nullable Object> {} class Node<CONTENT extends @Nullable Object> { public Node(Cell<CONTENT> userObject) {} void no...
/* * Copyright (c) 2015, Arjuna Technologies Limited, Newcastle-upon-Tyne, England. All rights reserved. */ package com.arjuna.playground.ws.agreementtemplates; import java.io.Serializable; public class AgreementTemplateFieldValidationDTO implements Serializable { private static final long serialVersionUID = 7...
package training.taylor.timetracker.core; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import training.taylor.timetracker.core.dao.TimeEntry; import java.util.List; @Component public class Tracker { @Autowired private List<TimeEntry> entries;...
package com.apeter0.store.image.mapping; import com.apeter0.store.base.api.response.SearchResponse; import com.apeter0.store.base.mapping.BaseMapping; import com.apeter0.store.image.api.response.ImageResponse; import com.apeter0.store.image.model.ImageDoc; import lombok.Getter; import java.util.stream.Collectors; @G...
/******************************************************************************* * Copyright (c) 2008 Actuate Corporation. * 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 distribution, and is availabl...
/* * 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 template, choose Tools | Templates * and open the template in the editor. */ package com.ocs.indaba.aggregation.service; import au.com.bytecode.opencsv.CSVWriter; import com.ocs.indaba.aggregation.common.Constants; import com.ocs.common.Config; import com.ocs.indaba.aggregation.dao.AggrMethodDAO...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/* * Copyright 2004-2013 H2 Group. Multiple-Licensed under the H2 License, * Version 1.0, and under the Eclipse Public License, Version 1.0 * (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.constraint; import java.util.HashSet; import org.h2.engine.DbObject; import org.h...
/* * Copyright (C) 2021 - Amir Hossein Aghajari * * 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 l...
package org.flagz.testclasses; /** * Test enum. Used in testing of Flagz. */ public enum SomeEnum { CRAZY, WACKY, NORMAL, CHILLED, }
package com.tradenity.sdk.model; import java.util.Map; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.ArrayList; import java.util.Set; import java.util.LinkedHashSet; import java.util.Date; public class PaymentSource extends BaseModel{ public static final ...
/* * 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 * distribut...
/* Copyright 2017 Red Hat, 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 writing, software dis...
/* * 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 * distribut...
package com.github.sellersj.artifactchecker.model.owasp; import java.util.ArrayList; import java.util.HashMap; 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; i...
package io.muenchendigital.digiwf.json.serialization; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest public class SerializationDemoTest { }
/** * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. */ package com.thinkgem.jeesite.modules.tw.entity; import java.sql.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.thinkgem.jeesite.common.persistence.DataEntity; /** * 警情预警-自动考评Ent...
/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.test.hql; import javax.persistence.Entity; import javax.pers...
/* * BSD 3-Clause License * * Copyright (c) 2022, CGATechnologies * 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 source code must retain the above copyright not...
package com.taotao.mybatis.model2; public class SysUserRole { /** * 用户ID */ private Long userId; /** * 角色ID */ private Long roleId; /** * 用户ID * @return user_id 用户ID */ public Long getUserId() { return userId; } /** * 用户ID * @param...
/* * Copyright (c) 2016 by Gerrit Grunwald * * 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 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.checkmarx.sdk.utils; import com.checkmarx.sdk.config.Constants; import com.checkmarx.sdk.config.CxPropertiesBase; import com.checkmarx.sdk.dto.cx.CxScanParams; import com.checkmarx.sdk.exception.CheckmarxException; import com.checkmarx.sdk.utils.zip.ZipUtils; import groovy.lang.Binding; import groovy.lang....
package com.plf.student.model; import lombok.Data; @Data public class Student { private Long studentId; private String studentName; private Integer studentAge; }
/* * Copyright 2018 Artem Labazin * * 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...
/* * Copyright 2017 dmfs 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 required by applicable law or agreed to in...
// Copyright (c) 2015 Christopher "BlayTheNinth" Baker package net.blay09.mods.eirairc.command.extension; import net.blay09.mods.eirairc.api.EiraIRCAPI; import net.blay09.mods.eirairc.api.SubCommand; import net.blay09.mods.eirairc.api.irc.IRCContext; import net.blay09.mods.eirairc.api.irc.IRCUser; import net.blay09.m...
/** * 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.studerw.tda.model.account; public enum Session { NORMAL, AM, PM, SEAMLESS }
package main; import dao.DaoFactory; import dao.UserDao; import domain.User; import java.util.Date; public class UserDaoTest { public static void main(String[] args) { UserDao userDao = DaoFactory.getInstance().getUserDao(); User user = new User("DaoFactory", new Date(), 10005); userDao.a...
// BSD License (http://www.galagosearch.org/license) package org.galagosearch.core.scoring; /** * * @author trevor */ public interface DistributionSmoother { public double smooth(String word, int count, int length); public double smooth(double background, int count, int length); }
// *************************************************************************** // // Copyright (c) 2000 - 2019, Lawrence Livermore National Security, LLC // Produced at the Lawrence Livermore National Laboratory // LLNL-CODE-442911 // All rights reserved. // // This file is part of VisIt. For details, see https://vis...
/* * Copyright 2018 Anton Popov * * 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...
/* * Copyright 2020 Hazelcast Inc. * * Licensed under the Hazelcast Community License (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://hazelcast.com/hazelcast-community-license * * Unless required by applicable law or agree...
package com.lacuz.cherish; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import com.lacuz.cherish.greendao.entity.Birth; import com.lacuz.cherish.greendao.gen.BirthDao; import com.lacuz.cherish.greendao.gen.DaoMaster; import com....
/* * Copyright 2002-2017 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...
/* Copyright 2017, 2018 Masao Tomono 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...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/******************************************************************************* * Copyright (c) quickfixengine.org All rights reserved. * * This file is part of the QuickFIX FIX Engine * * This file may be distributed under the terms of the quickfixengine.org * license as defined by quickfixengine.org and ...
/* * 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...
/* * Copyright 2012 Eric F. Savage, code@efsavage.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 require...
package net.floodlightcontroller.core.web; import net.floodlightcontroller.storage.IStorageSourceService; import org.restlet.resource.Get; import org.restlet.resource.ServerResource; import java.util.Set; public class StorageSourceTablesResource extends ServerResource { @Get("json") public Set<String> retrieve()...
/************************************************************************* * * * EJBCA Community: The OpenSource Certificate Authority * * * * This software is...
/* * 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 ...
/** * PixelFormat.java * * Copyright (c) 2015 Kenji Sasaki * Released under the MIT license. * https://github.com/npedotnet/npe-image-library/blob/master/LICENSE * * This file is a part of npe-image-library. * https://github.com/npedotnet/npe-image-library * * For more details, see npe-image-library wiki. ...
package org.jboss.schlawiner.client.resources; public enum FontAwesomeStyle { solid("s"), regular("r"), light("l"), brands("b"); private final String style; FontAwesomeStyle(String style) { this.style = style; } public String style() { return style; } }
/* * @(#)CutAction.java * * Copyright (c) 1996-2010 by the original authors of JHotDraw * and all its contributors. * All rights reserved. * * The copyright of this software is owned by the authors and * contributors of the JHotDraw project ("the copyright holders"). * You may not use, copy or modify this ...
package net.md_5.bungee; import java.security.GeneralSecurityException; import java.security.Key; import java.security.KeyFactory; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.NoSuchAlgorithmException; import java.security.PublicKey; import java.security.spec.X509EncodedKey...
package org.highmed.dsf.fhir.search.parameters; import org.highmed.dsf.fhir.search.SearchQueryParameter.SearchParameterDefinition; import org.highmed.dsf.fhir.search.parameters.basic.AbstractIdentifierParameter; import org.hl7.fhir.r4.model.Enumerations.SearchParamType; import org.hl7.fhir.r4.model.Patient; import org...
package com.example.gab.babylove.ui.main.search; import android.annotation.SuppressLint; import android.app.Activity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.KeyEvent; import android.view.LayoutInflater; import a...
package us.ihmc.robotics.geometry; import javax.vecmath.AxisAngle4d; import javax.vecmath.AxisAngle4f; import javax.vecmath.Matrix3d; import javax.vecmath.Matrix3f; import javax.vecmath.Matrix4d; import javax.vecmath.Matrix4f; import javax.vecmath.Quat4d; import javax.vecmath.Quat4f; import javax.vecmath.Tuple3d; impo...
package fr.inra.urgi.datadiscovery.germplasm.api; import static org.assertj.core.api.Assertions.assertThat; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.Collections; import java.util.HashSet; import okhttp3.mockw...
/* ************************************************************************* * The contents of this file are subject to the Openbravo Public License * Version 1.1 (the "License"), being the Mozilla Public License * Version 1.1 with a permitted attribution clause; you may not use this * file except in...
package com.ieoca.problem; import com.ieoca.problem.world.City; import com.ieoca.problem.world.Map; import com.ieoca.problem.world.Position; import java.util.ArrayList; class Controller { private TSP tsp; public Controller(TSP tsp) { this.tsp = tsp; } public void setCities(Integer count) { this.tsp....
package com.pojo; import java.sql.Timestamp; /** * Cpztixian entity. @author MyEclipse Persistence Tools */ public class Cpztixian implements java.io.Serializable { // Fields private Integer id; private Caipiaodian caipiaodian; private Double money; private Integer status; private Timestamp time; private ...
/* * Copyright (c) 2020, 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.apach...
/* * The MIT License * * Copyright 2020 Takashi Harano * * 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, m...
package uk.gov.digital.ho.hocs.casework.audit; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.a...
package customfonts; import android.content.Context; import android.graphics.Typeface; import android.util.AttributeSet; import android.widget.TextView; public class TextView_Regular extends TextView { public TextView_Regular(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defSty...
/* file: DistributedStep1LocalInputId.java */ /******************************************************************************* * Copyright 2014-2017 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a...
/* * * MIT License * * Copyright (c) 2016 BotMill.io * * 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, ...
package com.lufax.jijin.user.domain; public class DefaultResultGson { private String result; private String message; }
/* * * Copyright: (c) 2012 Enough Software GmbH & Co. KG * * Licensed under: * 1. MIT: http://www.opensource.org/licenses/mit-license.php * 2. Apache 2.0: http://opensource.org/licenses/apache2.0 * 3. GPL with classpath exception: http://www.gnu.org/software/classpath/license.html * * You may not use this file...
// ============================================================================ // // Copyright (C) 2006-2018 Talend Inc. - www.talend.com // // This source code is available under agreement available at // https://github.com/Talend/data-prep/blob/master/LICENSE // // You should have received a copy of the agreement //...
/* * Copyright 2015-present Open Networking Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
package com.emergentideas.webhandle.templates.instances; import org.junit.Test; import static junit.framework.Assert.*; public class EscapeHTMLTest { @Test public void testEscapeHTML() throws Exception { EscapeHTML esc = new EscapeHTML(); String s = esc.escape("hello < > \" there"); assertFalse(s.contains("...
package com.ampota.shared.client; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.w...
package com.iyubinest.fraction; interface IntOperation { int value(); }
package linked_list_problems; import java.util.*; /* * Cracking the Coding Interview 2.1: Write code to remove duplicates from an * unsorted linked list. * * What does unsorted mean in this case? Can we make any assumptions about the * kinds of data stored in the linked list? * * Does it matter which instance...
package com.sequenceiq.environment.environment.sync; import java.util.Optional; import org.quartz.DisallowConcurrentExecution; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; impo...
package com.dove.reader.ui.book; import android.content.Context; import android.util.AttributeSet; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import com.dove.reader.R; import com.dove.reader.ui.DrawerItemView; public class ContentItemView extends LinearLayout...
package befaster.solutions.HLO; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; public class HelloSolutionTest { private static HelloSolution hello; @BeforeAll public static void setUp() { hello = new HelloS...
/* * The Spring Framework is published under the terms * of the Apache Software License. */ package com.interface21.transaction; /** * Exception thrown when a transaction can't be created using an * underlying transaction API such as JTA. * @author Rod Johnson * @since 17-Mar-2003 * @version $Revision: 1.2 $...
/* * Copyright (c) 2011-2020, baomidou (jobob@qq.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 * <p> * https://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required...
/* * VersionableMessageBodyWriter.java * Created On: Nov 26, 2016 at 8:01:37 AM * Created By: Scott A. Roehrig (saroehr@hotmail.com) */ package org.apache.bazaar.web; import java.lang.annotation.Annotation; import java.lang.reflect.Type; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import javax...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.management.network.models; import com.azure.core.annotation.BodyParam; impor...
package oasis.names.tc.ebxml_regrep.xsd.query._3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name="QueryExpressionBranchType", pr...
/* * 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...
/* * Copyright (C) 2018 The Dagger 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 ag...
package net.noyark.www.annotations; import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Retention(RUNTIME) @Target(TYPE) public @interface Component { String value() default "";//...
package $config.advsPackageName; import cn.academy.Resources; import cn.academy.ability.vanilla.VanillaCategories; import cn.academy.ability.vanilla.electromaster.CatElectromaster; import cn.academy.ability.vanilla.meltdowner.CatMeltdowner; import cn.academy.ability.vanilla.teleporter.CatTeleporter; import cn.academy....
/** * 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 m...
package io.github.dunwu.tool.map; import io.github.dunwu.tool.collection.CollectionUtil; import io.github.dunwu.tool.util.ArrayUtil; import java.io.Serializable; import java.util.*; /** * 无重复键的Map * * @param <K> 键类型 * @param <V> 值类型 * @author looly */ public class TableMap<K, V> implements Map<K, V>, Serializa...
/* * Copyright 2009 Denys Pavlov, Igor Azarnyi * * 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 b...
/* * Copyright 2021 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...
package com.lilithsthrone.game.sex.sexActions.universal; import com.lilithsthrone.game.character.attributes.CorruptionLevel; import com.lilithsthrone.game.character.npc.NPC; import com.lilithsthrone.game.sex.ArousalIncrease; import com.lilithsthrone.game.sex.Sex; import com.lilithsthrone.game.sex.SexFlags; import com....
package org.codehaus.modello.generator.xml.xpp3; /* * Copyright (c) 2004, Codehaus.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 limitatio...