- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 444 for incomplete (0.36 sec)
-
docs/en/docs/tutorial/security/simple-oauth2.md
# Simple OAuth2 with Password and Bearer { #simple-oauth2-with-password-and-bearer } Now let's build from the previous chapter and add the missing parts to have a complete security flow. ## Get the `username` and `password` { #get-the-username-and-password } We are going to use **FastAPI** security utilities to get the `username` and `password`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
// These operations should complete quickly and consistently long startTime = System.nanoTime(); for (int i = 0; i < 1000; i++) { auth1.equals(auth2); auth1.equals(auth3); auth2.equals(auth3); } long totalTime = System.nanoTime() - startTime; // Should complete in reasonable time (< 10ms for 3000 operations)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java
assertTrue(completed, "All verify operations should complete"); assertEquals(threadCount * operationsPerThread, completedVerifies.get(), "All verifies should complete"); // Performance check - should complete reasonably fast with optimized locking long duration = endTime - startTime; assertTrue(duration < 5000, "Concurrent verifies should complete within 5 seconds"); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 43.7K bytes - Viewed (0) -
docs/erasure/storage-class/README.md
MinIO server supports storage class in erasure coding mode. This allows configurable data and parity drives per object. This page is intended as a summary of MinIO Erasure Coding. For a more complete explanation, see <https://docs.min.io/community/minio-object-store/operations/concepts/erasure-coding.html>. ## Overview
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
* authentication credentials. * <p> * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> for * complete details. * * @deprecated NTLMv1 only */ /** * An HTTP servlet filter that provides NTLM authentication support. * This filter allows web applications to authenticate users via NTLM/Windows authentication. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.md
4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Environment (please complete the following information):** - OS: [e.g. Windows 10] - Browser [e.g. chrome, safari] - Version [e.g. 13.5.0] **Additional context**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 17 22:53:30 UTC 2020 - 782 bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaWorkRequest.java
return memoryRegion; } /** * Check if request is completed * * @return true if completed, false otherwise */ public boolean isCompleted() { return completed; } /** * Mark request as completed */ public void markCompleted() { this.completed = true; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 3.2K bytes - Viewed (0) -
cmd/batch-handlers_gen.go
} case "at": z.Attempts, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err, "Attempts") return } case "cmp": z.Complete, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Complete") return } case "fld": z.Failed, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Failed") return } case "lbkt":
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 01 12:53:30 UTC 2024 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
return queryTime; } /** * Checks whether the search results are partial due to timeout or other constraints. * * @return true if the results are partial, false if complete */ public boolean isPartialResults() { return partialResults; } /** * Gets the facet response containing aggregated facet information. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
*/ public FacetResponse getFacetResponse() { return facetResponse; } /** * Checks whether the search results are partial (not complete). * * @return true if the results are partial, false if complete */ public boolean isPartialResults() { return partialResults; } /** * Gets the time taken to execute the search query in milliseconds.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0)