Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 798 for results2 (0.04 sec)

  1. src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java

            List<String> results2 = converter2.convert(text, field, "ja");
    
            assertNotNull(results1);
            assertNotNull(results2);
        }
    
        @Test
        public void testTransliteratorFunctionality() throws IOException {
            // Test that transliterator converts Hiragana to Katakana
            String text = "ひらがな";
            String field = "content";
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. tests/query_test.go

    		}
    
    		for idx := range results {
    			results[idx].Name = results[idx].Name + "_new"
    		}
    
    		if err := tx.Save(results).Error; err != nil {
    			t.Fatalf("failed to save users, got error %v", err)
    		}
    
    		return nil
    	}); result.Error != nil || result.RowsAffected != 6 {
    		t.Errorf("Failed to batch find, got error %v, rows affected: %v", result.Error, result.RowsAffected)
    	}
    
    	if totalBatch != 6 {
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Tue Jul 22 06:21:04 UTC 2025
    - 51K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SmbWatchHandleTest.java

            List<FileNotifyInformation> result1 = watchHandle.watch();
            List<FileNotifyInformation> result2 = watchHandle.watch();
            List<FileNotifyInformation> result3 = watchHandle.watch();
    
            // Verify results
            assertEquals(1, result1.size());
            assertEquals(fileNotifyInfo1, result1.get(0));
    
            assertEquals(2, result2.size());
            assertEquals(fileNotifyInfo2, result2.get(0));
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (1)
  4. src/test/java/jcifs/smb1/util/HMACT64Test.java

            for (byte b : TEST_DATA) {
                hmac2.engineUpdate(b);
            }
    
            // Both should produce the same result
            byte[] result1 = hmac1.engineDigest();
            byte[] result2 = hmac2.engineDigest();
    
            assertArrayEquals(result1, result2);
        }
    
        @Test
        void testHMACT64WithKnownTestVector() throws NoSuchAlgorithmException {
            // Test with known test vector
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java

            ResultData result1 = transformer1.transform(responseData);
            ResultData result2 = transformer2.transform(responseData);
            ResultData result3 = transformer3.transform(responseData);
    
            assertEquals("transformer1", result1.getTransformerName());
            assertEquals("transformer2", result2.getTransformerName());
            assertEquals("transformer3", result3.getTransformerName());
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 28K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/NotifyResponseTest.java

            List<FileNotifyInformation> result1 = response.getNotifyInformation();
            List<FileNotifyInformation> result2 = response.getNotifyInformation();
            List<FileNotifyInformation> result3 = response.getNotifyInformation();
    
            // Verify all calls return the same content
            assertEquals(result1.size(), result2.size());
            assertEquals(result2.size(), result3.size());
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java

                // Build child1 first
                ProjectBuildingResult result1 = projectBuilder.build(child1Pom.toFile(), sharedRequest);
                MavenProject child1Project = result1.getProject();
    
                // Capture repositories after building child1
    
                // Build child2 using the same shared request
                ProjectBuildingResult result2 = projectBuilder.build(child2Pom.toFile(), sharedRequest);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/netbios/NodeStatusRequestTest.java

            // Act
            int result1 = nodeStatusRequest.writeBodyWireFormat(dst, 0);
            int result2 = nodeStatusRequest.writeBodyWireFormat(dst, 50);
            int result3 = nodeStatusRequest.writeBodyWireFormat(dst, 100);
    
            // Assert
            assertEquals(result1, result2);
            assertEquals(result2, result3);
            assertTrue(result1 > 0);
        }
    
        @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java

                    if (resultSet.size() >= getMaxReadingNum()) {
                        break;
                    }
    
                    // Convert the input and collect results
                    final List<String> results = converter.convert(input, field, lang);
                    for (final String result : results) {
                        // Add to result set (automatically handles duplicates)
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:28:21 UTC 2025
    - 3.3K bytes
    - Viewed (1)
  10. src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java

            int result = response.writeDataWireFormat(dst, 0);
            assertEquals(0, result);
        }
    
        @Test
        void testReadSetupWireFormat() {
            byte[] buffer = new byte[100];
            int result = response.readSetupWireFormat(buffer, 0, 100);
            assertEquals(0, result);
        }
    
        @Test
        void testReadParametersWireFormat() {
            byte[] buffer = new byte[100];
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top