- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 93 for resolving (0.06 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) -
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) -
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/smb/SmbResourceLocatorInternal.java
import jcifs.CIFSException; import jcifs.DfsReferralData; import jcifs.SmbResourceLocator; /** * Internal interface for SMB resource locators. * * This interface provides internal methods for locating * and resolving SMB resources. * * @author mbechler */ public interface SmbResourceLocatorInternal extends SmbResourceLocator { /** * Determines whether SMB signing should be enforced for connections to this resource.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* <code>getByName</code> methods can be used for that. * * @param host hostname to resolve * @return the resolved NetBIOS address * @throws java.net.UnknownHostException if there is an error resolving the name */ public static NbtAddress getByName(final String host) throws UnknownHostException { return getByName(host, 0x00, null); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
* Get the DFS resolver for handling distributed file system paths * * @return the DFS instance for this context */ DfsResolver getDfs(); /** * Get the SID resolver for resolving security identifiers * * @return the SID resolver for this context */ SidResolver getSIDResolver(); /** * Get the credentials associated with this context *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.smb.SmbFileInputStream; /** * LMHOSTS file parser and NetBIOS name resolver. * This class provides functionality for resolving NetBIOS names using LMHOSTS files. */ public class Lmhosts { /** * Default constructor for Lmhosts. */ public Lmhosts() { // Default constructor }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* @param sids the array of SIDs to resolve * @param offset the starting offset in the array * @param length the number of SIDs to resolve * @throws IOException if there is an error resolving the SIDs */ static public void resolveSids(final String authorityServerName, final NtlmPasswordAuthentication auth, SID[] sids, final int offset, final int length) throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0)