Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,300 for setS (0.13 sec)

  1. pilot/pkg/xds/deltatest.go

    		}
    	}
    
    	gotDeleted := sets.New[string]()
    	if usedDelta {
    		gotDeleted.InsertAll(deleted...)
    	}
    	gotChanged := sets.New[string]()
    	for _, v := range deltaRes {
    		gotChanged.Insert(v.Name)
    	}
    
    	// BUGS
    	extraDeletes := sets.SortedList(gotDeleted.Difference(wantDeleted))
    	missedDeletes := sets.SortedList(wantDeleted.Difference(gotDeleted))
    	missedChanges := sets.SortedList(wantChanged.Difference(gotChanged))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	return &PersistentVolumeSpecApplyConfiguration{}
    }
    
    // WithCapacity sets the Capacity 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 Capacity 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
    - 16.6K bytes
    - Viewed (0)
  3. pkg/util/sets/set.go

    func (s Set[T]) Delete(item T) Set[T] {
    	delete(s, item)
    	return s
    }
    
    // DeleteAll removes items from the set.
    func (s Set[T]) DeleteAll(items ...T) Set[T] {
    	for _, item := range items {
    		delete(s, item)
    	}
    	return s
    }
    
    // Merge a set of objects that are in s2 into s
    // For example:
    // s = {a1, a2, a3}
    // s2 = {a3, a4, a5}
    // s.Merge(s2) = {a1, a2, a3, a4, a5}
    func (s Set[T]) Merge(s2 Set[T]) Set[T] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/ReferenceEntry.java

      @SuppressWarnings("GoodTime")
      long getAccessTime();
    
      /** Sets the entry access time in ns. */
      @SuppressWarnings("GoodTime") // b/122668874
      void setAccessTime(long time);
    
      /** Returns the next entry in the access queue. */
      ReferenceEntry<K, V> getNextInAccessQueue();
    
      /** Sets the next entry in the access queue. */
      void setNextInAccessQueue(ReferenceEntry<K, V> next);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/statefulsetspec.go

    	return &StatefulSetSpecApplyConfiguration{}
    }
    
    // WithReplicas sets the Replicas 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 Replicas field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsivolumesource.go

    }
    
    // WithLun sets the Lun 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 Lun field is set to the value of the last call.
    func (b *ISCSIVolumeSourceApplyConfiguration) WithLun(value int32) *ISCSIVolumeSourceApplyConfiguration {
    	b.Lun = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	return &EphemeralContainerApplyConfiguration{}
    }
    
    // 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/deploymentspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Paused field is set to the value of the last call.
    func (b *DeploymentSpecApplyConfiguration) WithPaused(value bool) *DeploymentSpecApplyConfiguration {
    	b.Paused = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/cronjobspec.go

    }
    
    // WithSuspend sets the Suspend 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 Suspend field is set to the value of the last call.
    func (b *CronJobSpecApplyConfiguration) WithSuspend(value bool) *CronJobSpecApplyConfiguration {
    	b.Suspend = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 16:40:46 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config/param/template.go

    // Returns the set of template parameters not defined in params.
    func (t Template) MissingParams(params Params) sets.String {
    	out := sets.New[string]()
    	for needed := range t.params {
    		if !params.Contains(needed) {
    			out.Insert(needed)
    		}
    	}
    	return out
    }
    
    func getParams(n parse.Node) sets.String {
    	out := sets.New[string]()
    	switch n.Type() {
    	case parse.NodeField:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top