- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 444 for dependencies (0.1 sec)
-
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
* suggestRequest.setMatchWordFirst(false); * suggestRequest.setSkipDuplicateWords(false); * </pre> * * <p>Note: This class is designed to work with OpenSearch and requires appropriate dependencies and configurations.</p> * * @see Request * @see SuggestResponse */ public class SuggestRequest extends Request<SuggestResponse> { /** * Constructs a new suggest request. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SimpleCircuitBreaker.java
* * Features: * - Simple state management (CLOSED, OPEN, HALF_OPEN) * - Lock-free atomic operations * - Configurable thresholds and timeouts * - No complex dependencies */ public class SimpleCircuitBreaker { private static final Logger log = LoggerFactory.getLogger(SimpleCircuitBreaker.class); /** * Circuit breaker states */ public enum State {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
#### 6.3 Integration Points - Integrate with `CIFSContext` for witness support - Modify `SmbTransport` for failover handling - Update `DfsResolver` for witness-aware resolution --- ## Implementation Dependencies ```mermaid graph TD A[SMB3 Leases] --> B[Directory Leasing] A --> C[Persistent Handles] C --> D[Multi-Channel] D --> E[RDMA Support] C --> F[Witness Protocol] D --> F
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
lenient().when(gssManager.createContext(any(), any(), any(), anyInt())).thenReturn(gssContext); // Create Kerb5Context with mocked dependencies ctx = new Kerb5Context("host.example", "cifs", null, 0, 0, null); } @AfterEach void tearDown() { if (mockedStatic != null) { mockedStatic.close(); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.16.md
- [Node binaries](#node-binaries) - [Changelog since v1.16.14](#changelog-since-v11614) - [Changes by Kind](#changes-by-kind) - [Bug or Regression](#bug-or-regression) - [Dependencies](#dependencies) - [Added](#added) - [Changed](#changed) - [Removed](#removed) - [v1.16.14](#v11614) - [Downloads for v1.16.14](#downloads-for-v11614) - [Source Code](#source-code-1)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 345.2K bytes - Viewed (0) -
docs/en/docs/tutorial/handling-errors.md
The benefit of raising an exception over returning a value will be more evident in the section about Dependencies and Security. In this example, when the client requests an item by an ID that doesn't exist, raise an exception with a status code of `404`: {* ../../docs_src/handling_errors/tutorial001.py hl[11] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
/// /// tip If you need to do any type of validation that requires communicating with any **external component**, like a database or another API, you should instead use **FastAPI Dependencies**, you will learn about them later. These custom validators are for things that can be checked with **only** the **same data** provided in the request. /// ### Understand that Code { #understand-that-code }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.2K bytes - Viewed (0) -
tensorflow/BUILD
"//tensorflow/cc:scope", "//tensorflow/core:tensorflow", "//tensorflow/core/data:standalone", # Exports for pywrap_tensorflow_internal. Many of these are transitive # dependencies of the above, but must be explicitly listed for # cc_shared_library to work. "//tensorflow/c/eager:c_api_experimental", "//tensorflow/c/eager:c_api_internal",
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Aug 28 19:11:51 UTC 2025 - 53.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
assertNotNull(thumbnailJob.sessionId); assertTrue(result.contains("Session Id:")); // The test cannot actually start the process since it requires many dependencies // The execute method catches the exception and returns the session ID } // Test execute with custom session ID public void test_execute_withCustomSessionId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
{* ../../docs_src/settings/app03_an_py39/main.py hl[1,11] *} Then for any subsequent call of `get_settings()` in the dependencies for the next requests, instead of executing the internal code of `get_settings()` and creating a new `Settings` object, it will return the same object that was returned on the first call, again and again.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0)