Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WithImage (1.54 sec)

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

    	b.RestartCount = &value
    	return b
    }
    
    // WithImage sets the Image 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 Image field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithImage(value string) *ContainerStatusApplyConfiguration {
    	b.Image = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.Name = &value
    	return b
    }
    
    // WithImage sets the Image 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 Image field is set to the value of the last call.
    func (b *EphemeralContainerApplyConfiguration) WithImage(value string) *EphemeralContainerApplyConfiguration {
    	b.Image = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	b.Name = &value
    	return b
    }
    
    // WithImage sets the Image 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 Image field is set to the value of the last call.
    func (b *ContainerApplyConfiguration) WithImage(value string) *ContainerApplyConfiguration {
    	b.Image = &value
    	return b
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    	b.Name = &value
    	return b
    }
    
    // WithImage sets the Image 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 Image field is set to the value of the last call.
    func (b *EphemeralContainerCommonApplyConfiguration) WithImage(value string) *EphemeralContainerCommonApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top