Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WithPhase (0.21 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/namespacestatus.go

    	return &NamespaceStatusApplyConfiguration{}
    }
    
    // WithPhase sets the Phase field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    func (b *NamespaceStatusApplyConfiguration) WithPhase(value v1.NamespacePhase) *NamespaceStatusApplyConfiguration {
    	b.Phase = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumestatus.go

    	return &PersistentVolumeStatusApplyConfiguration{}
    }
    
    // WithPhase sets the Phase field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    func (b *PersistentVolumeStatusApplyConfiguration) WithPhase(value v1.PersistentVolumePhase) *PersistentVolumeStatusApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:39:24 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/test_utils.go

    func (pvb pvBuilder) withCapacity(capacity resource.Quantity) pvBuilder {
    	pvb.PersistentVolume.Spec.Capacity = v1.ResourceList{
    		v1.ResourceName(v1.ResourceStorage): capacity,
    	}
    	return pvb
    }
    
    func (pvb pvBuilder) withPhase(phase v1.PersistentVolumePhase) pvBuilder {
    	pvb.PersistentVolume.Status = v1.PersistentVolumeStatus{
    		Phase: phase,
    	}
    	return pvb
    }
    
    type pvcBuilder struct {
    	*v1.PersistentVolumeClaim
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimstatus.go

    	return &PersistentVolumeClaimStatusApplyConfiguration{}
    }
    
    // WithPhase sets the Phase field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    	b.Allocatable = &value
    	return b
    }
    
    // WithPhase sets the Phase field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    func (b *NodeStatusApplyConfiguration) WithPhase(value v1.NodePhase) *NodeStatusApplyConfiguration {
    	b.Phase = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top