Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for withName (0.17 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingwebhook.go

    	return &ValidatingWebhookApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *ValidatingWebhookApplyConfiguration) WithName(value string) *ValidatingWebhookApplyConfiguration {
    	b.Name = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingwebhook.go

    	return &ValidatingWebhookApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *ValidatingWebhookApplyConfiguration) WithName(value string) *ValidatingWebhookApplyConfiguration {
    	b.Name = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. hack/logcheck.conf

    contextual k8s.io/kubernetes/pkg/controller/.*
    contextual k8s.io/kubernetes/pkg/scheduler/.*
    contextual k8s.io/kubernetes/test/e2e/dra/.*
    
    # As long as contextual logging is alpha or beta, all WithName, WithValues,
    # NewContext calls have to go through klog. Once it is GA, we can lift
    # this restriction. Whether we then do a global search/replace remains
    # to be decided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    	return &ContainerStatusApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithName(value string) *ContainerStatusApplyConfiguration {
    	b.Name = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pkg/kube/controllers/queue.go

    	initialSync *atomic.Bool
    	name        string
    	maxAttempts int
    	workFn      func(key any) error
    	closed      chan struct{}
    	log         *istiolog.Scope
    }
    
    // WithName sets a name for the queue. This is used for logging
    func WithName(name string) func(q *Queue) {
    	return func(q *Queue) {
    		q.name = name
    	}
    }
    
    // WithRateLimiter allows defining a custom rate limiter for the queue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/mutatingwebhook.go

    	return &MutatingWebhookApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *MutatingWebhookApplyConfiguration) WithName(value string) *MutatingWebhookApplyConfiguration {
    	b.Name = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/jobtemplatespec.go

    	return &JobTemplateSpecApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *JobTemplateSpecApplyConfiguration) WithName(value string) *JobTemplateSpecApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimtemplate.go

    	return &PersistentVolumeClaimTemplateApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *PersistentVolumeClaimTemplateApplyConfiguration) WithName(value string) *PersistentVolumeClaimTemplateApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podtemplatespec.go

    	return &PodTemplateSpecApplyConfiguration{}
    }
    
    // WithName sets the Name 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 Name field is set to the value of the last call.
    func (b *PodTemplateSpecApplyConfiguration) WithName(value string) *PodTemplateSpecApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  10. pkg/log/logr.go

    		l: zl.l,
    	}
    
    	return logr.New(zlog)
    }
    
    func (zl *zapLogger) WithValues(keysAndValues ...any) logr.LogSink {
    	return NewLogrAdapter(zl.l.WithLabels(keysAndValues...)).GetSink()
    }
    
    func (zl *zapLogger) WithName(string) logr.LogSink {
    	return zl
    }
    
    // NewLogrAdapter creates a new logr.Logger using the given Zap Logger to log.
    func NewLogrAdapter(l *Scope) logr.Logger {
    	zlog := &zapLogger{
    		l: l,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top