Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 592 for combinations (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                [apiUsingUsage(), apiUsingUsage("fromResolutionOf('compileClasspath')")],
                [runtimeUsingUsage(), runtimeUsingUsage("fromResolutionOf('runtimeClasspath')")]
            ].combinations() + [[allVariants(), noop()]])
        }
    
        def "dependency constraints which are unresolved are published as is"() {
            javaLibrary(mavenRepo.module("org.test", "foo", "1.0")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (d *DestinationRuleAnalyzer) Analyze(ctx analysis.Context) {
    	// To avoid repeated iteration, precompute the set of existing destination host+subset combinations
    	destHostsAndSubsets := initDestHostsAndSubsets(ctx)
    
    	ctx.ForEach(gvk.VirtualService, func(r *resource.Instance) bool {
    		d.analyzeVirtualService(r, ctx, destHostsAndSubsets)
    		return true
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

                    [new RootBuildLocation(), new IncludedBuildLocation()],
                    [new RootBuildLocation(), new BuildSrcLocation(), new IncludedBuildLocation()],
                ]
            ].combinations().collect { language, locations ->
                new Spec(locations, language)
            }
        }
    
        static class Spec {
    
            final String copyTask = "copyTask"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import spock.lang.Issue
    
    /**
     * Tests for the tooling API, which check fetching models and running actions using different
     * combinations of versions of the TAPI and Gradle.
     *
     * Support for clients using a tooling API version older than 3.0 was removed in Gradle 5.0, so
     * there is a class-level lower bound for both versions.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

        assertThat(frameLog(true, 3, 10000, TYPE_DATA, 0x20))
          .isEqualTo("<< 0x00000003 10000 DATA          COMPRESSED")
      }
    
      /**
       * Ensures that valid flag combinations appear visually correct, and invalid show in hex.  This
       * also demonstrates how sparse the lookup table is.
       */
      @Test
      fun allFormattedFlagsWithValidBits() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

    import org.gradle.integtests.fixtures.KotlinDslTestUtil
    import org.gradle.test.fixtures.file.TestFile
    
    class BuildLogicChangeFixture {
    
        static List<Spec> specs() {
            [Kind.values(), Language.values()].combinations().collect { Kind kind, Language language ->
                new Spec(language, kind)
            }
        }
    
        @Immutable
        static class Spec {
            Language language
            Kind kind
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

    import org.gradle.test.fixtures.server.http.MavenHttpPluginRepository
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    // Restrict the number of combinations because that's not really what we want to test
    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top