Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 819 for combinations (0.18 sec)

  1. src/cmd/go/testdata/script/env_write.txt

    [GOOS:windows] ! go env -w CXX=.\cpp
    [GOOS:windows] ! go env -w CXX=bin\cpp
    [GOOS:windows] stderr 'go: CXX entry is relative; must be absolute path'
    
    # go env -w/-u checks validity of GOOS/ARCH combinations
    env GOOS=
    env GOARCH=
    # check -w doesn't allow invalid GOOS
    ! go env -w GOOS=linuxx
    stderr 'unsupported GOOS/GOARCH pair linuxx'
    # check -w doesn't allow invalid GOARCH
    ! go env -w GOARCH=amd644
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

        }
    
        @Unroll("#one ∪ #two ∪ #three = #expected")
        def "union of three elements"() {
            expect:
            [one, two, three].combinations().each { list ->
                assert factory.anyOf(list as Set) == expected
            }
    
            where:
            one          | two          | three        | expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

              parentBuilder) {
        List<TestSuite> derivedSuites = new ArrayList<>(super.createDerivedSuites(parentBuilder));
    
        if (!parentBuilder.getFeatures().contains(SUBSET_VIEW)) {
          // Other combinations are inherited from SortedSetTestSuiteBuilder.
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingIntegrationTest.groovy

        unlockedConf 'org:foo:1.+'
    }
    """
    
            when:
            succeeds 'dependencies'
    
            then:
            lockfileFixture.expectLockStateMissing('unlockedConf')
        }
    
        def "version selector combinations are resolved equally for locked and unlocked configurations"() {
            ['foo', 'foz', 'bar', 'baz'].each { artifact ->
                mavenRepo.module('org', artifact, '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:42:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. istioctl/pkg/clioptions/central.go

    	cmd.PersistentFlags().BoolVar(&o.Plaintext, "plaintext", viper.GetBool("PLAINTEXT"),
    		"Use plain-text HTTP/2 when connecting to server (no TLS).")
    }
    
    // ValidateControlPlaneFlags checks arguments for valid values and combinations
    func (o *CentralControlPlaneOptions) ValidateControlPlaneFlags() error {
    	if o.Xds != "" && o.XdsPodLabel != "" {
    		return fmt.Errorf("either --xds-address or --xds-label, not both")
    	}
    	if o.Plaintext && o.CertDir != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/VariantContext.groovy

            })
        }
    
        static List<VariantContext> from(Object[] listOfDimensionArrays) {
            def result = new ArrayList<VariantContext>()
            def dimensions = GroovyCollections.combinations(listOfDimensionArrays)
            dimensions.each {
                def dimension = new LinkedHashMap<String, VariantDimension>()
                it.eachWithIndex { item, idx ->
                    if (item instanceof VariantDimension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

            result.task(':library:sourceSets').outcome == TaskOutcome.SUCCESS
    
            where:
            [agpVersion, ide] << [
                TestedVersions.androidGradle.toList(),
                [false, true]
            ].combinations()
        }
    
        def "android library and application APK assembly (agp=#agpVersion, ide=#ide)"() {
    
            given:
            AGP_VERSIONS.assumeCurrentJavaVersionIsSupportedBy(agpVersion)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/testFixtures/groovy/org/gradle/buildinit/plugins/fixtures/ScriptDslFixture.groovy

        static final List<List<BuildInitDsl>> scriptDslCombinationsFor(int count) {
            return ([SCRIPT_DSLS] * count).combinations()
        }
    
        static ScriptDslFixture of(BuildInitDsl scriptDsl, TestFile rootDir, String subprojectName) {
            new ScriptDslFixture(scriptDsl, rootDir, subprojectName)
        }
    
        final BuildInitDsl scriptDsl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 00:45:16 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

            where:
            // make sure that multi-byte unicode characters get split in different chunks
            [chunkSize, preUseBuffer] << [(1..(TEST_STRING_BYTES.length * 3)).toList() + [100, 1000], [false, true]].combinations()
        }
    
        def "empty buffer to String returns empty String"() {
            given:
            def byteBuffer = new StreamByteBuffer()
    
            expect:
            byteBuffer.readAsString() == ''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/constant_loading_test.cc

      }
    
      testing::CheckBufferDataIsEqual(expected.dtype(), expected.NumElements(),
                                      revived_tensor->Data(), expected.data());
    }
    
    // Test against combinations of tensors that are
    // 1. Varying dtypes
    // 2. Varying shapes
    // 3. TensorProto serialized using tensor_content vs repeated type
    INSTANTIATE_TEST_SUITE_P(
        ConstantIntegerDtypesTest, ConstantTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.2K bytes
    - Viewed (0)
Back to top