Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 592 for combinations (0.19 sec)

  1. src/crypto/internal/boring/build-boring.sh

    export CGO_ENABLED=0
    
    # Modify the support code crypto/mem.c (outside the FIPS module)
    # to not try to use weak symbols, because they don't work with some
    # Go toolchain / clang toolchain combinations.
    perl -p -i -e 's/defined.*ELF.*defined.*GNUC.*/$0 \&\& !defined(GOBORING)/' boringssl/crypto/mem.c
    
    # Verbatim instructions from BoringCrypto build docs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    //  4 stack
    // Rather than offer all of them in the API,
    // only a few combinations are exposed:
    // - Preorder is the fastest and has fewest features,
    //   but is the most commonly needed traversal.
    // - Nodes and WithStack both provide pruning and postorder calls,
    //   even though few clients need it, because supporting two versions
    //   is not justified.
    // More combinations could be supported by expressing them as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

            .isWithin(ALLOWED_ERROR)
            .of(MANY_VALUES_SUM_OF_PRODUCTS_OF_DELTAS / MANY_VALUES_COUNT);
        // For datasets of many double values, we test many combinations of finite and non-finite
        // x-values:
        for (ManyValues values : ALL_MANY_VALUES) {
          PairedStatsAccumulator accumulator =
              createFilledPairedStatsAccumulator(values.asIterable(), OTHER_MANY_VALUES);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

            assert result.output.contains("Hello world!")
    
            where:
            [version, parallelTasksInProject] << [
                TestedVersions.kotlin.versions,
                [true, false]
            ].combinations()
        }
    
        def 'kotlin jvm and test suites (kotlin=#version)'() {
    
            assumeFalse(version.startsWith("1.6."))
            assumeFalse(version.startsWith("1.7."))
            setupForKotlinVersion(version)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

            [scriptDsl, testFramework] << [
                    ScriptDslFixture.SCRIPT_DSLS,
                    [ BuildInitTestFramework.JUNIT, BuildInitTestFramework.TESTNG, BuildInitTestFramework.JUNIT_JUPITER ]
            ].combinations()
        }
    
        def "creates sample source with package and #testFramework and #scriptDsl build scripts with --incubating"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

            outputDoesNotContain '*foo.fail*'
    
            and:
            configurationCache.assertStateLoaded()
    
            where:
            [pattern, fileTree] << [fileTreeOperators(), fileTrees()].combinations()
            isZip = fileTree.toString().startsWith('zip')
        }
    
        private List<String> fileTrees() {
            [
                "fileTree(dir: 'src', include: '**/*.*')",
                "zipTree('src.zip')",
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top