Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lastObservedTime (0.36 sec)

  1. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "lastObservedTime": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime"
                  }
                ],
                "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	if obj.LastTimestamp.IsZero() {
    		lastTimestamp = firstTimestamp
    	}
    
    	count := obj.Count
    	if obj.Series != nil {
    		lastTimestamp = translateMicroTimestampSince(obj.Series.LastObservedTime)
    		count = obj.Series.Count
    	} else if count == 0 {
    		// Singleton events don't have a count set in the new API.
    		count = 1
    	}
    
    	var target string
    	if len(obj.InvolvedObject.Name) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EventSeries) DeepCopyInto(out *EventSeries) {
    	*out = *in
    	in.LastObservedTime.DeepCopyInto(&out.LastObservedTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventSeries.
    func (in *EventSeries) DeepCopy() *EventSeries {
    	if in == 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

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EventSeries) DeepCopyInto(out *EventSeries) {
    	*out = *in
    	in.LastObservedTime.DeepCopyInto(&out.LastObservedTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventSeries.
    func (in *EventSeries) DeepCopy() *EventSeries {
    	if in == 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. pkg/printers/internalversion/printers_test.go

    					Kind:      "Deployment",
    					Name:      "Deployment Name",
    					FieldPath: "spec.containers{foo}",
    				},
    				Series: &api.EventSeries{
    					Count:            2,
    					LastObservedTime: metav1.MicroTime{Time: time.Now().UTC().AddDate(0, 0, -2)},
    				},
    				Reason:     "Event Reason",
    				Message:    "Message Data",
    				EventTime:  metav1.MicroTime{Time: time.Now().UTC().AddDate(0, 0, -3)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top