Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 427 for appendCmd (0.19 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/cronjobstatus.go

    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Active field.
    func (b *CronJobStatusApplyConfiguration) WithActive(values ...*v1.ObjectReferenceApplyConfiguration) *CronJobStatusApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 13:03:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/cronjobstatus.go

    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Active field.
    func (b *CronJobStatusApplyConfiguration) WithActive(values ...*v1.ObjectReferenceApplyConfiguration) *CronJobStatusApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 13:03:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // whose names are the concatenation of the name and the stack trace. There is
    // an upper limit on the size of this name, about 4K bytes. If the name is too
    // long the stack will be truncated and "truncated" appended.)
    //
    // When counter files expire they are turned into reports by the upload
    // package. The first time any counter file is created for a user, a random day
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validatingadmissionpolicybindingspec.go

    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the ValidationActions field.
    func (b *ValidatingAdmissionPolicyBindingSpecApplyConfiguration) WithValidationActions(values ...admissionregistrationv1alpha1.ValidationAction) *ValidatingAdmissionPolicyBindingSpecApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 02:51:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinition.go

    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the OwnerReferences field.
    func (b *CustomResourceDefinitionApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *CustomResourceDefinitionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. pkg/test/echo/common/model.go

    package common
    
    import "istio.io/istio/pkg/config/protocol"
    
    // TLSSettings defines TLS configuration for Echo server
    type TLSSettings struct {
    	// If not empty, RootCert supplies the extra root cert that will be appended to the system cert pool.
    	RootCert   string
    	ClientCert string
    	Key        string
    	// If provided, override the host name used for the connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/horizontalpodautoscalerspec.go

    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Metrics field.
    func (b *HorizontalPodAutoscalerSpecApplyConfiguration) WithMetrics(values ...*MetricSpecApplyConfiguration) *HorizontalPodAutoscalerSpecApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/services.go

    	d[i], d[j] = d[j], d[i]
    }
    
    // Copy this services array.
    func (d Services) Copy() Services {
    	return append(Services{}, d...)
    }
    
    // Append returns a new Services array with the given values appended.
    func (d Services) Append(others ...Services) Services {
    	out := d.Copy()
    	for _, o := range others {
    		out = append(out, o...)
    	}
    	sort.Stable(out)
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/context.go

    	// For a non-slice pointer, the value will be assigned to the first matching resource.
    	// For a slice pointer, the matching resources from this scope and its parent(s) will be appended.
    	// If ref is not a pointer, an error will be returned.
    	// If there is no match for a non-slice pointer, an error will be returned.
    	GetResource(ref any) error
    
    	// The Environment in which the tests run
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         * will be appended to the JVM arguments with the configuration from the parameter.
         *
         * @since 5.6
         */
        @Nested
        JavaDebugOptions getDebugOptions();
    
        /**
         * Configures Java Debug Wire Protocol properties for the process. If {@link #setDebug(boolean)} is enabled then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top