Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for parentEl (0.04 sec)

  1. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

            return new ParamMap<>(new HashMap<>(getDataMap(params)));
        }
    
        /**
         * Extracts the underlying data map from a parameter map.
         * If the provided map is a ParamMap instance, returns its parent map.
         * Otherwise, returns the map as-is.
         *
         * @param params the parameter map to extract data from
         * @return the underlying data map
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. pom.xml

    		<url>https://github.com/codelibs/fess</url>
    	  <tag>HEAD</tag>
      </scm>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-parent</artifactId>
    		<version>15.2.0</version>
    		<relativePath />
    	</parent>
    	<properties>
    		<!-- DEB & RPM build -->
    		<packaging.fess.home.dir>/usr/share/fess</packaging.fess.home.dir>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            assertEquals("", item.toLineString());
    
            item.setNewInput("new");
            assertEquals("new", item.toLineString());
        }
    
        public void test_getId() {
            // Test getId method from parent class
            StopwordsItem item1 = new StopwordsItem(0, "word1");
            assertEquals(0, item1.getId());
    
            StopwordsItem item2 = new StopwordsItem(999, "word2");
            assertEquals(999, item2.getId());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

                // Validate inputs
                if (thumbnailId == null || thumbnailId.isEmpty() || outputFile == null) {
                    return false;
                }
    
                // Check if parent directory is writable
                File parentDir = outputFile.getParentFile();
                if (parentDir != null && !parentDir.canWrite()) {
                    return false;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListIndexOfTester.java

    import com.google.common.collect.testing.features.CollectionFeature;
    import com.google.common.collect.testing.features.CollectionSize;
    import org.jspecify.annotations.Nullable;
    import org.junit.Ignore;
    
    /**
     * Common parent class for {@link ListIndexOfTester} and {@link ListLastIndexOfTester}.
     *
     * @author Chris Povirk
     */
    @GwtCompatible
    @Ignore("test runners must not instantiate and run this directly, only via suites we build")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. guava-gwt/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>999.0.0-HEAD-jre-SNAPSHOT</version>
      </parent>
      <artifactId>guava-gwt</artifactId>
      <name>Guava GWT compatible libs</name>
      <description>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  7. kotlin-js-store/yarn.lock

      dependencies:
        function-bind "^1.1.1"
        has "^1.0.3"
        has-symbols "^1.0.3"
    
    glob-parent@~5.1.2:
      version "5.1.2"
      resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
      integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
      dependencies:
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

        }
    
        // Test that close method exists (inherited)
        public void test_closeMethodExists() {
            // Test that close method is available (inherited from parent)
            try {
                // Just verify the method exists, don't actually call it
                crawlerEngineClient.getClass().getMethod("close");
                assertTrue(true);
            } catch (NoSuchMethodException 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)
  9. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            } catch (Exception e) {
                fail("Should have caught ThemeException, but caught: " + e.getClass());
            }
        }
    
        public void test_catchAsFessSystemException() {
            // Test catching as parent exception type
            String message = "Theme error";
    
            try {
                throw new ThemeException(message);
            } catch (FessSystemException e) {
                assertEquals(message, e.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.TestCase;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Abstract test case parent for anything implementing {@link ListenableFuture}. Tests the two get
     * methods and the addListener method.
     *
     * @author Sven Mawson
     * @since 10.0
     */
    @GwtIncompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top