Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 819 for combinations (0.16 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/AllowFollowForMutatingMethodRedirectStrategyTest.groovy

            redirectRequest.method.toUpperCase() == expectedMethod
    
            where:
            [httpMethod, redirect] << [HTTP_METHODS, REDIRECTS].combinations()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThat(manyValuesAccumulatorByAddAllStatsAccumulator.mean())
            .isWithin(ALLOWED_ERROR)
            .of(MANY_VALUES_MEAN);
        // For datasets of many double values created from an iterable, we test many combinations of
        // finite and non-finite values:
        for (ManyValues values : ALL_MANY_VALUES) {
          StatsAccumulator accumulator = new StatsAccumulator();
          StatsAccumulator accumulatorByAddAllStats = new StatsAccumulator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

            collectProblems(childMetadata).empty
    
            where:
            [parentAnnotation, childAnnotation] << [PROCESSED_PROPERTY_TYPE_ANNOTATIONS, PROCESSED_PROPERTY_TYPE_ANNOTATIONS].combinations()*.flatten()
        }
    
        def "can override @#processedAnnotation.simpleName property type with @#unprocessedAnnotation.simpleName"() {
            def parentTask = groovyClassLoader.parseClass """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/internal/platform/zosarch_test.go

    // To change the information in this file, edit the cgoEnabled and/or firstClass
    // maps in cmd/dist/build.go, then run 'go generate internal/platform'.
    
    package platform
    
    // List is the list of all valid GOOS/GOARCH combinations,
    // including known-broken ports.
    var List = []OSArch{
    {{range .}}	{ {{ printf "%q" .GOOS }}, {{ printf "%q" .GOARCH }} },
    {{end}}
    }
    
    var distInfo = map[OSArch]osArchInfo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

        def indyModes() {
            return [true, false]
        }
    
        final def testCasesWithIndyModes() {
            // Combine each test case with enableIndy=true and/or enableIndy=false
            return [testCases(), indyModes()].combinations().collect { it.flatten() }
        }
    
        def "#title is intercepted in groovy build script #indyStatus"(VarInitializer varInitializer) {
            given:
            def cwd = testDirectory.file(expectedPwdSuffix)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

    class ScriptChangeFixture {
    
        static List<Spec> specs() {
            [
                ScriptDiscovery.values(),
                ScriptLanguage.values(),
                ScriptType.values()
            ].combinations().collect { ScriptDiscovery d, ScriptLanguage l, ScriptType t ->
                new Spec(d, l, t)
            }
        }
    
        @Immutable
        static class Spec {
            ScriptDiscovery scriptDiscovery
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/testing/helperfuncs_test.go

    	t.Helper()
    	t.Error(msg)
    }
    
    var genericIntHelper = genericHelper[int]
    
    func testTestHelper(t *testing.T) {
    	testHelper(t)
    }
    
    func testHelper(t *testing.T) {
    	// Check combinations of directly and indirectly
    	// calling helper functions.
    	notHelper(t, "0")
    	helper(t, "1")
    	notHelperCallingHelper(t, "2")
    	helperCallingHelper(t, "3")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/internal/platform/zosarch.go

    // To change the information in this file, edit the cgoEnabled and/or firstClass
    // maps in cmd/dist/build.go, then run 'go generate internal/platform'.
    
    package platform
    
    // List is the list of all valid GOOS/GOARCH combinations,
    // including known-broken ports.
    var List = []OSArch{
    	{"aix", "ppc64"},
    	{"android", "386"},
    	{"android", "amd64"},
    	{"android", "arm"},
    	{"android", "arm64"},
    	{"darwin", "amd64"},
    	{"darwin", "arm64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. test/bigmap.go

    // license that can be found in the LICENSE file.
    
    // Internally a map holds elements in up to 255 bytes of key+value.
    // When key or value or both are too large, it uses pointers to key+value
    // instead.  Test all the combinations.
    
    package main
    
    func seq(x, y int) [1000]byte {
    	var r [1000]byte
    	for i := 0; i < len(r); i++ {
    		r[i] = byte(x + i*y)
    	}
    	return r
    }
    
    func cmp(x, y [1000]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 25 02:41:07 UTC 2012
    - 2.5K bytes
    - Viewed (0)
  10. src/flag/example_test.go

    	// If we wanted to allow the flag to be set multiple times,
    	// accumulating values, we would delete this if statement.
    	// That would permit usages such as
    	//	-deltaT 10s -deltaT 15s
    	// and other combinations.
    	if len(*i) > 0 {
    		return errors.New("interval flag already set")
    	}
    	for _, dt := range strings.Split(value, ",") {
    		duration, err := time.ParseDuration(dt)
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top