Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for jaar (0.02 sec)

  1. src/main/resources/fess_label_nl.properties

    labels.facet_timestamp_1week=Afgelopen week
    labels.facet_timestamp_1month=Afgelopen maand
    labels.facet_timestamp_1year=Afgelopen jaar
    labels.facet_timestamp_3month=Afgelopen 3 maanden
    labels.facet_timestamp_6month=Afgelopen 6 maanden
    labels.facet_timestamp_2year=Afgelopen 2 jaar
    labels.facet_timestamp_3year=Afgelopen 3 jaar
    labels.facet_contentLength_title=Grootte
    labels.facet_contentLength_10k=  - 10KB
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  2. src/main/resources/fess_message_nl.properties

    constraints.NotEmpty.message = {item} mag niet leeg zijn.
    constraints.ParametersScriptAssert.message = De scriptuitdrukking "{script}" is niet waar.
    constraints.Range.message = {item} moet tussen {min} en {max} liggen.
    constraints.SafeHtml.message = {item} bevat gevaarlijke HTML-inhoud.
    constraints.ScriptAssert.message = De scriptuitdrukking "{script}" is niet waar.
    constraints.URL.message = {item} is geen geldige URL.
    constraints.Required.message = {item} is vereist.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. gradle/wrapper/gradle-wrapper.jar

    renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 1754035591 +0100
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 44.4K bytes
    - Viewed (1)
  4. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

     */
    package org.codelibs.fess.ds;
    
    import java.io.File;
    import java.io.FileOutputStream;
    import java.nio.file.Files;
    import java.util.List;
    import java.util.Map;
    import java.util.jar.JarEntry;
    import java.util.jar.JarOutputStream;
    
    import org.codelibs.fess.ds.callback.IndexUpdateCallback;
    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.helper.PluginHelper;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/TraversalUtil.java

     * <p>
     * Target directories on the file system or JAR files are provided as {@link URL}. The appropriate {@link Traverser} is returned depending on the protocol of the URL, and you can traverse classes and resources by calling its methods.
     * </p>
     * <p>
     * Supported protocols:
     * </p>
     * <ul>
     * <li>{@literal file}</li>
     * <li>{@literal jar}</li>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        assertEquals(
            new File("/home/build/x/y/z.jar").toURI(),
            ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "x/y/z.jar").toURI());
        assertEquals(
            "/home/build/x y.jar",
            ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "x y.jar").getFile());
      }
    
      public void testGetClassPathFromManifest_nullManifest() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 23K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                return version;
            }
    
            /**
             * Gets the filename of the artifact JAR file.
             *
             * @return the filename in the format "name-version.jar"
             */
            public String getFileName() {
                return name + "-" + version + ".jar";
            }
    
            /**
             * Gets the URL where the artifact can be downloaded.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            Artifact artifact =
                    pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "test-plugin-1.0.0.jar", "http://test.com/test.jar");
            assertEquals("test-plugin", artifact.getName());
            assertEquals("1.0.0", artifact.getVersion());
            assertEquals("http://test.com/test.jar", artifact.getUrl());
        }
    
        public void test_getArtifactFromFileName_complexName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            }
            return Paths.get(webinfBase, names);
        }
    
        /**
         * Gets JAR files from the WEB-INF/lib directory that start with the specified prefix.
         *
         * @param namePrefix the prefix that JAR file names should start with
         * @return an array of File objects representing matching JAR files, or empty array if none found
         */
        public static File[] getJarFiles(final String namePrefix) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            StringBuilder buf = new StringBuilder();
            File libDir = new File(tempDir, "lib");
            assertTrue(libDir.mkdir());
    
            // Create test jar files
            File jar1 = new File(libDir, "test1.jar");
            File jar2 = new File(libDir, "test2.JAR");
            File notJar = new File(libDir, "test.txt");
            assertTrue(jar1.createNewFile());
            assertTrue(jar2.createNewFile());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top