Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 802 for erator (0.16 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        }
      }
    
      /**
       * Verifies that an Iterator is unmodifiable.
       *
       * <p>This test only works with iterators that iterate over a finite set.
       */
      public static void assertIteratorIsUnmodifiable(Iterator<?> iterator) {
        while (iterator.hasNext()) {
          iterator.next();
          try {
            iterator.remove();
            fail("Remove on unmodifiable iterator succeeded");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
          targetAverageValue: "0"
          targetValue: "0"
        object:
          averageValue: "0"
          metricName: metricNameValue
          selector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

      public int hashCode() {
        return Sets.hashCodeImpl(this);
      }
    
      // This declaration is needed to make Set.iterator() and
      // ImmutableCollection.iterator() appear consistent to javac's type inference.
      @Override
      public abstract UnmodifiableIterator<E> iterator();
    
      abstract static class CachingAsList<E> extends ImmutableSet<E> {
        @LazyInit private transient ImmutableList<E> asList;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/helpers_test.go

    						{
    							Key:      "key2",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value2"},
    						},
    						{
    							Key:      "key3",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value3"},
    						},
    					},
    				},
    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    						{
    							Key:      "key1",
    							Operator: v1.NodeSelectorOpIn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.yaml

            averageValue: "0"
            type: typeValue
            value: "0"
        external:
          metric:
            name: nameValue
            selector:
              matchExpressions:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
              matchLabels:
                matchLabelsKey: matchLabelsValue
          target:
            averageUtilization: 4
            averageValue: "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/Helpers.java

      }
    
      static <T extends @Nullable Object> Iterator<T> cycle(Iterable<T> iterable) {
        return new Iterator<T>() {
          Iterator<T> iterator = Collections.<T>emptySet().iterator();
    
          @Override
          public boolean hasNext() {
            return true;
          }
    
          @Override
          public T next() {
            if (!iterator.hasNext()) {
              iterator = iterable.iterator();
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/Chart.yaml

    apiVersion: v2
    name: istio-operator
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio operator
    keywords:
      - istio
      - operator
    sources:
      - https://github.com/istio/istio/tree/master/operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 404 bytes
    - Viewed (0)
  8. pkg/controller/daemon/util/daemonset_util_test.go

    									{
    										Key:      "hostname",
    										Operator: v1.NodeSelectorOpIn,
    										Values:   []string{"host_1"},
    									},
    								},
    							},
    							{
    								MatchFields: []v1.NodeSelectorRequirement{
    									{
    										Key:      metav1.ObjectNameField,
    										Operator: v1.NodeSelectorOpIn,
    										Values:   []string{"host_2"},
    									},
    								},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

        }
    
        private
        fun createContainer(k: K, creator: () -> V): CalculatedValueContainer<BlockAddress, *> =
            calculatedValueContainerFactory.create<BlockAddress>(displayNameFor(k)) {
                loadPreviousOrCreateValue(k, creator)
            }
    
        private
        fun loadPreviousOrCreateValue(key: K, creator: () -> V): BlockAddress {
            previousValues[key]?.let { previouslyCached ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

                "matchLabels": {
                  "matchLabelsKey": "matchLabelsValue"
                },
                "matchExpressions": [
                  {
                    "key": "keyValue",
                    "operator": "operatorValue",
                    "values": [
                      "valuesValue"
                    ]
                  }
                ]
              },
              "averageValue": "0"
            },
            "pods": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top