Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 415 for erator (0.12 sec)

  1. doc/next/2-language.md

    The "range" clause in a "for-range" loop now accepts iterator functions of the following types
    
    	func(func() bool)
    	func(func(K) bool)
    	func(func(K, V) bool)
    
    as range expressions.
    Calls of the iterator argument function produce the iteration values for the "for-range" loop.
    For details see the [language spec](/ref/spec#For_statements).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  2. operator/pkg/verifier/verifier.go

    	operatprv1alpha1 "istio.io/api/operator/v1alpha1"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	operator_istio "istio.io/istio/operator/pkg/apis/istio"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/controlplane"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/manifest"
    	"istio.io/istio/operator/pkg/translate"
    	"istio.io/istio/operator/pkg/util"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/internal/abi/rangefuncconsts.go

    	RF_PANIC                          // body of loop is either currently running, or has panicked
    	RF_EXHAUSTED                      // iterator function return, i.e., sequence is "exhausted"
    	RF_MISSING_PANIC = 4              // body of loop panicked but iterator function defer-recovered it away
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

            val key = ModelKey(identityPath, modelName, parameter?.hash)
            return loadOrCreateValue(key) {
                try {
                    val model = if (identityPath != null) {
                        cacheFingerprintController.runCollectingFingerprintForProject(identityPath, creator)
                    } else {
                        creator()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

            @Override
            public boolean isEmpty() {
                return getDelegate(false).isEmpty();
            }
    
            @Override
            public Iterator<T> iterator() {
                return new MutationSafeIterator(getDelegate(false).iterator());
            }
    
            @Override
            public boolean remove(Object o) {
                return getDelegate(true).remove(o);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/wrappers.go

    func (s *LabelSelectorWrapper) NotIn(key string, vals []string) *LabelSelectorWrapper {
    	expression := metav1.LabelSelectorRequirement{
    		Key:      key,
    		Operator: metav1.LabelSelectorOpNotIn,
    		Values:   vals,
    	}
    	s.MatchExpressions = append(s.MatchExpressions, expression)
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. src/slices/iter.go

    import (
    	"cmp"
    	"iter"
    )
    
    // All returns an iterator over index-value pairs in the slice.
    // The indexes range in the usual order, from 0 through len(s)-1.
    func All[Slice ~[]E, E any](s Slice) iter.Seq2[int, E] {
    	return func(yield func(int, E) bool) {
    		for i, v := range s {
    			if !yield(i, v) {
    				return
    			}
    		}
    	}
    }
    
    // Backward returns an iterator over index-value pairs in the slice,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForType.kt

        }
    
        override val size: Int
            get() = withValidityAssertion { coneType.customAnnotations.size }
    
        override fun iterator(): Iterator<KaAnnotation> = withValidityAssertion {
            return backingAnnotations.iterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            return backingAnnotations[index]
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                }
                val stringProvider = providers
                    .$operator("string")
                    .orElse($orElseArgument)
                tasks.register<PrintString>("printString") {
                    string.set(stringProvider)
                }
            """
            def printString = { string ->
                switch (operator) {
                    case 'systemProperty':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. manifests/charts/istio-cni/templates/daemonset.yaml

          tolerations:
            # Make sure istio-cni-node gets scheduled on all nodes.
            - effect: NoSchedule
              operator: Exists
            # Mark the pod as a critical add-on for rescheduling.
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: {{ template "name" . }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top