Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for Complex (0.04 sec)

  1. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

            assertNotNull(keywords);
            assertEquals(0, keywords.size()); // No keywords because no fields match
        }
    
        @Test
        public void testGetKeywordsWithComplexQuery() {
            // Test with complex query structure
            String query = "(test AND query) OR (another AND search)";
            String[] fields = { "content" };
            List<String> keywords = SuggestUtil.getKeywords(query, fields);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

            }
    
            @Test
            @DisplayName("Should decode array correctly")
            void testDecode() throws NdrException {
                // Given: Mocked buffer data with pre-created entries to avoid complex entry decode chain
                samr.SamrSamArray array = new samr.SamrSamArray();
                array.entries = new samr.SamrSamEntry[1]; // Pre-populate to avoid decoding
                array.entries[0] = new samr.SamrSamEntry();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

            assertTrue(urlFilter.match("ftp://files.com/document.pdf"));
            assertTrue(urlFilter.match("file:///home/user/file.txt"));
        }
    
        /**
         * Test match with complex URL patterns
         */
        public void test_match_complexUrls() {
            String sessionId = "test-session-010";
            urlFilter.init(sessionId);
    
            urlFilter.addInclude("https?://[^/]+\\.example\\.com/.*");
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            // But queries would be added again to FacetInfo (distinct handles duplicates)
            assertTrue(testFacetInfo.getAddedQueries().size() >= firstQueriesCount);
        }
    
        // Test complex scenarios
        public void test_init_withMixedQueries() {
            testFileTypeHelper.setTypes(new String[] { "pdf", "doc", "xls" });
    
            facetQueryView.addQuery("label1", "filetype:html");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       com.google.common.base.Joiner#skipNulls}.
       * </ul>
       *
       * <p>Note that constructors taking a builder object cannot be tested effectively because
       * semantics of builder can be arbitrarily complex. Still, a factory class can be created in the
       * test to facilitate equality testing. For example:
       *
       * <pre>
       * public class FooTest {
       *
       *   private static final class FooFactoryForTest {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/PythonJobTest.java

                    + "//malicious.py";
            assertEquals(expectedPath, pythonJob.getPyFilePath());
        }
    
        // Test getPyFilePath with complex directory traversal
        public void test_getPyFilePath_withComplexDirectoryTraversal() {
            pythonJob.filename("../test/../../../etc/passwd");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            PrunedTag anotherTagWithNulls = new PrunedTag("div");
            assertTrue(tagWithNulls.equals(anotherTagWithNulls));
        }
    
        public void test_parse_complexCombinations() {
            // Test complex parsing combinations
            PrunedTag[] tags = PrunedTag.parse("div[data-toggle=modal].modal#main-modal");
            assertEquals(1, tags.length);
            PrunedTag tag = tags[0];
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

                assertEquals(1, SMBUtil.readInt2(buffer, 2));
            }
    
            @Test
            @DisplayName("Should handle mixed lock operations")
            void testMixedLockOperations() {
                // Simulate a complex scenario with mixed lock operations
                Smb2Lock[] locks = new Smb2Lock[] { new Smb2Lock(0L, 512L, Smb2Lock.SMB2_LOCKFLAG_EXCLUSIVE_LOCK),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java

            // When no DACL is present, decode returns 0 based on the implementation
            assertEquals(0, size);
            assertNull(securityDescriptor.getAces());
        }
    
        @Test
        @DisplayName("Test decode with complex SID structure")
        void testDecodeWithComplexSid() throws SMBProtocolDecodingException {
            // Prepare buffer with multi-authority SID
            testBuffer[0] = 0x01; // revision
            testBuffer[1] = 0x00; // padding
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/concepts.md

    You can use simple tools like `htop` to see the CPU and RAM used in your server or the amount used by each process. Or you can use more complex monitoring tools, which may be distributed across servers, etc.
    
    ## Recap { #recap }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top