Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,811 for boot (0.18 sec)

  1. src/main/java/org/codelibs/fess/FessBoot.java

    import org.codelibs.fess.tomcat.webresources.FessWebResourceRoot;
    import org.dbflute.tomcat.TomcatBoot;
    import org.dbflute.tomcat.logging.BootLogger;
    import org.dbflute.tomcat.props.BootPropsTranslator;
    
    public class FessBoot extends TomcatBoot {
    
        private static final String LOGGING_PROPERTIES = "logging.properties";
    
        private static final String FESS_CONTEXT_PATH = "fess.context.path";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. buildSrc/src/main/kotlin/AlpnVersions.kt

        in 191..242 -> "8.1.13.v20181017"
        else -> null
      }
    }
    
    /**
     * Returns the alpn-boot version specific to this OpenJDK 8 JVM, or null if this is not a Java 8 VM.
     * https://github.com/xjdr/xio/blob/master/alpn-boot.gradle
     */
    fun alpnBootVersion(): String? {
      val version = System.getProperty("alpn.boot.version")
    
      if (version != null) {
        return version
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Jan 07 16:05:34 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/component.xml

          <outputDirectory>lib</outputDirectory>
          <includes>
            <include>**</include>
          </includes>
        </fileSet>
        <fileSet>
          <directory>target/licenses/boot</directory>
          <outputDirectory>boot</outputDirectory>
          <includes>
            <include>**</include>
          </includes>
        </fileSet>
        <fileSet>
          <directory>src/assembly/maven/bin</directory>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Jun 04 19:03:41 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

    import java.lang.reflect.InvocationTargetException
    import java.lang.reflect.Method
    import java.lang.reflect.Proxy
    import javax.net.ssl.SSLSocket
    import okhttp3.Protocol
    
    /** OpenJDK 8 with `org.mortbay.jetty.alpn:alpn-boot` in the boot class path. */
    class Jdk8WithJettyBootPlatform(
      private val putMethod: Method,
      private val getMethod: Method,
      private val removeMethod: Method,
      private val clientProviderClass: Class<*>,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6K bytes
    - Viewed (0)
  5. api/go1.15.txt

    pkg crypto/ecdsa, func VerifyASN1(*PublicKey, []uint8, []uint8) bool
    pkg crypto/ecdsa, method (*PrivateKey) Equal(crypto.PrivateKey) bool
    pkg crypto/ecdsa, method (*PublicKey) Equal(crypto.PublicKey) bool
    pkg crypto/ed25519, method (PrivateKey) Equal(crypto.PrivateKey) bool
    pkg crypto/ed25519, method (PublicKey) Equal(crypto.PublicKey) bool
    pkg crypto/elliptic, func MarshalCompressed(Curve, *big.Int, *big.Int) []uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/mvnlauncher

    LAUNCHER_JAR=`echo "$MAVEN_HOME"/boot/plexus-classworlds-*.jar`
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Oct 16 17:44:39 GMT 2021
    - 130 bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*      *##set ( $project.url = 'https://github.com/google/guice/' )
    #*    *##end
    #*    *###
    #*    *### Classworlds is in boot directory, not in lib
    #*    *##if ( $project.artifact.artifactId == "plexus-classworlds" )
    #*      *##set ( $directory = 'boot' )
    #*    *##end
    #*    *###
    #*    *### copy license file to lib/$artifactId.license
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 13 20:57:31 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  8. src/main/assemblies/files/fess.bat

    CALL "%~dp0fess.in.bat"
    IF ERRORLEVEL 1 (
    	IF NOT DEFINED nopauseonerror (
    		PAUSE
    	)
    	EXIT /B %ERRORLEVEL%
    )
    
    "%JAVA_HOME%\bin\java" %FESS_JAVA_OPTS% !newparams! -cp "%FESS_CLASSPATH%" "org.codelibs.fess.FessBoot"
    
    Batch File
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun May 24 22:24:52 GMT 2020
    - 796 bytes
    - Viewed (0)
  9. apache-maven/src/assembly/shared/mvnlauncher.cmd

    for %%i in ("%MAVEN_HOME%"\boot\plexus-classworlds-*) do set LAUNCHER_JAR="%%i"
    Batch File
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Oct 16 17:44:39 GMT 2021
    - 150 bytes
    - Viewed (0)
  10. src/main/assemblies/files/fess

                    org.codelibs.fess.FessBoot $FESS_OPTS > /dev/null
        else
            exec "$JAVA" $FESS_JAVA_OPTS $fess_parms -Dfess.es.dir="$SEARCH_ENGINE_HOME" -cp "$FESS_CLASSPATH" $props \
                    org.codelibs.fess.FessBoot $FESS_OPTS <&- > /dev/null &
            if [ x"$pidfile" != "x" ] ; then
                echo $! > $pidfile
            fi
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
Back to top