Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for installing (0.34 sec)

  1. .github/workflows/scorecard.yml

          security-events: write
          # Needed to publish results and get a badge (see publish_results below).
          id-token: write
          # Uncomment the permissions below if installing in a private repository.
          # contents: read
          # actions: read
    
        steps:
          - name: "Checkout code"
            uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
            with:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. maven-tests/mvnw

      trap clean HUP INT TERM EXIT
    else
      die "cannot create temp dir"
    fi
    
    mkdir -p -- "${MAVEN_HOME%/*}"
    
    # Download and Install Apache Maven
    verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
    verbose "Downloading from: $distributionUrl"
    verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
    
    # select .zip or .tar.gz
    if ! command -v unzip >/dev/null; then
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/main/assemblies/files/service.bat

    "%EXECUTABLE%" //DS//%SERVICE_ID% %LOG_OPTS%
    if not errorlevel 1 goto removed
    echo Failed removing '%SERVICE_ID%' service
    goto:eof
    :removed
    echo The service '%SERVICE_ID%' has been removed
    goto:eof
    
    :doInstall
    echo Installing service      :  "%SERVICE_ID%"
    echo Using JAVA_HOME (%ARCH%):  "%JAVA_HOME%"
    
    rem Check JVM server dll first
    if exist "%JAVA_HOME%"\jre\bin\server\jvm.dll (
    	set JVM_DLL=\jre\bin\server\jvm.dll
    	goto foundJVM
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java

    import org.lastaflute.web.validation.Required;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Request body for plugin installation API.
     * This class represents the data structure for installing a plugin
     * through the admin REST API.
     */
    public class InstallBody {
        /** Name of the plugin to install (required, max 100 characters) */
        @Required
        @Size(max = 100)
        public String name;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java

    import org.lastaflute.web.validation.Required;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form for plugin installation through the admin web interface.
     * This class represents the form data structure for installing a plugin
     * via file upload through the admin UI.
     */
    public class InstallForm {
    
        /** Plugin identifier (required, max 400 characters) */
        @Required
        @Size(max = 400)
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.validation.exception.ValidationErrorException;
    
    /**
     * Admin action for Plugin management.
     * This class provides functionality for installing, deleting, and managing plugins in the Fess system.
     *
     */
    public class AdminPluginAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminPluginAction() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  7. maven-tests/mvnw.cmd

      }
    }
    
    New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null
    
    # Download and Install Apache Maven
    Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
    Write-Verbose "Downloading from: $distributionUrl"
    Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
    
    $webclient = New-Object System.Net.WebClient
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_message.properties

    success.reindex_started=Started re-indexing.
    success.bulk_process_started=Started a bulk process.
    success.print_thread_dump=Printed a thread dump to a log file.
    success.install_plugin=Installing plugin {0}.
    success.delete_plugin=Deleting plugin {0}.
    success.upload_file_to_storage=Uploaded {0}.
    success.sso_logout=You have been logged out.
    success.update_storage_tags=Updated tags of {0}.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_en.properties

    success.reindex_started=Started re-indexing.
    success.bulk_process_started=Started a bulk process.
    success.print_thread_dump=Printed a thread dump to a log file.
    success.install_plugin=Installing plugin {0}.
    success.delete_plugin=Deleting plugin {0}.
    success.upload_file_to_storage=Uploaded {0}.
    success.sso_logout=You have been logged out.
    success.update_storage_tags=Updated tags of {0}.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Printed a thread dump to a log file. */
        public static final String SUCCESS_print_thread_dump = "{success.print_thread_dump}";
    
        /** The key of the message: Installing plugin {0}. */
        public static final String SUCCESS_install_plugin = "{success.install_plugin}";
    
        /** The key of the message: Deleting plugin {0}. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
Back to top