Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 270 for Commands (0.34 sec)

  1. hack/testdata/pod-with-metadata-and-probes.yaml

    spec:
      containers:
      - image: registry.k8s.io/nginx:1.7.9
        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
      initContainers:
      - image: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

                }
            }
        }
    
        private static void dispatch(Connection<Message> connection, Command command) {
            Throwable failure = null;
            try {
                connection.dispatch(command);
                Result result = (Result) connection.receive();
                if (result instanceof Failure) {
                    failure = ((Failure) result).getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/bug/bug.go

    // Package bug implements the “go bug” command.
    package bug
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"io"
    	urlpkg "net/url"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/envcmd"
    	"cmd/go/internal/web"
    	"cmd/go/internal/work"
    )
    
    var CmdBug = &base.Command{
    	Run:       runBug,
    	UsageLine: "go bug",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessBuilderInstrumentationInDynamicGroovyIntegrationTest.groovy

                // varInitializer | processCreator | expectedPwdSuffix | expectedEnvVar
                [fromStringArray(), "new ProcessBuilder(command).start()", "", ""],
                [fromStringList(), "new ProcessBuilder(command).start()", "", ""],
                [fromStringArray(), "new ProcessBuilder(command)?.start()", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/kubeconfig_test.go

    			command:        "user",
    			withClientCert: true,
    			clusterName:    "my-cluster",
    		},
    		{
    			name:            "user subCommand withToken",
    			withToken:       true,
    			command:         "user",
    			additionalFlags: []string{"--token=123456"},
    		},
    		{
    			name:            "user subCommand withToken",
    			withToken:       true,
    			command:         "user",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top