Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for runInstall (0.24 sec)

  1. cni/test/install_cni.go

    			t.Errorf("installer failed: %v", err)
    		}
    	}
    
    	if cleanErr := installer.Cleanup(); cleanErr != nil {
    		t.Errorf("Error during test CNI installer cleanup, error was: %s", cleanErr)
    	}
    }
    
    func runInstall(ctx context.Context, tempCNIConfDir, tempCNIBinDir,
    	tempK8sSvcAcctDir, cniConfFileName, testBinDir string, chainedCNIPlugin bool, t *testing.T,
    ) {
    	ztunnelAddr := "/tmp/ztfoo"
    	cniEventAddr := "/tmp/cnieventfoo"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  2. 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)
  3. manifests/charts/ztunnel/README.md

    ## 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:
    
    ```console
    helm show values istio/ztunnel
    ```
    
    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)
  4. native-image-tests/src/main/kotlin/okhttp3/DotListener.kt

        originalSystemErr = System.err
    
        System.setOut(object : PrintStream(OutputStream.nullOutputStream()) {})
        System.setErr(object : PrintStream(OutputStream.nullOutputStream()) {})
      }
    
      fun uninstall() {
        originalSystemOut.let {
          System.setOut(it)
        }
        originalSystemErr.let {
          System.setErr(it)
        }
      }
    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)
  5. manifests/charts/istio-control/istio-discovery/README.md

    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
    ```
    
    ## Configuration
    
    To view support configuration options and documentation, run:
    
    ```console
    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)
  6. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

      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)
  7. 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);
            closeQuietly(viewPath);
    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)
  8. 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)
  9. manifests/charts/gateway/README.md

    ## 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
    
    To view support configuration options and documentation, run:
    
    ```console
    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)
  10. helm/minio/README.md

    ## Uninstalling the Chart
    
    Assuming your release is named as `my-release`, delete it using the command:
    
    ```bash
    helm delete my-release
    ```
    
    or
    
    ```bash
    helm uninstall my-release
    ```
    
    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)
Back to top