- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 653 for deines (0.08 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainPrivate.java
* @deprecated Use {@link org.apache.maven.api.Toolchain} instead. */ @Deprecated(since = "4.0.0") public interface ToolchainPrivate extends Toolchain { /** * Let the toolchain decide if it matches requirements defined * in the toolchain plugin configuration. * @param requirements Map<String, String> key value pair, may not be {@code null} * @return {@code true} if the requirements match, otherwise {@code false} */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 1.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver.java
import javax.inject.Named; import javax.inject.Singleton; import org.apache.maven.artifact.resolver.ResolutionNode; /** * Resolves conflicting artifacts by always selecting the farthest declaration. Farthest is defined as the * declaration that has the most transitive steps away from the project being built. * * @since 3.0 */ @Named("farthest") @Singleton @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/jcifs/CredentialsTest.java
*/ @DisplayName("Credentials Interface Tests") class CredentialsTest extends BaseTest { @Mock private Credentials mockCredentials; @Test @DisplayName("Should define interface methods") void testCredentialsInterface() { // Verify interface methods exist assertDoesNotThrow(() -> { mockCredentials.unwrap(Credentials.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0) -
cmd/common-main.go
} func loadRootCredentials() auth.Credentials { // At this point, either both environment variables // are defined or both are not defined. // Check both cases and authenticate them if correctly defined var user, password string var legacyCredentials bool //nolint:gocritic if env.IsSet(config.EnvRootUser) && env.IsSet(config.EnvRootPassword) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (0) -
docs/sts/web-identity.md
integration with OIDC/OpenID based identity provider environments. This allows the generation of temporary credentials with pre-defined access policies for applications/users to interact with MinIO object storage. Calling AssumeRoleWithWebIdentity does not require the use of MinIO root or IAM credentials. Therefore, you can distribute an application (for example, on mobile devices) that requests temporary security credentials without including MinIO long lasting credentials in the application. Instead,...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/ConfigurationTest.java
*/ @DisplayName("Configuration Interface Tests") class ConfigurationTest extends BaseTest { @Mock private Configuration mockConfig; @Test @DisplayName("Should define all configuration methods") void testConfigurationInterface() { assertDoesNotThrow(() -> { mockConfig.getRandom(); mockConfig.getDfsTtl(); mockConfig.isDfsStrictView();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcError.java
*/ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
break; } } assertTrue(foundTestMethod); } public void test_serialVersionUID() { // Test that serialVersionUID is defined (by checking serializability) DictionaryException exception = new DictionaryException("Serialization test"); assertTrue(exception instanceof java.io.Serializable); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java
} @Override public Set<E> outEdges() { return Collections.unmodifiableSet(outEdgeMap.keySet()); } @Override public N adjacentNode(E edge) { // Since the reference node is defined to be 'source' for directed graphs, // we can assume this edge lives in the set of outgoing edges. // (We're relying on callers to call this method only with an edge that's in the graph.)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.5K bytes - Viewed (0) -
guava/src/com/google/common/base/Enums.java
* * @author Steve McKay * @since 9.0 */ @GwtIncompatible @J2ktIncompatible public final class Enums { private Enums() {} /** * Returns the {@link Field} in which {@code enumValue} is defined. For example, to get the {@code * Description} annotation on the {@code GOLF} constant of enum {@code Sport}, use {@code * Enums.getField(Sport.GOLF).getAnnotation(Description.class)}. * * @since 12.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 13:41:58 UTC 2025 - 4.8K bytes - Viewed (0)