Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for jaro (1.6 sec)

  1. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            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());
            assertTrue(notJar.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)
  2. deps.xml

    		<delete>
    			<fileset dir="${webinf.dir}/plugin">
    				<include name="**/*.jar" />
    			</fileset>
    		</delete>
    	</target>
    
    	<target name="install.env.jar">
    		<get dest="${target.dir}">
    			<url url="${repo.url}/${jar.groupId}/${jar.artifactId}/${jar.version}/${jar.artifactId}-${file.version}.jar" />
    		</get>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${crawler.dir}/lib"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun May 18 04:53:52 UTC 2025
    - 2.5K 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/main/java/org/codelibs/core/jar/JarFileUtil.java

            }
        }
    
        /**
         * Creates and returns a <code>JarFile</code> to read the JAR file specified by the URL.
         *
         * @param jarUrl the URL of the JAR file (must not be {@literal null})
         * @return a <code>JarFile</code> to read the JAR file specified by the URL
         */
        public static JarFile toJarFile(final URL jarUrl) {
            assertArgumentNotNull("jarUrl", jarUrl);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

    import java.io.File;
    import java.io.FilterInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    
    import org.codelibs.core.jar.JarFileUtil;
    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
     * Class for traversing resources.
     *
     * @author taedium
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/core/jar/JarInputStreamUtil.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.jar;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.jar.JarEntry;
    import java.util.jar.JarInputStream;
    
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/net/URLUtil.java

            }
            return protocol;
        }
    
        /**
         * Returns the {@link File} object of the Jar file indicated by the URL.
         *
         * @param fileUrl
         *            The URL of the Jar file. Must not be {@literal null}.
         * @return The {@link File} of the Jar file.
         */
        public static File toFile(final URL fileUrl) {
            assertArgumentNotNull("fileUrl", fileUrl);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            // file
            assertUrlLink("file:/home/taro/test.txt", //
                    "file://home/taro/test.txt");
            assertUrlLink("file:/home/taro/あ.txt", //
                    "file://home/taro/あ.txt");
            assertUrlLink("file:/home/taro/%E3%81%82.txt", //
                    "file://home/taro/あ.txt");
    
            // smb->file
            assertUrlLink("smb:/home/taro/test.txt", //
                    "file://home/taro/test.txt");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
Back to top