Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for buildable (0.34 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
        }
    
        def "stops reporting problems at certain limits"() {
            buildFile << """
                task all
            """
            for (i in 1..530) {
                buildFile << """
                    task broken$i { t ->
                        doLast({ println ("project = " + t.project) } as Action)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            buildFile << """
                allprojects {
                    group = "colored"
                }
            """
    
            printTaskOnlyExecutionPlan()
        }
    
        def printTaskOnlyExecutionPlan(TestFile buildFile = getBuildFile()) {
            // Log a task-only execution plan, which can only be computed during the runtime of the build
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            repository {
                path 'xml -> core'
                path 'json -> core'
                path 'xml:1.1 -> core:1.1'
                path 'json:1.1 -> core:1.1'
            }
    
            given:
            buildFile << """
                dependencies {
                    conf 'org:xml:1.0'
                    conf 'org:json:1.1'
                }
            """
            and:
            "a rule which infers module set from group and version"()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            getUserHomeCacheDir().file(CacheLayout.MODULES.getKey()).deleteDir()
            resetExpectations()
            // Changing the host makes Gradle consider that the 2 repositories are distinct
            buildFile.text = buildFile.text.replaceAll("(?m)http://localhost", "http://127.0.0.1")
            repositoryInteractions {
                'group:projectA' {
                    expectVersionListing()
                    '1.2' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
                    description = "My custom configuration"
                    assert canBeResolved
                    canBeConsumed = false
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            remoteRepo.module("group", "lib1", "6500").publish().allowAll()
    
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'"""
    
            buildFile << """
                subprojects {
                    group = 'test'
                    configurations { create("default") }
                    task producer(type: FileProducer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

        def "transform does not execute when project artifact cannot be built"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform()
            buildFile << """
                project(':a') {
                    dependencies {
                        implementation project(':b')
                        implementation project(':c')
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  8. tests/integration/security/authz_test.go

    			config.New(t).
    				Source(config.File("testdata/authz/mtls.yaml.tmpl")).
    				Source(config.File("testdata/authz/allow-principal.yaml.tmpl").WithParams(
    					param.Params{
    						"Allowed": allowed,
    					})).
    				BuildAll(nil, to).
    				Apply()
    
    			newTrafficTest(t, fromAndTo).
    				FromMatch(fromMatch).
    				ToMatch(toMatch).
    				Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            then:
            executedAndNotSkipped(':copy')
            file('dest/a.txt').text == "1 + 2"
        }
    
        def "useful help message when property cannot be expanded"() {
            given:
            buildFile << """
                task copy (type: Copy) {
                    // two.a expects "one" to be defined
                    from('src/two/two.a')
                    into('dest')
                    expand("notused": "notused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            this.baseClassLoaderScope = baseClassLoaderScope;
            this.rootProject = parent != null ? parent.getRootProject() : this;
            this.projectDir = projectDir;
            this.buildFile = buildFile;
            this.parent = parent;
            this.name = name;
            this.state = new ProjectStateInternal();
            this.buildScriptSource = buildScriptSource;
            this.gradle = gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top