- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 106 for jaro (0.14 sec)
-
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) -
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) -
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) -
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) -
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) -
guava/module.json
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 16:59:18 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/jar/JarFileUtilTest.java
assertEquals(root + "Program Files" + File.separator + "foo.jar", JarFileUtil.toJarFilePath(url)); } /** * @throws Exception */ public void testRelativePath() throws Exception { final File f = new File("/Program Files/foo.jar"); URL url = new URL("jar:" + f.toURI().toURL() + "!/foo/bar/"); url = new URL(url, "..");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.5K bytes - Viewed (0) -
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) -
buildSrc/src/main/kotlin/Osgi.kt
import org.gradle.api.tasks.bundling.Jar import org.gradle.kotlin.dsl.dependencies import org.gradle.kotlin.dsl.findByType import org.gradle.kotlin.dsl.get import org.gradle.kotlin.dsl.getByName import org.gradle.kotlin.dsl.named fun Project.applyOsgi(vararg bndProperties: String) { plugins.withId("org.jetbrains.kotlin.jvm") { applyOsgi("jar", "osgiApi", bndProperties) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 5.1K bytes - Viewed (0) -
plugin.xml
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.5K bytes - Viewed (0)