- Sort Score
- Result 10 results
- Languages All
Results 931 - 940 of 1,698 for param6 (0.06 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java
// Constructor ArtifactScopeEnum(int id) { this.id = id; } int getId() { return id; } /** * Helper method to simplify null processing * * @param scope a scope or {@code null} * @return the provided scope or DEFAULT_SCOPE */ public static ArtifactScopeEnum checkScope(ArtifactScopeEnum scope) { return scope == null ? DEFAULT_SCOPE : scope; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java
* * @param scopes The scopes to enable, along with all implied scopes, may be {@code null}. */ public CumulativeScopeArtifactFilter(Collection<String> scopes) { this.scopes = new HashSet<>(); addScopes(scopes); } /** * Creates a new filter that combines the specified filters. * * @param filters The filters to combine, may be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
docs/sts/web-identity.md
| Params | Value | | :-- | :-- | | *Type* | *String* | | *Required* | *No* | ### RoleArn The role ARN to use. This must be specified if and only if the web identity provider is configured with a role policy. | Params | Value | | :-- | :-- | | *Type* | *String* |
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 10 20:16:44 UTC 2024 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java
private final Class<?> targetClass; private final String fieldName; /** * {@link FieldNotFoundRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param fieldName * フィールド名 */ public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SAXRuntimeException.java
/** * {@link SAXRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public SAXRuntimeException(final SAXException cause) { super("ECL0054", asArray(createMessage(cause)), cause); } /** * メッセージを作成します。 * * @param cause * 原因 * @return メッセージ */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComCreateDirectory.java
import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * */ public class SmbComCreateDirectory extends ServerMessageBlock { /** * * @param config * @param directoryName */ public SmbComCreateDirectory ( Configuration config, String directoryName ) { super(config, SMB_COM_CREATE_DIRECTORY, directoryName); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterators.java
* iterator will be left exhausted: its {@code hasNext()} method will return {@code false}. * * @param removeFrom the iterator to (potentially) remove elements from * @param elementsToRemove the elements to remove * @return {@code true} if any element was removed from {@code iterator} */ @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
private static final String ESCAPED_QUOTE = "\"\""; private KuromojiCSVUtil() { } // no instance!!! /** * Parse CSV line * * @param line * line containing csv-encoded data * @return Array of values */ public static String[] parse(final String line) { boolean insideQuote = false;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0) -
.teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt
import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith import org.junit.jupiter.params.ParameterizedTest import org.junit.jupiter.params.provider.CsvSource import java.io.File /* * Copyright 2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License");
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 6.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
* <li>{@code repo,repo1} (since 2.0.9)= {@code repo} or {@code repo1},</li> * <li>{@code *,!repo1} (since 2.0.9)= everything except {@code repo1}.</li> * </ul> * * @param originalRepository to compare for a match. * @param pattern used for match. * @return true if the repository is a match to this pattern. */ static boolean matchPattern(ArtifactRepository originalRepository, String pattern) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0)