Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for leaseTransitions (0.18 sec)

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

    	out.AcquireTime = (*metav1.MicroTime)(unsafe.Pointer(in.AcquireTime))
    	out.RenewTime = (*metav1.MicroTime)(unsafe.Pointer(in.RenewTime))
    	out.LeaseTransitions = (*int32)(unsafe.Pointer(in.LeaseTransitions))
    	return nil
    }
    
    // Convert_v1_LeaseSpec_To_coordination_LeaseSpec is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  2. pkg/apis/coordination/zz_generated.deepcopy.go

    		*out = (*in).DeepCopy()
    	}
    	if in.RenewTime != nil {
    		in, out := &in.RenewTime, &out.RenewTime
    		*out = (*in).DeepCopy()
    	}
    	if in.LeaseTransitions != nil {
    		in, out := &in.LeaseTransitions, &out.LeaseTransitions
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaseSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. pkg/apis/coordination/v1beta1/zz_generated.conversion.go

    	out.AcquireTime = (*v1.MicroTime)(unsafe.Pointer(in.AcquireTime))
    	out.RenewTime = (*v1.MicroTime)(unsafe.Pointer(in.RenewTime))
    	out.LeaseTransitions = (*int32)(unsafe.Pointer(in.LeaseTransitions))
    	return nil
    }
    
    // Convert_v1beta1_LeaseSpec_To_coordination_LeaseSpec is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1beta1/zz_generated.deepcopy.go

    		*out = (*in).DeepCopy()
    	}
    	if in.RenewTime != nil {
    		in, out := &in.RenewTime, &out.RenewTime
    		*out = (*in).DeepCopy()
    	}
    	if in.LeaseTransitions != nil {
    		in, out := &in.LeaseTransitions, &out.LeaseTransitions
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaseSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/coordination/v1/zz_generated.deepcopy.go

    		*out = (*in).DeepCopy()
    	}
    	if in.RenewTime != nil {
    		in, out := &in.RenewTime, &out.RenewTime
    		*out = (*in).DeepCopy()
    	}
    	if in.LeaseTransitions != nil {
    		in, out := &in.LeaseTransitions, &out.LeaseTransitions
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaseSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1.Lease.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      acquireTime: "2003-01-01T01:01:01.000003Z"
      holderIdentity: holderIdentityValue
      leaseDurationSeconds: 2
      leaseTransitions: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1beta1.Lease.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      acquireTime: "2003-01-01T01:01:01.000003Z"
      holderIdentity: holderIdentityValue
      leaseDurationSeconds: 2
      leaseTransitions: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1beta1.Lease.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      acquireTime: "2003-01-01T01:01:01.000003Z"
      holderIdentity: holderIdentityValue
      leaseDurationSeconds: 2
      leaseTransitions: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. pkg/apis/coordination/types.go

    	AcquireTime *metav1.MicroTime
    	// renewTime is a time when the current holder of a lease has last
    	// updated the lease.
    	// +optional
    	RenewTime *metav1.MicroTime
    	// leaseTransitions is the number of transitions of a lease between
    	// holders.
    	// +optional
    	LeaseTransitions *int32
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // LeaseList is a list of Lease objects.
    type LeaseList struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/coordination/v1beta1/generated.proto

      // updated the lease.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime renewTime = 4;
    
      // leaseTransitions is the number of transitions of a lease between
      // holders.
      // +optional
      optional int32 leaseTransitions = 5;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top