Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 849 for Commands (0.44 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    stdout '^example.com/retract/incompatible v1\.0\.0$'
    ! stdout 'v2\.0\.0'
    
    
    # The other is to explicitly upgrade the version required under Go 1.17
    # to match the version selected by Go 1.16. The commands suggested by
    # 'go mod tidy' should do exactly that.
    
    cp go.mod.orig go.mod
    
    go mod tidy -go=1.16
    go list -f $MODFMT -deps ./...
    stdout '^example.com/retract/incompatible v2\.0\.0\+incompatible$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    |<<#sec:basic,basic>>|A basic, empty, Gradle build
    |<<#sec:java_application,java-application>>|A command-line application implemented in Java
    |<<#sec:java_gradle_plugin,java-gradle-plugin>>|A Gradle plugin implemented in Java
    |<<#sec:java_library,java-library>>|A Java library
    |<<#sec:kotlin_application,kotlin-application>>|A command-line application implemented in Kotlin/JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pkg/envoy/agent.go

    		skipDrain:                   atomic.NewBool(false),
    	}
    }
    
    // Proxy defines command interface for a proxy
    type Proxy interface {
    	// Run command with an abort channel
    	Run(<-chan error) error
    
    	// Drains the envoy process.
    	Drain(skipExit bool) error
    
    	// Cleanup command for cleans up the proxy.
    	Cleanup()
    
    	// UpdateConfig writes a new config file
    	UpdateConfig(config []byte) error
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    			execErrs = append(execErrs, cfg.executeIptablesRestoreCommand(iptablesBuilder, &cfg.ipt6V, false))
    		}
    	} else {
    		// Execute iptables commands
    		execErrs = append(execErrs,
    			cfg.executeIptablesCommands(&cfg.iptV, iptablesBuilder.BuildV4()))
    		// Execute ip6tables commands
    		if cfg.cfg.EnableIPv6 {
    			execErrs = append(execErrs,
    				cfg.executeIptablesCommands(&cfg.ipt6V, iptablesBuilder.BuildV6()))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	// cause the command to return an error with this exit code set.
    	ReturnCode int
    }
    
    // ScriptCommands configures fe, the FakeExec, to have a pre-configured list of
    // commands to expect. Calling more commands using fe than those scripted will
    // result in a panic. By default, the fe does not enforce command argument checking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/pack/pack.go

    		if done {
    			break
    		}
    	}
    }
    
    // Finally, the actual commands. Each is an action.
    
    // can be modified for testing.
    var stdout io.Writer = os.Stdout
    
    // printContents implements the 'p' command.
    func (ar *Archive) printContents(e *archive.Entry) {
    	ar.extractContents1(e, stdout)
    }
    
    // tableOfContents implements the 't' command.
    func (ar *Archive) tableOfContents(e *archive.Entry) {
    	if ar.match(e) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    //
    //	go tool pprof cpu.prof
    //
    // There are many commands available from the pprof command line.
    // Commonly used commands include "top", which prints a summary of the
    // top program hot-spots, and "web", which opens an interactive graph
    // of hot-spots and their call graphs. Use "help" for information on
    // all pprof commands.
    //
    // For more information about pprof, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    			- The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled)
    
    		If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands:
    			- 'systemctl status kubelet'
    			- 'journalctl -xeu kubelet'
    		`)
    )
    
    // NewKubeletStartPhase creates a kubeadm workflow phase that start kubelet on a node.
    func NewKubeletStartPhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	}
    }
    
    // list all the supported debug commands in json.
    func (s *DiscoveryServer) list(w http.ResponseWriter, req *http.Request) {
    	var cmdNames []string
    	for k := range s.debugHandlers {
    		key := strings.Replace(k, "/debug/", "", -1)
    		// exclude current list command
    		if key == "list" {
    			continue
    		}
    		// can not support pprof commands
    		if strings.Contains(key, "pprof") {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    	}
    }
    
    // extractQueries pulls all prometheus queries out of a grafana dashboard
    // Rather than importing the entire grafana API just for this test, do some shoddy json parsing
    // Equivalent to the union of the jq commands:
    // '.panels[].targets[]?.expr' and '.panels[].panels[]?.targets[]?.expr'
    func extractQueries(dash string) ([]string, error) {
    	var queries []string
    	js := map[string]any{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top