- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for NetName (0.35 sec)
-
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
Method[] methods = SystemMonitorTarget.class.getDeclaredMethods(); for (Method method : methods) { if (method.getName().startsWith("append") && !method.getName().equals("append")) { assertTrue("Private append methods should be private: " + method.getName(), java.lang.reflect.Modifier.isPrivate(method.getModifiers())); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 8.9K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Types.java
* Returns a human-readable string representation of {@code type}. * * <p>The format is subject to change. */ static String toString(Type type) { return (type instanceof Class) ? ((Class<?>) type).getName() : type.toString(); } static @Nullable Type getComponentType(Type type) { checkNotNull(type); AtomicReference<@Nullable Type> result = new AtomicReference<>(); new TypeVisitor() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.5K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Types.java
* Returns a human-readable string representation of {@code type}. * * <p>The format is subject to change. */ static String toString(Type type) { return (type instanceof Class) ? ((Class<?>) type).getName() : type.toString(); } static @Nullable Type getComponentType(Type type) { checkNotNull(type); AtomicReference<@Nullable Type> result = new AtomicReference<>(); new TypeVisitor() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
return f1.isDirectory() ? -1 : 1; } if (f1.isDirectory()) { return f1name.compareToIgnoreCase(f2.getName()); } diff = f1.length() - f2.length(); if (diff == 0) { return f1name.compareToIgnoreCase(f2.getName()); } return diff > 0 ? -1 : 1; } /** * Compares two SMB files by file type/extension.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
return false; } } private boolean equalsTypeVariable(TypeVariable<?> that) { return var.getGenericDeclaration().equals(that.getGenericDeclaration()) && var.getName().equals(that.getName()); } }
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/NtlmPasswordAuthenticator.java
*/ @Override public int hashCode() { return getName().toUpperCase().hashCode(); } /** * Return the domain and username in the format: * <code>domain\\username</code>. This is equivalent to <code>getName()</code>. */ @Override public String toString() { return getName(); } @Override public boolean isAnonymous() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
return false; } } private boolean equalsTypeVariable(TypeVariable<?> that) { return var.getGenericDeclaration().equals(that.getGenericDeclaration()) && var.getName().equals(that.getName()); } }
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/internal/smb2/ServerMessageBlock2Response.java
setRawPayload(payload); } if (!verifySignature(buffer, start, len)) { throw new SMBProtocolDecodingException("Signature verification failed for " + getClass().getName()); } setAsyncHandled(false); received(); } /** * * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
int s = 2; int e = stackTrace.length; for (int i = s; i < e; i++) { final StackTraceElement se = stackTrace[i]; if (i == s && SmbTreeImpl.class.getName().equals(se.getClassName()) && "close".equals(se.getMethodName())) { s++; continue; } if (se.getClassName().startsWith("org.junit.runners.")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
setRawPayload(payload); } if (!verifySignature(buffer, 4, len)) { throw new SMBProtocolDecodingException("Signature verification failed for " + this.getClass().getName()); } return len; } /** * Writes the AndX wire format to buffer * @param dst the destination buffer * @param dstIndex the starting index
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0)