Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 222 for Commands (0.6 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.Deployment.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.DaemonSet.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.Deployment.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

                    }
                  }
                ],
                "initContainers": [
                  {
                    "name": "nameValue",
                    "image": "imageValue",
                    "command": [
                      "commandValue"
                    ],
                    "args": [
                      "argsValue"
                    ],
                    "workingDir": "workingDirValue",
                    "ports": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    		return ""
    	}
    
    	return injectionStatus.Revision
    }
    
    func Cmd(ctx cli.Context) *cobra.Command {
    	describeCmd := &cobra.Command{
    		Use:     "describe",
    		Aliases: []string{"des"},
    		Short:   "Describe resource and related Istio configuration",
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 0 {
    				return fmt.Errorf("unknown resource type %q", args[0])
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    }
    
    const (
    	// Kubelet component name
    	componentKubelet = "kubelet"
    )
    
    // NewKubeletCommand creates a *cobra.Command object with default parameters
    func NewKubeletCommand() *cobra.Command {
    	cleanFlagSet := pflag.NewFlagSet(componentKubelet, pflag.ContinueOnError)
    	cleanFlagSet.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	kubeletFlags := options.NewKubeletFlags()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		ctxt.Logf("archive: %s\n", strings.Join(argv, " "))
    	}
    
    	// If supported, use syscall.Exec() to invoke the archive command,
    	// which should be the final remaining step needed for the link.
    	// This will reduce peak RSS for the link (and speed up linking of
    	// large applications), since when the archive command runs we
    	// won't be holding onto all of the linker's live memory.
    	if syscallExecSupported && !ownTmpDir {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	pem.Encode(&pemOut, &pem.Block{Type: "PRIVATE KEY", Bytes: derBytes})
    
    	keyPath := tempFile(pemOut.String())
    	defer os.Remove(keyPath)
    
    	var command []string
    	command = append(command, serverCommand...)
    	command = append(command, test.args...)
    	command = append(command, "-cert", certPath, "-certform", "DER", "-key", keyPath)
    	// serverPort contains the port that OpenSSL will listen on. OpenSSL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			}
    			route := ws.GET(action.Path).To(handler).
    				Doc(doc).
    				Param(ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    				Produces(append(storageMeta.ProducesMIMETypes(action.Verb), mediaTypes...)...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top