- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 604 for checksum (0.05 sec)
-
src/main/java/org/codelibs/fess/sso/SsoManager.java
/** * Default constructor for creating a new SsoManager instance. */ public SsoManager() { // Default constructor } /** * Checks whether SSO authentication is available and configured. * * @return true if SSO is configured and available, false otherwise */ public boolean available() { final String ssoType = getSsoType();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
final StringBuilder buf = new StringBuilder(100); for (final String value : list) { buf.append(value).append("\n"); } return buf.toString(); } /** * Checks if the buffer contains a line that matches the specified value (after trimming). * * @param value the value to search for in the buffered lines * @return true if a matching line is found, false otherwise
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
.github/DISCUSSION_TEMPLATE/questions.yml
- type: checkboxes id: checks attributes: label: First Check description: Please confirm and check all the following options. options: - label: I added a very descriptive title here. required: true
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Aug 03 15:59:41 UTC 2023 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
/** * The allocation hint for buffer sizing */ protected int alloc_hint = 0; /** * The result code of the DCERPC operation */ protected int result = 0; /** * Checks if a specific flag is set * @param flag the flag to check * @return true if the flag is set, false otherwise */ public boolean isFlagSet(final int flag) { return (flags & flag) == flag; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
} /** * Gets the file type. * * @return the fileType */ public final int getFileType() { return this.fileType; } /** * Checks if the response is extended. * * @return the isExtended */ public final boolean isExtended() { return this.isExtended; } /** * Sets whether the response is extended.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`. To see all the options you have, checkout <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic's Type Overview</a>. You will see some examples in the next chapter.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
saveError(messages -> messages.addErrorsNotLoadFromServer(GLOBAL, targetUrl)); return redirect(ErrorAction.class); } } /** * Checks if the given URL represents a file system path. * Determines if the URL uses file system protocols that may require * special handling for content serving. * * @param url the URL to check
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostSpecifier.java
* * <p>Note that no network lookups are performed by any {@code HostSpecifier} methods. No attempt is * made to verify that a provided specifier corresponds to a real or accessible host. Only syntactic * and pattern-based checks are performed. * * <p>If you know that a given string represents a numeric IP address, use {@link InetAddresses} to * obtain and manipulate a {@link java.net.InetAddress} instance from it rather than using this
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6K bytes - Viewed (0) -
docs/en/docs/tutorial/index.md
</div> It is **HIGHLY encouraged** that you write or copy the code, edit it and run it locally. Using it in your editor is what really shows you the benefits of FastAPI, seeing how little code you have to write, all the type checks, autocompletion, etc. --- ## Install FastAPI { #install-fastapi } The first step is to install FastAPI.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
bufferIndex += pad; bufferIndex += securityBufferLength; return bufferIndex - start; } /** * Checks whether the session is either anonymous or a guest session * * @return whether the session is either anonymous or a guest session */ public boolean isLoggedInAsGuest() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1)