Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 610 for uninstall (0.27 sec)

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

            switch (artifact.getType()) {
            case THEME:
                ComponentUtil.getThemeHelper().uninstall(artifact);
                uninstall(fileName, jarPath);
                break;
            default:
                uninstall(fileName, jarPath);
                break;
            }
    
        }
    
        protected void uninstall(final String fileName, final Path jarPath) {
            try {
                Files.delete(jarPath);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/README.md

    helm repo update
    ```
    
    _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._
    
    ## Installing the Chart
    
    To install the chart:
    
    ```console
    helm install ztunnel istio/ztunnel
    ```
    
    ## Uninstalling the Chart
    
    To uninstall/delete the chart:
    
    ```console
    helm delete ztunnel
    ```
    
    ## Configuration
    
    To view support configuration options and documentation, run:
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  3. native-image-tests/src/main/kotlin/okhttp3/DotListener.kt

        originalSystemErr?.println()
      }
    
      fun install() {
        originalSystemOut = System.out
        originalSystemErr = System.err
    
        System.setOut(object : PrintStream(OutputStream.nullOutputStream()) {})
        System.setErr(object : PrintStream(OutputStream.nullOutputStream()) {})
      }
    
      fun uninstall() {
        originalSystemOut.let {
          System.setOut(it)
        }
        originalSystemErr.let {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/README.md

    Before installing, ensure CRDs are installed in the cluster (from the `istio/base` chart).
    
    To install the chart with the release name `istiod`:
    
    ```console
    kubectl create namespace istio-system
    helm install istiod istio/istiod --namespace istio-system
    ```
    
    ## Uninstalling the Chart
    
    To uninstall/delete the `istiod` deployment:
    
    ```console
    helm delete istiod --namespace istio-system
    ```
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 2K bytes
    - Viewed (0)
  5. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

          .build()
      val launcher: Launcher = LauncherFactory.create(config)
    
      val request: LauncherDiscoveryRequest = buildRequest(selectors)
    
      DotListener.install()
    
      try {
        launcher.execute(request)
      } finally {
        DotListener.uninstall()
      }
    
      val summary = summaryListener.summary
      summary.printTo(PrintWriter(System.out))
    
      exitProcess(if (summary.testsFailedCount != 0L) -1 else 0)
    }
    
    /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                        }
                    }
                }
            } catch (final IOException e) {
                throw new ThemeException("Failed to install " + artifact, e);
            }
        }
    
        public void uninstall(final Artifact artifact) {
            final String themeName = getThemeName(artifact);
    
            final Path viewPath = ResourceUtil.getViewTemplatePath(themeName);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  7. maven-core/plugin-manager.txt

    We might want to separate between installation and activation, it might be nice to allow a user to activate/deactivate a plugin instead of having to uninstall and reinstall a plugin in particular cases. This would prevent having to reconfigure the plugin again. For example it might be nice to turn off LDAP authentication without having to uninstall the plugin.
    
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  8. manifests/charts/gateway/README.md

    ```
    
    _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._
    
    ## Installing the Chart
    
    To install the chart with the release name `istio-ingressgateway`:
    
    ```console
    helm install istio-ingressgateway istio/gateway
    ```
    
    ## Uninstalling the Chart
    
    To uninstall/delete the `istio-ingressgateway` deployment:
    
    ```console
    helm delete istio-ingressgateway
    ```
    
    ## Configuration
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 19:38:07 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  9. helm/minio/README.md

    ```
    trustedCertsSecret: "minio-trusted-certs"
    
    or
    
    --set trustedCertsSecret=minio-trusted-certs
    ```
    
    ### Create buckets after install
    
    Install the chart, specifying the buckets you want to create after install:
    
    ```bash
    helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio
    ```
    
    Description of the configuration parameters used above -
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Jan 24 07:27:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  10. README.md

    ### Homebrew (recommended)
    
    Run the following command to install the latest stable MinIO package using [Homebrew](https://brew.sh/). Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data.
    
    ```sh
    brew install minio/stable/minio
    minio server /data
    ```
    
    > NOTE: If you previously installed minio using `brew install minio` then it is recommended that you reinstall minio from `minio/stable/minio` official repo instead.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
Back to top