- Sort Score
- Result 10 results
- Languages All
Results 1051 - 1060 of 1,161 for handler (0.11 sec)
-
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
assertNotNull(suggestItem); assertEquals(word, suggestItem.getText()); assertEquals(boost, suggestItem.getUserBoost(), 0.001f); // The queryFreq and docFreq might be handled differently by SuggestItem assertTrue(suggestItem.getQueryFreq() >= 0); assertTrue(suggestItem.getDocFreq() >= 0); // Check readings String[][] itemReadings = suggestItem.getReadings();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
VersionRange mergedRange = range1.restrict(range2); // TODO current policy is to retain the original version - is this correct, do we need strategies or is that // handled elsewhere? // assertEquals( "1.1", mergedRange.getRecommendedVersion().toString(), CHECK_VERSION_RECOMMENDATION );
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 44.1K bytes - Viewed (0) -
guava/src/com/google/common/hash/Hashing.java
* you can decrease the number of tasks from 15 and 10, killing off the final 5 tasks, and * {@code consistentHash} will handle it. If, however, you are dividing traffic among * servers {@code alpha}, {@code bravo}, and {@code charlie} and you occasionally need to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:06:57 UTC 2025 - 31.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
container is built. * Turnkey Deployments (Deployment API (Beta) in the Extensions API group) automate deployment and rolling updates of applications, specified declaratively. It handles versioning, multiple simultaneous rollouts, aggregating status across all pods, maintaining application availability, and rollback. * <strong>Automated cluster management: </strong>
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
android/pom.xml
</ciManagement> <modules> <module>guava</module> <module>guava-bom</module> <module>guava-testlib</module> <module>guava-tests</module> </modules> <build> <!-- Handle where Guava deviates from Maven defaults --> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>../..</directory>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
<modules> <module>guava</module> <module>guava-bom</module> <module>guava-gwt</module> <module>guava-testlib</module> <module>guava-tests</module> </modules> <build> <!-- Handle where Guava deviates from Maven defaults --> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>..</directory>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
void testReadMethodsWithNullBuffer() { trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION); // All read methods should handle null buffer gracefully by returning 0 assertEquals(0, trans2QueryFSInfo.readSetupWireFormat(null, 0, 0)); assertEquals(0, trans2QueryFSInfo.readParametersWireFormat(null, 0, 0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
@DisplayName("Test with null buffer in read methods") void testReadMethodsWithNullBuffer() { trans2SetFileInfo = new Trans2SetFileInformation(config, TEST_FID, mockFileInfo); // All read methods should handle null buffer gracefully assertEquals(0, trans2SetFileInfo.readSetupWireFormat(null, 0, 0)); assertEquals(0, trans2SetFileInfo.readParametersWireFormat(null, 0, 0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
ConfigurableRule rule = new ConfigurableRule(); rule.setRuleId("nullTest"); rule.setResponseProcessor(new TestResponseProcessor("nullProcessor")); // Should handle null gracefully assertFalse(rule.match(null)); } /** * Test Rule with null rule ID */ public void test_nullRuleId() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
assertNotNull(securityDescriptor.getOwnerGroupSid()); assertNull(securityDescriptor.getAces()); } @Test @DisplayName("Test decode handles SACL offset correctly") void testDecodeHandlesSaclOffset() throws SMBProtocolDecodingException { // Prepare buffer with SACL offset (should be ignored) testBuffer[0] = 0x01; // revision
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0)