Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for Commands (0.15 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    // for invoking the go command.
    //
    // The second result is the canonical version of the requested configuration.
    func Download(version string, envOverlay []string) (*telemetry.UploadConfig, string, error) {
    	if version == "" {
    		version = "latest"
    	}
    	modVer := ModulePath + "@" + version
    	var stdout, stderr bytes.Buffer
    	cmd := exec.Command("go", "mod", "download", "-json", modVer)
    	needNoConsole(cmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. releasenotes/notes/add-overwrite-flag.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 51312
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 16:00:06 UTC 2024
    - 255 bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    		o := ctrlz.DefaultOptions()
    		o.EnablePprof = true
    		return o
    	}()
    )
    
    var rootCmd = &cobra.Command{
    	Use:          "install-cni",
    	Short:        "Install and configure Istio CNI plugin on a node, detect and repair pod which is broken by race condition.",
    	SilenceUsage: true,
    	PreRunE: func(c *cobra.Command, args []string) error {
    		if err := istiolog.Configure(logOptions); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/nofollow_bsd.go

    //go:build dragonfly || freebsd
    
    package unix
    
    import "syscall"
    
    // References:
    // - https://man.freebsd.org/cgi/man.cgi?open(2)
    // - https://man.dragonflybsd.org/?command=open&section=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 384 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

        override fun onExternalProcessStarted(command: String, consumer: String?) {
            if (!atConfigurationTime() || isExecutingWork() || isInputTrackingDisabled()) {
                return
            }
            val problem = problemFactory.problem(consumer) {
                text("external process started ")
                reference(command)
            }
                .exception("Starting an external process '$command' during configuration time is unsupported.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. pkg/log/options.go

    	return s, level, nil
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    // Cobra is the command-line processor that Istio uses. This command attaches
    // the necessary set of flags to expose a CLI to let the user control all
    // logging options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	o.AttachFlags(
    		cmd.PersistentFlags().StringArrayVar,
    		cmd.PersistentFlags().StringVar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. internal/grid/debugmsg_string.go

    package grid
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[debugShutdown-0]
    	_ = x[debugKillInbound-1]
    	_ = x[debugKillOutbound-2]
    	_ = x[debugWaitForExit-3]
    	_ = x[debugSetConnPingDuration-4]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEnablementIntegrationTest.groovy

    
    class ConfigurationCacheEnablementIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        ConfigurationCacheFixture fixture = new ConfigurationCacheFixture(this)
    
        def "can enable with a command line #origin"() {
            when:
            run 'help', argument
    
            then:
            fixture.assertStateStored()
    
            when:
            run 'help', argument
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

            undeclaredInputBroadcast.envVariableRead(key, value, consumer)
        }
    
        override fun externalProcessStarted(command: String, consumer: String) {
            if (Workarounds.canStartExternalProcesses(consumer)) {
                return
            }
            externalProcessListener.onExternalProcessStarted(command, consumer)
        }
    
        override fun fileOpened(file: File, consumer: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work.txt

    # panic with unsorted main modules.
    cp go.work.backwards go.work
    go work use # update go version
    go run example.com/d
    
    # Test that command-line-arguments work inside and outside modules.
    # This exercises the code that determines which module command-line-arguments
    # belongs to.
    go list ./b/main.go
    env GOWORK=off
    go build -n -o foo foo.go
    env GOWORK=
    go build -n -o foo foo.go
    
    -- go.work.dup --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top