- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 5,066 for Returns (0.06 sec)
-
src/main/java/org/codelibs/core/message/MessageFormatter.java
return MessageFormat.format(pattern, args); } return getNoPatternMessage(args); } catch (final Throwable ignore) { return getNoPatternMessage(args); } } /** * Returns the pattern string corresponding to the message code. * * @param messageCode * Message code * @return Pattern string */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
} /** * Returns the primary domain name of the server. * * @return the primaryDomain */ public final String getPrimaryDomain() { return this.primaryDomain; } /** * Indicates whether the session was established as a guest. * * @return the isLoggedInAsGuest */ public final boolean isLoggedInAsGuest() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
System.arraycopy(src, 0, dest, pos, src.length); return src.length; } return 0; } static String getOEMEncoding() { return OEM_ENCODING; } /** * Returns the raw byte representation of this message. * * @return A <code>byte[]</code> containing the raw message material.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
cmd/metacache-entries.go
if e == nil && other == nil { return nil, true } if e == nil { return other, false } if other == nil { return e, false } // Name should match... if e.name != other.name { if e.name < other.name { return e, false } return other, false } if other.isDir() || e.isDir() { if e.isDir() { return e, other.isDir() == e.isDir() } return other, other.isDir() == e.isDir() }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multiset.java
*/ interface Entry<E extends @Nullable Object> { /** * Returns the multiset element corresponding to this entry. Multiple calls to this method * always return the same instance. * * @return the element corresponding to this entry */ @ParametricNullness E getElement(); /** * Returns the count of the associated element in the underlying multiset. This count may either
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 19.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ByteSource.java
* opening the data stream. * * <p>The default implementation returns {@link Optional#absent}. Some sources, such as a file, * may return a non-absent value. Note that in such cases, it is <i>possible</i> that this method * will return a different number of bytes than would be returned by reading all of the bytes (for * example, some special files may return a size of 0 despite actually having content when read). *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 20 20:55:20 UTC 2025 - 25.7K bytes - Viewed (0) -
guava/src/com/google/common/hash/Hashing.java
} /** Returns a hash function implementing the SHA-512 algorithm (512 hash bits). */ public static HashFunction sha512() { return Sha512Holder.SHA_512; } private static final class Sha512Holder { static final HashFunction SHA_512 = new MessageDigestHashFunction("SHA-512", "Hashing.sha512()"); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:06:57 UTC 2025 - 31.1K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LinearTransformation.java
* and {@link #isVertical} methods return {@code false} and the {@link #slope}, and {@link * #transform} methods all return {@link Double#NaN}. The {@link #inverse} method returns the same * instance. */ public static LinearTransformation forNaN() { return NaNLinearTransformation.INSTANCE; } /** Returns whether this is a vertical transformation. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java
* * @return the operating system architecture (never null) */ @Nonnull String arch(); /** * Returns the OS version as reported by the system property "os.version". * The value is converted to lowercase for consistency. * * @return the operating system version (never null) */ @Nonnull String version(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Feb 10 14:12:18 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
} /** * Returns the name of the argument. * * @return Name of the argument */ public String getArgName() { return argName; } /** * Returns the message code. * * @return Message code */ public String getMessageCode() { return messageCode; } /** * Returns the array of arguments. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.6K bytes - Viewed (0)