- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 7,262 for within (0.04 sec)
-
android/guava-tests/test/com/google/common/net/HostSpecifierTest.java
/* * Copyright (C) 2009 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
@Test @DisplayName("Should fixup host with FQDN") void testFixupHost() { String fqdn = "server.example.com"; // Test with mock doNothing().when(mockReferralData).fixupHost(fqdn); mockReferralData.fixupHost(fqdn); verify(mockReferralData, times(1)).fixupHost(fqdn); // Test with concrete implementation - requires server to be set
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.14.md
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Jun 14 22:06:39 UTC 2021 - 271.5K bytes - Viewed (0) -
.github/workflows/build.yml
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 18.1K bytes - Viewed (0) -
docs/en/docs/advanced/security/oauth2-scopes.md
<img src="/img/tutorial/security/image11.png"> ## JWT token with scopes { #jwt-token-with-scopes } Now, modify the token *path operation* to return the scopes requested. We are still using the same `OAuth2PasswordRequestForm`. It includes a property `scopes` with a `list` of `str`, with each scope it received in the request.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
// Test constructor with null cause String message = "Test with null cause"; FessSystemException exception = new FessSystemException(message, null); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withNullMessageAndCause() { // Test constructor with both null message and cause
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
} // Test getBucketOrder with count.desc public void test_getBucketOrder_countDesc() { facetInfo.sort = "count.desc"; BucketOrder order = facetInfo.getBucketOrder(); assertNotNull(order); assertEquals(BucketOrder.count(false), order); } // Test getBucketOrder with count.asc public void test_getBucketOrder_countAsc() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacCredentialTypeTest.java
/** * Tests the constructor with a valid byte array. */ @Test void testConstructorWithValidData() { // A byte array with a length less than 32 should be considered valid. byte[] validData = new byte[31]; assertDoesNotThrow(() -> new PacCredentialType(validData)); } /** * Tests the constructor with a null byte array, which should throw an exception. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
README.md
- **5-15% faster** type conversions with pattern matching and switch expressions - **Reduced memory allocation** in collection operations and bean copying - **Improved reflection performance** with cached descriptors and optimized field access - **Enhanced collection operations** with Java 21 sequenced collections support
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
// Test with null name String[] values = { "value1" }; RequestParameter param = new RequestParameter(null, values); assertNull(param.getName()); assertNotNull(param.getValues()); assertEquals(1, param.getValues().length); } public void test_constructor_withEmptyName() { // Test with empty name String name = "";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0)