Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 680 for root1 (0.08 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/ToolingApiPropertiesLoaderCrossVersionSpec.groovy

            output.contains('system_property_available in included root:            true')
            output.contains("project_property_available in included root:           ${projectPropertyAvailableInIncludedRoot()}")
            output.contains('system_property_available in root:                     true')
            output.contains('project_property_available in root:                    true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification {
        def setup(){
            settingsFile << "rootProject.name = 'root'"
        }
    
        @TargetGradleVersion(">=3.4")
        def "jdkName property from idea module model is available in the tooling API"() {
            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                allprojects {
                    apply plugin: 'idea'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

                        case ROOT:
                            id = decoder.readSmallLong();
                            root = allDependencies.get(id);
                            if (root == null) {
                                throw new IllegalStateException(String.format("Unexpected root id %s. Seen ids: %s", id, allDependencies.keySet()));
                            }
                            //root should be the last entry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":")
                modelsCreated(":a")
            }
            outputContains("creating model for root project 'root'")
            outputContains("creating model for project ':a'")
    
            when:
            executer.withArguments(ENABLE_CLI)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            }
    
            then:
            ideaModel.name == "root"
    
            when:
            executer.withArguments(ENABLE_CLI)
            fetchModel(IdeaProject)
    
            then:
            fixture.assertStateLoaded()
        }
    
        def "can fetch BasicIdeaProject model for root and re-fetch cached"() {
            settingsFile << """
                rootProject.name = 'root'
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    	// (see loop in semacquire).
    	if root.nwait.Load() == 0 {
    		return
    	}
    
    	// Harder case: search for a waiter and wake it.
    	lockWithRank(&root.lock, lockRankRoot)
    	if root.nwait.Load() == 0 {
    		// The count is already consumed by another goroutine,
    		// so no need to wake up another goroutine.
    		unlock(&root.lock)
    		return
    	}
    	s, t0, tailtime := root.dequeue(addr)
    	if s != nil {
    		root.nwait.Add(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            where:
            settings                     | display
            ""                           | "default root project name"
            "rootProject.name='someLib'" | "configured root project name"
        }
    
        @ToBeFixedForIsolatedProjects(because = "Configure projects from root")
        def "includes build identifier in dependency resolution results with #display"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            then:
            assertTransformed("root.blue", "root.additional.blue", "a.additional.blue", "a.jar")
            outputContains("files = [root.additional.blue.green, root.blue.green, a.jar.green, a.additional.blue.green]")
            outputContains("artifacts = [root.additional.blue.green (root.additional.blue), root.blue.green (root.blue), a.jar.green (project :a), a.additional.blue.green (a.additional.blue)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/InMemoryResolutionResultBuilder.java

        }
    
        @Override
        public void finish(RootGraphNode root) {
            Long resultId = root.getOwner().getResultId();
            this.root = resolutionResultBuilder.getRoot(resultId);
            this.requestAttributes = root.getResolveState().getAttributes();
        }
    
        public MinimalResolutionResult getResolutionResult() {
            if (requestAttributes == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

                }
            '''
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'
            """
    
            expect:
            def result = fails()
            result.assertHasDescription("A problem occurred evaluating root project 'root'.")
            failure.assertHasCause("Cannot run Project.afterEvaluate(Closure) when the project is already evaluated.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top