- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 1,633 for param7 (0.05 sec)
-
src/main/java/org/codelibs/core/misc/ValueHolder.java
package org.codelibs.core.misc; /** * 値を保持するクラスです。 * * @author koichik * @param <T> * 値の型 */ public class ValueHolder<T> { /** 値 */ protected T value; /** * インスタンスを構築します。 */ public ValueHolder() { } /** * インスタンスを構築します。 * * @param value * 値 */ public ValueHolder(final T value) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ContainerCapsuleFactory.java
import org.apache.maven.api.cli.InvokerException; import org.apache.maven.api.cli.InvokerRequest; import org.apache.maven.api.cli.Options; /** * Container capsule factory. * * @param <O> the options type * @param <R> the invoker request type * @param <C> the invoker context type */ public interface ContainerCapsuleFactory< O extends Options, R extends InvokerRequest<O>, C extends LookupInvoker.LookupInvokerContext<O, R, C>> {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
* * @return The file model to build or {@code null} if not set. * @since 4.0.0 */ Model getFileModel(); /** * Set the file model with profile activation * * @param fileModel * @return This request, never {@code null}. * @since 4.0.0 */ ModelBuildingRequest setFileModel(Model fileModel); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
/** * * @return the name type */ @Override public int getNameType () { return this.hexCode; } /** * * @param cfg * @param name * @param hexCode * @param scope */ public Name ( Configuration cfg, String name, int hexCode, String scope ) { this.config = cfg; if ( name.length() > 15 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
/** * Method removeExecution. * * @param execution a execution object. */ public void removeExecution(Execution execution) { getExecutions().remove(execution); } // -- void removeExecution( Execution ) /** * Set configuration to pass to all goals run in this phase. * * @param configuration a configuration object. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java
KeyException.class, RefreshFailedException.class, TimeoutException.class, TooManyListenersException.class, URISyntaxException.class); @Param Validator validator; @Param Result result; @Param ExceptionType exceptionType; /** * The number of other exception types in the cache of known-good exceptions and the number of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Mar 22 03:01:34 UTC 2022 - 6.5K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/SetCreationBenchmark.java
import com.google.caliper.Benchmark; import com.google.caliper.Param; import com.google.common.collect.BenchmarkHelpers.SetImpl; /** * This is meant to be used with {@code --measureMemory} to measure the memory usage of various * {@code Set} implementations. * * @author Christopher Swenson */ public class SetCreationBenchmark { @Param({
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
/** * Store a properties into a output stream, preserving comments, special character, etc. * This method is mainly to be compatible with the java.util.Properties class. * * @param os an output stream. * @param comment this parameter is ignored as this Properties * @throws IOException If storing fails */ public void store(OutputStream os, String comment) throws IOException { this.save(os);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Floats.java
* value} is greater than {@code max}, {@code max} is returned. * * <p><b>Java 21+ users:</b> Use {@code Math.clamp} instead. * * @param value the {@code float} value to constrain * @param min the lower bound (inclusive) of the range to constrain {@code value} to * @param max the upper bound (inclusive) of the range to constrain {@code value} to * @throws IllegalArgumentException if {@code min > max} * @since 21.0
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 25.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
* value} is greater than {@code max}, {@code max} is returned. * * <p><b>Java 21+ users:</b> Use {@code Math.clamp} instead. * * @param value the {@code double} value to constrain * @param min the lower bound (inclusive) of the range to constrain {@code value} to * @param max the upper bound (inclusive) of the range to constrain {@code value} to * @throws IllegalArgumentException if {@code min > max} * @since 21.0
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 27.9K bytes - Viewed (0)