Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 849 for Commands (0.28 sec)

  1. src/cmd/go/internal/modget/get.go

    is a pipe-separated list of allowed version control commands, or "all"
    to allow use of any known command, or "off" to disallow all commands.
    Note that if a module matches a pattern with vcslist "off", it may still be
    downloaded if the origin server uses the "mod" scheme, which instructs the
    go command to download the module using the GOPROXY protocol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "runs actions when command is run"() {
            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "command")
    
            then:
            1 * onStartCommand.run()
            1 * command.run()
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "runs actions when more commands are run"() {
            Runnable command = Mock()
            Runnable command2 = Mock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
              # To support image builders which cannot do RUN, do the run commands at startup.
              # This exploits the fact the images remove the installer once its installed.
              # This is a horrible idea for production images, but these are just for tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/output/output.go

    	}
    
    	return nil, genericclioptions.NoCompatiblePrinterError{OutputFormat: pf.OutputFormat, AllowedFormats: pf.AllowedFormats()}
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    // flags related to Kubeadm printing to it
    func (pf *PrintFlags) AddFlags(cmd *cobra.Command) {
    	pf.JSONYamlPrintFlags.AddFlags(cmd)
    	pf.KubeTemplatePrintFlags.AddFlags(cmd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cfg/cfg.go

    // in build.ToolDir.
    func ToolExeSuffix() string {
    	if installedGOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }
    
    // These are general "build flags" used by build and other commands.
    var (
    	BuildA             bool     // -a flag
    	BuildBuildmode     string   // -buildmode flag
    	BuildBuildvcs      = "auto" // -buildvcs flag: "true", "false", or "auto"
    	BuildContext       = defaultContext()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    "// want ..." comments in the input code.
    
    # Standalone commands
    
    Analyzers are provided in the form of packages that a driver program is
    expected to import. The vet command imports a set of several analyzers,
    but users may wish to define their own analysis commands that perform
    additional checks. To simplify the task of creating an analysis command,
    either for a single analyzer or for a whole suite, we provide the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pkg/envoy/proxy.go

    )
    
    func (e *envoy) Run(abort <-chan error) error {
    	// spin up a new Envoy process
    	args := e.args(e.ConfigPath, istioBootstrapOverrideVar.Get())
    	log.Infof("Envoy command: %v", args)
    
    	/* #nosec */
    	cmd := exec.Command(e.BinaryPath, args...)
    	cmd.Env = os.Environ()
    	if common_features.CompliancePolicy == common_features.FIPS_140_2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		"httpbin-794b576b6c-qx6pf":    []byte("{}"),
    	}
    	cases := []execTestCase{
    		{
    			args:           []string{},
    			expectedString: "A group of commands used to retrieve information about",
    		},
    		{ // clusters invalid
    			args:           strings.Split("clusters invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    This task, if added to `build.gradle(.kts)` file in the `app` subproject directory, would be executed using the command `./gradlew :app:copyTask`.
    
    Popular built-in tasks include:
    
    - **Copy** - `Copy` is useful to copy files around.
    - **Delete** -  `Delete` is useful to delete files and directories.
    - **Exec** - `Exec` is useful to execute arbitrary O/S commands.
    - **Zip** - `Zip` is useful to bundle files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. docs/ftp/README.md

    > TLS certificates via a different domain for your FTP servers you may choose the above command line options.
    
    
    ### Custom Algorithms (SFTP)
    
    Custom algorithms can be specified via command line parameters.
    Algorithms are comma separated. 
    Note that valid values does not in all cases represent default values.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top