Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,782 for Fontaine (0.04 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetReadsTester.java

        assertFalse(
            "multiset.entrySet() contains [missing, 0]",
            getMultiset().entrySet().contains(Multisets.immutableEntry(e3(), 0)));
      }
    
      public void testEntrySet_contains_nonentry() {
        assertFalse(
            "multiset.entrySet() contains a non-entry", getMultiset().entrySet().contains(e0()));
      }
    
      public void testEntrySet_twice() {
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java

                }
                assertImageSize(outputFile, 100, 100);
            } catch (IllegalStateException e) {
                // Expected when container is not initialized
                if (e.getMessage().contains("Not initialized")) {
                    // Skip test when container is not available
                    return;
                }
                throw e;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. container-tests/README.md

    OkHttp Container Tests
    ======================
    
    This module contains tests against other services
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jan 20 09:58:21 UTC 2024
    - 113 bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/advance.jsp

    						<option value="html" <c:if test="${as.filetype.contains('html')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_html"
    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    						<option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            thread.join(1000);
    
            String output = thread.getOutput();
            assertTrue("Should contain recent lines", output.contains("line5"));
    
            assertTrue("Should have line3", thread.contains("line3"));
            assertTrue("Should have line4", thread.contains("line4"));
            assertTrue("Should have line5", thread.contains("line5"));
        }
    
        public void test_emptyInputStream() throws IOException, InterruptedException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java

                NtlmChallenge nc = new NtlmChallenge(challenge, dc);
                String result = nc.toString();
    
                // Should contain hex representation of 0-15
                assertTrue(result.contains("0x"));
                assertTrue(result.contains("dc=LARGEDC"));
                // The hex string should be 32 chars long (16 bytes * 2)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/TreeConnectResponseTest.java

                assertTrue(str.contains("SmbComTreeConnectAndXResponse"), "Should contain class name");
                assertTrue(str.contains("supportSearchBits=true"), "Should contain search bits flag");
                assertTrue(str.contains("shareIsInDfs=true"), "Should contain DFS flag");
                assertTrue(str.contains("service=IPC"), "Should contain service");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            // Note: isTarget requires FessConfig which needs container
            // We can only verify the method handles missing container gracefully
            try {
                generator.isTarget(docMap);
            } catch (IllegalStateException e) {
                // Expected when container is not initialized
                assertTrue(e.getMessage().contains("Not initialized"));
            }
        }
    
        public void test_addCondition() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                assertFalse(queryFieldConfig.notAnalyzedFieldSet.contains("field1"));
                assertFalse(queryFieldConfig.notAnalyzedFieldSet.contains("field2"));
                assertFalse(queryFieldConfig.notAnalyzedFieldSet.contains("field3"));
                assertTrue(queryFieldConfig.notAnalyzedFieldSet.contains("field4"));
                assertTrue(queryFieldConfig.notAnalyzedFieldSet.contains("field5"));
            } finally {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/netbios/NameQueryResponseTest.java

            assertTrue(actual.contains(expectedContains), "toString should contain the 'addrEntry' part");
            assertTrue(actual.contains("192.168.1.1"), "toString should contain the first NbtAddress string representation");
            assertTrue(actual.contains("10.0.0.5"), "toString should contain the second NbtAddress string representation");
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top