Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,253 for pairOf (0.22 sec)

  1. src/iter/iter.go

    // next and stop.
    //
    // Next returns the next pair in the sequence
    // and a boolean indicating whether the pair is valid.
    // When the sequence is over, next returns a pair of zero values and false.
    // It is valid to call next after reaching the end of the sequence
    // or after calling stop. These calls will continue
    // to return a pair of zero values and false.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskOptionsGenerator.java

         * of mutually exclusive options to the {@link TaskOptions#mutuallyExclusiveOptions taskOptions} argument.
         */
        private static Map<String, OptionDescriptor> generateOppositeOptions(Object target, Map<String, OptionDescriptor> options, TaskOptions taskOptions) {
            Map<String, OptionDescriptor> oppositeOptions = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 28 09:20:18 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/interface.go

    }
    
    //////////////////////////////// Pairs ////////////////////////////////
    //
    // API Priority and Fairness tends to use RatioedGaugeVec members in pairs,
    // one for requests waiting in a queue and one for requests being executed.
    // The following definitions are a convenience layer that adds support for that
    // particular pattern of usage.
    
    // RatioedGaugePair is a corresponding pair of gauges, one for the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 13 03:37:15 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    // are problematic.  This analysis returns the set of pairs of resource
    // operations that cannot be put in the same cluster because XLA cannot respect
    // the dependencies between them in the TensorFlow program.
    //
    // The restrictions are not transitive: it is fine to put A and C in the same
    // cluster even if the returned set contains (A,B) and (B,C).
    //
    // In other words, if these pairs are seen as edges in an undirected graph of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/config/crd/validator.go

    }
    
    // NewValidationIgnorer initializes the ignorer for the validatior, pairs are in namespace/namePattern format.
    func NewValidationIgnorer(pairs ...string) *ValidationIgnorer {
    	vi := &ValidationIgnorer{
    		patternsByNamespace: make(map[string]sets.String),
    	}
    	for _, pair := range pairs {
    		parts := strings.SplitN(pair, "/", 2)
    		if len(parts) != 2 {
    			continue
    		}
    		vi.Add(parts[0], parts[1])
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-diff.go

    	ignoreResources string
    	// renameResources identifies renamed resources before comparison.
    	// The format of each renaming pair is A->B, all renaming pairs are comma separated.
    	// e.g. Service:*:istio-pilot->Service:*:istio-control - rename istio-pilot service into istio-control
    	renameResources string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableTable.java

         * soon be deprecated.
         *
         * @throws IllegalArgumentException if duplicate key pairs were added
         */
        public ImmutableTable<R, C, V> build() {
          return buildOrThrow();
        }
    
        /**
         * Returns a newly-created immutable table, or throws an exception if duplicate key pairs were
         * added.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableTable.java

         * soon be deprecated.
         *
         * @throws IllegalArgumentException if duplicate key pairs were added
         */
        public ImmutableTable<R, C, V> build() {
          return buildOrThrow();
        }
    
        /**
         * Returns a newly-created immutable table, or throws an exception if duplicate key pairs were
         * added.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/escape/Escaper.java

     * because of the possibility of splitting a surrogate pair. The only case in which it is safe to
     * escape strings and concatenate the results is if you can rule out this possibility, either by
     * splitting an existing long string into short strings adaptively around {@linkplain
     * Character#isHighSurrogate surrogate} {@linkplain Character#isLowSurrogate pairs}, or by starting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 16:02:17 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

                projectSchema.extension("generic").type,
                equalTo(accessible(genericType))
            )
        }
    
        private
        fun schemaWithExtensions(vararg pairs: Pair<String, SchemaType>) = projectSchemaWith(
            extensions = pairs.map { ProjectSchemaEntry(SchemaType.of<Project>(), it.first, it.second) }
        )
    
        private
        fun <T> ProjectSchema<T>.extension(name: String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top