Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tailLines (0.27 sec)

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

    			return err
    		}
    	} else {
    		out.Timestamps = false
    	}
    	if values, ok := map[string][]string(*in)["tailLines"]; ok && len(values) > 0 {
    		if err := runtime.Convert_Slice_string_To_Pointer_int64(&values, &out.TailLines, s); err != nil {
    			return err
    		}
    	} else {
    		out.TailLines = nil
    	}
    	if values, ok := map[string][]string(*in)["limitBytes"]; 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/validation/validation.go

    	}
    	return allErrs
    }
    
    func ValidatePodLogOptions(opts *core.PodLogOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if opts.TailLines != nil && *opts.TailLines < 0 {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("tailLines"), *opts.TailLines, isNegativeErrorMsg))
    	}
    	if opts.LimitBytes != nil && *opts.LimitBytes < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// If set, the number of lines from the end of the logs to show. If not specified,
    	// logs are shown from the creation of the container or sinceSeconds or sinceTime
    	// +optional
    	TailLines *int64 `json:"tailLines,omitempty" protobuf:"varint,7,opt,name=tailLines"`
    	// If set, the number of bytes to read from the server before terminating the
    	// log output. This may not display a complete final line of logging, and may return
    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

      // If set, the number of lines from the end of the logs to show. If not specified,
      // logs are shown from the creation of the container or sinceSeconds or sinceTime
      // +optional
      optional int64 tailLines = 7;
    
      // If set, the number of bytes to read from the server before terminating the
      // log output. This may not display a complete final line of logging, and may return
    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. pkg/apis/core/types.go

    	// of log output.
    	Timestamps bool
    	// If set, the number of lines from the end of the logs to show. If not specified,
    	// logs are shown from the creation of the container or sinceSeconds or sinceTime
    	TailLines *int64
    	// If set, the number of bytes to read from the server before terminating the
    	// log output. This may not display a complete final line of logging, and may return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"timestamps":                   "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
    	"tailLines":                    "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // If set, the number of lines from the end of the logs to show. If not specified,
      // logs are shown from the creation of the container or sinceSeconds or sinceTime
      // +optional
      optional int64 tailLines = 7;
    
      // If set, the number of bytes to read from the server before terminating the
      // log output. This may not display a complete final line of logging, and may return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top