- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 1,624 for params1 (0.06 sec)
-
android/guava/src/com/google/common/collect/ObjectArrays.java
* * @param reference any array of the desired type * @param length the length of the new array */ public static <T extends @Nullable Object> T[] newArray(T[] reference, int length) { return Platform.newArray(reference, length); } /** * Returns a new array that contains the concatenated contents of two arrays. * * @param first the first array of elements to concatenate
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
} /** * @param language the new language */ public void setLanguage(String language) { setComponentFactory(language); } /** * @return Description with reason of a Mojo deprecation. */ public String getDeprecated() { return deprecated; } /** * @param deprecated Description with reason of a Mojo deprecation.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorInternal.java
*/ boolean shouldForceSigning (); /** * @param other * @return whether the paths share a common root * @throws CIFSException */ boolean overlaps ( SmbResourceLocator other ) throws CIFSException; /** * Internal: for testing only * * @param dr * @param reqPath * @return resolved unc path */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
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) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt
* a part of the response to `streamId`. The `promisedStreamId` has a priority of one greater than * `streamId`. * * @param streamId client-initiated stream ID. Must be an odd number. * @param promisedStreamId server-initiated stream ID. Must be an even number. * @param requestHeaders minimally includes `:method`, `:scheme`, `:authority`, and `:path`. */ @Throws(IOException::class) fun pushPromise(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 11.3K 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/org/codelibs/core/collection/SLinkedList.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
*/ private ACE[] aces; private SID ownerUserSid, ownerGroupSid; /** * */ public SecurityDescriptor () {} /** * @param buffer * @param bufferIndex * @param len * @throws IOException */ public SecurityDescriptor ( byte[] buffer, int bufferIndex, int len ) throws IOException { this.decode(buffer, bufferIndex, len); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblemCollector.java
* Adds the specified problem. * * @param severity The severity of the problem, must not be {@code null}. * @param message The detail message of the problem, may be {@code null}. * @param line The one-based index of the line containing the problem or {@code -1} if unknown. * @param column The one-based index of the column containing the problem or {@code -1} if unknown. * @param cause The cause of the problem, may be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0)