Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 819 for combinations (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

        @Override
        protected void createExecutions() {
            def requiredFeatures = requiredFeatures(target.annotations)
            def allFeatures = features.values()
            def combinations = allFeatures.collect { it.displayNames.keySet() }.combinations()
            combinations.each {
                Map<String, String> executionValues = [:]
                Iterator<String> iter = it.iterator()
                boolean skip = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/python/testing.py

    def parameter_combinations(
        test_parameters: Sequence[Mapping[str, Sequence[Any]]]
    ) -> Sequence[Mapping[str, Any]]:
      """Generate all combinations of test parameters.
    
      Args:
        test_parameters: List of dictionaries that maps parameter keys and values.
    
      Returns:
        real_parameters: All possible combinations of the parameters as list of
        dictionaries.
      """
      real_parameters = []
      for parameters in test_parameters:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. testing/precondition-tester/README.md

    This project collections information about where test preconditions can be satisfied.
    We can use this information (i.e. by looking at the test results in Develocity) to see if we have any preconditions or combinations of preconditions, which are never satisfied &ndash; a situation which we otherwise would hardly notice.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestAssertionFailedMapperTest.groovy

            failure.details.actual == expectedActual
            failure.details.actualContent == expectedActualContent
    
            where:
            // How this works is that the test will execute all combinations of the two triples,
            // but won't change the order of the elements in each triple.
            //
            // E.g.: [null, null, null], ["actual", "actual", null] => [null, null, null, "actual", "actual", null]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:57:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/runtime/cputicks.go

    //go:build !arm && !arm64 && !mips64 && !mips64le && !mips && !mipsle && !wasm
    
    package runtime
    
    // careful: cputicks is not guaranteed to be monotonic! In particular, we have
    // noticed drift between cpus on certain os/arch combinations. See issue 8976.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 12:47:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

                    processBuilder().java
                ],
                [
                    "resolveCollection",
                    "resolveProviders"
                ]
            ].combinations()
        }
    
        def "using #snippetsFactory.summary in transform action with #task of buildSrc build is not a problem"(SnippetsFactory snippetsFactory, String task) {
            given:
            createDir("buildSrc") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. testing/precondition-tester/src/test/groovy/org/gradle/test/precondition/PreconditionProbingTest.groovy

    /**
     * This class executes a special test suite, checking all the allowed precondition combinations.
     *
     * <p>
     * Each combination can have three outcomes:
     * <ul>
     *     <li><b>Successful:</b> the precondition combination could be satisfied.</li>
     *     <li>
     *         <b>Skipped:</b> the precondition combination could <i>not</i> be satisfied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. test/codegen/bitfield.go

    func sbfiz3(x int16) int64 {
    	return int64(x << 3) // arm64:"SBFIZ\t[$]3, R[0-9]+, [$]13",-"LSL"
    }
    
    func sbfiz4(x int8) int64 {
    	return int64(x << 3) // arm64:"SBFIZ\t[$]3, R[0-9]+, [$]5",-"LSL"
    }
    
    // sbfiz combinations.
    // merge shift with sbfiz into sbfiz.
    func sbfiz5(x int32) int32 {
    	// arm64:"SBFIZ\t[$]1, R[0-9]+, [$]28",-"LSL",-"ASR"
    	return (x << 4) >> 3
    }
    
    func sbfiz6(x int16) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/evex.go

    		msg = append(msg, "can't combine rounding/SAE and broadcast")
    	}
    
    	if len(msg) == 0 {
    		return errors.New("bad suffix combination")
    	}
    	return errors.New(strings.Join(msg, "; "))
    }
    
    // opSuffixTable is a complete list of possible opcode suffix combinations.
    // It "maps" uint8 suffix bits to their string representation.
    // With the exception of first and last elements, order is not important.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

            where:
            [target, parameter, injectionStyle] << [
                ScriptTarget.values(),
                ParameterKind.values(),
                InjectionStyle.values()
            ].combinations()
        }
    
        def '#target #injectionStyle with #parameter can react to configuration failure'() {
            given:
            withLavaLampPluginFor target, parameter, injectionStyle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top