Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for STDOUT (0.22 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    			return err
    		}
    	} else {
    		out.Stdin = false
    	}
    	if values, ok := map[string][]string(*in)["stdout"]; ok && len(values) > 0 {
    		if err := runtime.Convert_Slice_string_To_bool(&values, &out.Stdout, s); err != nil {
    			return err
    		}
    	} else {
    		out.Stdout = false
    	}
    	if values, ok := map[string][]string(*in)["stderr"]; ok && len(values) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    // TODO: merge w/ PodExecOptions below for stdin, stdout, etc
    type PodAttachOptions struct {
    	metav1.TypeMeta
    
    	// Stdin if true indicates that stdin is to be redirected for the attach call
    	// +optional
    	Stdin bool
    
    	// Stdout if true indicates that stdout is to be redirected for the attach call
    	// +optional
    	Stdout bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Defaults to false.
    	// +optional
    	Stdin bool `json:"stdin,omitempty" protobuf:"varint,1,opt,name=stdin"`
    
    	// Stdout if true indicates that stdout is to be redirected for the attach call.
    	// Defaults to true.
    	// +optional
    	Stdout bool `json:"stdout,omitempty" protobuf:"varint,2,opt,name=stdout"`
    
    	// Stderr if true indicates that stderr is to be redirected for the attach call.
    	// Defaults to true.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // TODO: merge w/ PodExecOptions below for stdin, stdout, etc
    // and also when we cut V2, we should export a "StreamOptions" or somesuch that contains Stdin, Stdout, Stder and TTY
    message PodAttachOptions {
      // Stdin if true, redirects the standard input stream of the pod for this call.
      // Defaults to false.
      // +optional
      optional bool stdin = 1;
    
      // Stdout if true indicates that stdout is to be redirected for the attach call.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

     - Log messages in JSON format are written to stderr by default now (same as text format) instead of stdout. Users who expected JSON output on stdout must now capture stderr instead or in addition to stdout. ([#106146](https://github.com/kubernetes/kubernetes/pull/106146), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture, Cluster Lifecycle and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    // TODO: merge w/ PodExecOptions below for stdin, stdout, etc
    // and also when we cut V2, we should export a "StreamOptions" or somesuch that contains Stdin, Stdout, Stder and TTY
    message PodAttachOptions {
      // Stdin if true, redirects the standard input stream of the pod for this call.
      // Defaults to false.
      // +optional
      optional bool stdin = 1;
    
      // Stdout if true indicates that stdout is to be redirected for the attach call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                    minimum: 1
                    type: integer
                  logSeverityScreen:
                    description: 'LogSeverityScreen is the log severity above which logs
                      are sent to the stdout. [Default: INFO]'
                    type: string
                  nodeMeshMaxRestartTime:
                    description: Time to allow for software restart for node-to-mesh peerings.  When
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":          "PodAttachOptions is the query options to a Pod's remote attach call.",
    	"stdin":     "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
    	"stdout":    "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
    	"stderr":    "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    var ssaCaches []ssa.Cache
    
    var ssaDump string     // early copy of $GOSSAFUNC; the func name to dump output for
    var ssaDir string      // optional destination for ssa dump file
    var ssaDumpStdout bool // whether to dump to stdout
    var ssaDumpCFG string  // generate CFGs for these phases
    const ssaDumpFile = "ssa.html"
    
    // ssaDumpInlined holds all inlined functions when ssaDump contains a function name.
    var ssaDumpInlined []*ir.Func
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    - Fixed performance regression in JSON logging caused by syncing stdout every time error was logged. ([#107035](https://github.com/kubernetes/kubernetes/pull/107035), [@serathius](https://github.com/serathius))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top