Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for sinceTime (0.23 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodLogOptions.json

    {
      "kind": "PodLogOptions",
      "apiVersion": "v1",
      "container": "containerValue",
      "follow": true,
      "previous": true,
      "sinceSeconds": 4,
      "sinceTime": "2005-01-01T01:01:01Z",
      "timestamps": true,
      "tailLines": 7,
      "limitBytes": 8,
      "insecureSkipTLSVerifyBackend": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 281 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodLogOptions.yaml

    apiVersion: v1
    container: containerValue
    follow: true
    insecureSkipTLSVerifyBackend: true
    kind: PodLogOptions
    limitBytes: 8
    previous: true
    sinceSeconds: 4
    sinceTime: "2005-01-01T01:01:01Z"
    tailLines: 7
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 218 bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    				Param(ws.QueryParameter("query", "query specifies services(s) or files from which to return logs").DataType("string")).
    				Param(ws.QueryParameter("sinceTime", "sinceTime is an RFC3339 timestamp from which to show logs").DataType("string")).
    				Param(ws.QueryParameter("untilTime", "untilTime is an RFC3339 timestamp until which to show logs").DataType("string")).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    			return err
    		}
    	} else {
    		out.SinceSeconds = nil
    	}
    	if values, ok := map[string][]string(*in)["sinceTime"]; ok && len(values) > 0 {
    		if err := metav1.Convert_Slice_string_To_Pointer_v1_Time(&values, &out.SinceTime, s); err != nil {
    			return err
    		}
    	} else {
    		out.SinceTime = nil
    	}
    	if values, ok := map[string][]string(*in)["timestamps"]; 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)
  5. 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
    	SinceTime *metav1.Time `json:"sinceTime,omitempty" protobuf:"bytes,5,opt,name=sinceTime"`
    	// If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line
    	// of log output. Defaults to false.
    	// +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)
  6. pkg/apis/core/zz_generated.deepcopy.go

    	*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 {
    		in, out := &in.TailLines, &out.TailLines
    		*out = new(int64)
    		**out = **in
    	}
    	if in.LimitBytes != 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)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*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 {
    		in, out := &in.TailLines, &out.TailLines
    		*out = new(int64)
    		**out = **in
    	}
    	if in.LimitBytes != 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"sinceTime":                    "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. 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)
Back to top