Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 8,419 for capped (0.13 sec)

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

    // If called multiple times, values provided by each call will be appended to the Volumes field.
    func (b *PodSpecApplyConfiguration) WithVolumes(values ...*VolumeApplyConfiguration) *PodSpecApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    			panic("nil value passed to WithVolumes")
    		}
    		b.Volumes = append(b.Volumes, *values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 23.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/debugger/comparer_test.go

    	tests := []struct {
    		name      string
    		actual    []string
    		cached    []string
    		missing   []string
    		redundant []string
    	}{
    		{
    			name:      "redundant cached value",
    			actual:    []string{"foo", "bar"},
    			cached:    []string{"bar", "foo", "foobar"},
    			missing:   []string{},
    			redundant: []string{"foobar"},
    		},
    		{
    			name:      "missing cached value",
    			actual:    []string{"foo", "bar", "foobar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/namedrulewithoperations.go

    // If called multiple times, values provided by each call will be appended to the ResourceNames field.
    func (b *NamedRuleWithOperationsApplyConfiguration) WithResourceNames(values ...string) *NamedRuleWithOperationsApplyConfiguration {
    	for i := range values {
    		b.ResourceNames = append(b.ResourceNames, values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/namedrulewithoperations.go

    // If called multiple times, values provided by each call will be appended to the ResourceNames field.
    func (b *NamedRuleWithOperationsApplyConfiguration) WithResourceNames(values ...string) *NamedRuleWithOperationsApplyConfiguration {
    	for i := range values {
    		b.ResourceNames = append(b.ResourceNames, values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.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 Command field.
    func (b *EphemeralContainerApplyConfiguration) WithCommand(values ...string) *EphemeralContainerApplyConfiguration {
    	for i := range values {
    		b.Command = append(b.Command, values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podstatus.go

    // If called multiple times, values provided by each call will be appended to the Conditions field.
    func (b *PodStatusApplyConfiguration) WithConditions(values ...*PodConditionApplyConfiguration) *PodStatusApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    			panic("nil value passed to WithConditions")
    		}
    		b.Conditions = append(b.Conditions, *values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:43:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/proto.go

    					continue
    				}
    			}
    
    			// first record the location if there is any pending accumulated info.
    			if id := b.emitLocation(); id > 0 {
    				locs = append(locs, id)
    			}
    
    			// then, record the cached location.
    			locs = append(locs, l.id)
    
    			// Skip the matching pcs.
    			//
    			// Even if stk was truncated due to the stack depth
    			// limit, expandFinalInlineFrame above has already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

         * @return this
         * @see PatternFilterable Pattern Format
         */
        PatternFilterable setExcludes(Iterable<String> excludes);
    
        /**
         * Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple
         * patterns may be specified in a single call.
         *
         * If includes are not provided, then all files in this container will be included. If includes are provided, then a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    	accessors := make([]webhook.WebhookAccessor, 0, size)
    
    	for _, c := range configurations {
    		cachedConfigurationAccessors, ok := m.configurationsCache.Load(c.Name)
    		if ok {
    			// Pick an already cached webhookAccessor
    			accessors = append(accessors, cachedConfigurationAccessors.([]webhook.WebhookAccessor)...)
    			continue
    		}
    
    		// webhook names are not validated for uniqueness, so we check for duplicates and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/pod_devices.go

    			annotationsMap[k] = v
    			opts.Annotations = append(opts.Annotations, kubecontainer.Annotation{Name: k, Value: v})
    		}
    
    		if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.DevicePluginCDIDevices) {
    			// Updates for CDI devices.
    			cdiDevices := getCDIDeviceInfo(resp, allCDIDevices)
    			opts.CDIDevices = append(opts.CDIDevices, cdiDevices...)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top