Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 265 for command1 (0.13 sec)

  1. src/cmd/test2json/main.go

    // Test2json converts go test output to a machine-readable JSON stream.
    //
    // Usage:
    //
    //	go tool test2json [-p pkg] [-t] [./pkg.test -test.v=test2json]
    //
    // Test2json runs the given test command and converts its output to JSON;
    // with no command specified, test2json expects test output on standard input.
    // It writes a corresponding stream of JSON events to standard output.
    // There is no unnecessary input or output buffering, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. pkg/probe/exec/exec.go

    type Prober interface {
    	Probe(e exec.Cmd) (probe.Result, string, error)
    }
    
    type execProber struct{}
    
    // Probe executes a command to check the liveness/readiness of container
    // from executing a command. Returns the Result status, command output, and
    // errors if any.
    func (pr execProber) Probe(e exec.Cmd) (probe.Result, string, error) {
    	var dataBuffer bytes.Buffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/server.go

    )
    
    func NewServerCommand(ctx context.Context, out, errOut io.Writer) *cobra.Command {
    	o := options.NewCustomResourceDefinitionsServerOptions(out, errOut)
    
    	cmd := &cobra.Command{
    		Short: "Launch an API extensions API server",
    		Long:  "Launch an API extensions API server",
    		RunE: func(c *cobra.Command, args []string) error {
    			if err := o.Complete(); err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/feature/feature_gate.go

    limitations under the License.
    */
    
    package feature
    
    import (
    	"k8s.io/component-base/featuregate"
    )
    
    var (
    	// DefaultMutableFeatureGate is a mutable version of DefaultFeatureGate.
    	// Only top-level commands/options setup and the k8s.io/component-base/featuregate/testing package should make use of this.
    	// Tests that need to modify feature gates for the duration of their test should use:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/swig/swig_test.go

    	t.Run("lto", func(t *testing.T) { run(t, "testdata/callback", true, "Callback") })
    }
    
    func run(t *testing.T, dir string, lto bool, args ...string) {
    	runArgs := append([]string{"run", "."}, args...)
    	cmd := exec.Command("go", runArgs...)
    	cmd.Dir = dir
    	if lto {
    		// On the builders we're using the default /usr/bin/ld, but
    		// that has problems when asking for LTO in particular. Force
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/init_mlir.cc

    static llvm::cl::extrahelp FlagSplittingHelp(R"(
    The command line parsing is split between the two flag parsing libraries used by
    TensorFlow and LLVM:
      * Flags before the first '--' are parsed by tensorflow::InitMain while those
        post are parsed by LLVM's command line parser.
      * If there is no separator, then no flags are parsed by InitMain and only
        LLVM command line parser used.e
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. cluster/gce/manifests/etcd.manifest

          {
            "name": "ETCDCTL_API",
            "value": "3"
          }
            ],
        "livenessProbe": {
          "exec": {
            "command": [
              "/bin/sh",
              "-c",
              "set -x; exec /usr/local/bin/etcdctl --endpoints=127.0.0.1:{{ port }} {{ etcdctl_certs }} --command-timeout=15s endpoint health"
            ]
          },
          "initialDelaySeconds": {{ liveness_probe_initial_delay }},
          "timeoutSeconds": 15,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/crypto/tls/common_string.go

    package tls
    
    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[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    	_ = x[PSSWithSHA256-2052]
    	_ = x[PSSWithSHA384-2053]
    	_ = x[PSSWithSHA512-2054]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcTaskExecutionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import spock.lang.Issue
    
    class BuildSrcTaskExecutionIntegrationTest extends AbstractIntegrationSpec {
        def "can execute a task from buildSrc from the command line"() {
            file("buildSrc/build.gradle") << """
                task something {
                    doLast { }
                }
            """
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_pgo_auto.txt

    ! stderr 'build\\t-pgo='
    
    # other build-related commands
    go install -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go run -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go test -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go.*a1_test.go'
    stderr 'compile.*-pgoprofile=.*external_test.go'
    
    # go list commands should succeed as usual
    go list -pgo=auto ./a/a1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top