Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JarEntry (0.1 sec)

  1. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        private void createTestJarWithXml(File jarFile, String xmlContent) throws Exception {
            try (JarOutputStream jos = new JarOutputStream(new FileOutputStream(jarFile))) {
                JarEntry entry = new JarEntry("fess_ds++.xml");
                jos.putNextEntry(entry);
                jos.write(xmlContent.getBytes());
                jos.closeEntry();
            }
        }
    
        // Test DataStore implementation for testing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        Entry<String, Collection<Integer>> barEntry = entries.next();
        assertEquals("bar", barEntry.getKey());
        assertThat(barEntry.getValue()).containsExactly(1, 3).inOrder();
        assertThrows(
            UnsupportedOperationException.class, () -> barEntry.setValue(Arrays.<Integer>asList()));
        entries.remove(); // clear
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top