- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 263 for resolving (0.08 sec)
-
src/main/java/jcifs/NameServiceClient.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; import java.net.InetAddress; import java.net.UnknownHostException; /** * * This is an internal API for resolving names * * @author mbechler */ public interface NameServiceClient { /** * Gets the local host NetBIOS address. * * @return local host address */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
* extends the basic {@link Source} interface with specific functionality for handling * Maven POM files and resolving related project POMs. * * <p>The interface provides two types of sources:</p> * <ul> * <li>Build sources: Used for POM files of projects being built by Maven in the filesystem. * These sources support resolving related POMs using the {@link ModelLocator}.</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 3.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* * <p>{@link org.apache.maven.api.Artifact} instances represent artifacts in the repository. * They are created when <dfn>resolving</dfn> an {@code ArtifactCoordinates} object. Resolving is the process * that selects a particular version and downloads the artifact into the local repository. * The {@link org.apache.maven.api.DownloadedArtifact} sub-interface is used when
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 7.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
} /** * Creates a new build source for the specified path. * Build sources are used for POM files of projects being built by Maven * in the filesystem and support resolving related POMs. * * @param path the path to the POM file or project directory * @return a new ModelSource instance configured as a build source * @throws NullPointerException if path is null */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
* When true, the builder will process plugin information which may include * resolving plugin dependencies and executing plugin goals that participate in project building. * * @return true if plugins should be processed, false otherwise */ boolean isProcessPlugins(); /** * Gets the list of remote repositories to use for resolving dependencies during project building.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 11.7K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
// Otherwise, an F -> T cycle will end up resolving both F and T // nondeterministically to either F or T. for (Type x = arg; x != null; x = mappings.remove(TypeVariableKey.forLookup(x))) {} return; } } mappings.put(var, arg); } } // This is needed when resolving types against a context with wildcards // For example:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; import java.util.List; import java.util.Map; /** * This is an internal API for resolving SIDs to names and/or retrieving member SIDs * * @author mbechler * * <p>This interface is intended for internal use.</p> */ public interface SidResolver { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SessionSetupHandlerTest.java
assertThrows(NoSuchMethodException.class, () -> SessionSetupHandler.class.getDeclaredConstructor()); } @Test @DisplayName("Invalid: resolving class by null name throws NPE") void testClassForNameWithNull() { // Intent: demonstrate defensive behavior with null when resolving this type by name assertThrows(NullPointerException.class, () -> Class.forName(null)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
* * <p>Each {@code Artifact} instance is basically an exact pointer to a file in a Maven repository. * {@code Artifact} instances are created when <dfn>resolving</dfn> {@link ArtifactCoordinates} instances. * Resolving is the process that selects a {@linkplain #getVersion() particular version} * and downloads the artifact in the local repository. This operation returns a {@link DownloadedArtifact}. * </p> *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
// Otherwise, an F -> T cycle will end up resolving both F and T // nondeterministically to either F or T. for (Type x = arg; x != null; x = mappings.remove(TypeVariableKey.forLookup(x))) {} return; } } mappings.put(var, arg); } } // This is needed when resolving types against a context with wildcards // For example:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0)