Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for SinceSeconds (0.25 sec)

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

    			return err
    		}
    	} else {
    		out.Previous = false
    	}
    	if values, ok := map[string][]string(*in)["sinceSeconds"]; ok && len(values) > 0 {
    		if err := runtime.Convert_Slice_string_To_Pointer_int64(&values, &out.SinceSeconds, s); err != nil {
    			return err
    		}
    	} else {
    		out.SinceSeconds = nil
    	}
    	if values, ok := map[string][]string(*in)["sinceTime"]; 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. staging/src/k8s.io/api/core/v1/types.go

    	// If this value is in the future, no logs will be returned.
    	// Only one of sinceSeconds or sinceTime may be specified.
    	// +optional
    	SinceSeconds *int64 `json:"sinceSeconds,omitempty" protobuf:"varint,4,opt,name=sinceSeconds"`
    	// An RFC3339 timestamp from which to show logs. If this value
    	// precedes the time a pod was started, only logs since the pod start will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PodLogOptions) DeepCopyInto(out *PodLogOptions) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.SinceSeconds != nil {
    		in, out := &in.SinceSeconds, &out.SinceSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.SinceTime != nil {
    		in, out := &in.SinceTime, &out.SinceTime
    		*out = (*in).DeepCopy()
    	}
    	if in.TailLines != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PodLogOptions) DeepCopyInto(out *PodLogOptions) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.SinceSeconds != nil {
    		in, out := &in.SinceSeconds, &out.SinceSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.SinceTime != nil {
    		in, out := &in.SinceTime, &out.SinceTime
    		*out = (*in).DeepCopy()
    	}
    	if in.TailLines != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
      optional int64 sinceSeconds = 4;
    
      // An RFC3339 timestamp from which to show logs. If this value
      // precedes the time a pod was started, only logs since the pod start will be returned.
      // If this value is in the future, no logs will be returned.
      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Only one of sinceSeconds or sinceTime may be specified.
    	SinceSeconds *int64
    	// An RFC3339 timestamp from which to show logs. If this value
    	// precedes the time a pod was started, only logs since the pod start will be returned.
    	// If this value is in the future, no logs will be returned.
    	// Only one of sinceSeconds or sinceTime may be specified.
    	SinceTime *metav1.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"sinceSeconds":                 "A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
      optional int64 sinceSeconds = 4;
    
      // An RFC3339 timestamp from which to show logs. If this value
      // precedes the time a pod was started, only logs since the pod start will be returned.
      // If this value is in the future, no logs will be returned.
      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    		{core.PodLogOptions{LimitBytes: &negative}, 1},
    		{core.PodLogOptions{LimitBytes: &positive}, 0},
    		{core.PodLogOptions{SinceSeconds: &negative}, 1},
    		{core.PodLogOptions{SinceSeconds: &positive}, 0},
    		{core.PodLogOptions{SinceSeconds: &zero}, 1},
    		{core.PodLogOptions{SinceTime: &now}, 0},
    	}
    	for i, test := range tests {
    		errs := ValidatePodLogOptions(&test.opt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if err != nil {
    				return 0, err
    			}
    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x2a
    	}
    	if m.SinceSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.SinceSeconds))
    		i--
    		dAtA[i] = 0x20
    	}
    	i--
    	if m.Previous {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x18
    	i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top