Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for Jar (0.01 sec)

  1. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                logger.warn("Failed to delete {}", dir, e);
            }
        }
    
        /**
         * Gets the JAR file path for the given artifact.
         *
         * @param artifact the theme artifact
         * @return the path to the JAR file
         * @throws ThemeException if the JAR file does not exist
         */
        protected Path getJarFile(final Artifact artifact) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. gradlew.bat

    :execute
    @rem Setup the command line
    
    set CLASSPATH=
    
    
    @rem Execute Gradle
    "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
    
    :end
    @rem End local scope for the variables with windows NT shell
    if %ERRORLEVEL% equ 0 goto mainEnd
    
    :fail
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 26 02:17:22 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo.yaml

    - name: mysql-connector-java
      version: 8.0.17
      url: https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.17/mysql-connector-java-8.0.17.jar
    - name: mysql-connector-java
      version: 6.0.6
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 25 05:53:21 UTC 2019
    - 298 bytes
    - Viewed (0)
  4. guava-gwt/src/com/google/common/DummyJavadocClass.java

     * limitations under the License.
     */
    
    package com.google.common;
    
    /**
     * A dummy class so that the Maven Javadoc plugin will produce a jar. If it doesn't produce a jar,
     * then the Sonatype repository manager issues an error.
     *
     * @author Chris Povirk
     */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jan 07 19:38:21 UTC 2020
    - 848 bytes
    - Viewed (0)
  5. 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)
  6. src/test/java/org/codelibs/core/net/URLUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        public void testToCanonicalProtocol() throws Exception {
            assertEquals("jar", URLUtil.toCanonicalProtocol("wsjar"));
            assertEquals("jar", URLUtil.toCanonicalProtocol("jar"));
            assertEquals("zip", URLUtil.toCanonicalProtocol("zip"));
            assertEquals("file", URLUtil.toCanonicalProtocol("file"));
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.tomcat.webresources;
    
    import java.util.jar.Attributes;
    import java.util.jar.JarFile;
    import java.util.jar.Manifest;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    import org.apache.catalina.Context;
    import org.apache.catalina.LifecycleException;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

            } catch (Exception e) {
                assertTrue(true); // Expected exception
            }
        }
    
        public void test_getJarFile_exists() throws IOException {
            // Create a mock jar file
            Path jarPath = tempDir.resolve("test-theme.jar");
            Files.createFile(jarPath);
    
            ThemeHelper mockThemeHelper = new ThemeHelper() {
                @Override
                protected Path getJarFile(Artifact artifact) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt

      )
    
      /**
       * Load cookies from the jar for an HTTP request to [url]. This method returns a possibly
       * empty list of cookies for the network request.
       *
       * Simple implementations will return the accepted cookies that have not yet expired and that
       * [match][Cookie.matches] [url].
       */
      fun loadForRequest(url: HttpUrl): List<Cookie>
    
      companion object {
        /** A cookie jar that never accepts any cookies. */
        @JvmField
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/ExecJob.java

            }
        }
    
        /**
         * Appends JAR files from the specified directory to the classpath buffer.
         *
         * @param cpSeparator the classpath separator to use
         * @param buf the StringBuilder to append to
         * @param libDir the directory containing JAR files
         * @param basePath the base path to prepend to JAR file names
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top