Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for buildA (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            if (project.getProjectPath().equals(Path.ROOT)) {
                // Project is the root of a build, so include the root projects of any builds nested under that build
                buildRegistry.visitBuilds(build -> {
                    if (build.isImportableBuild() && build.isProjectsLoaded()) {
                        ProjectState rootProject = build.getProjects().getRootProject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

            @Override
            public WorkNodeAction getPreExecutionAction() {
                // Before resolving, need to determine the full set of upstream dependencies that need to be built.
                // The full set is usually known when the work graph is built. However, in certain cases where a project dependency conflicts with an external dependency, this is not known
                // until the full graph resolution, which can happen at execution time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                ImmutableList.Builder<LocalOriginDependencyMetadata> dependencies = ImmutableList.builder();
                ImmutableSet.Builder<LocalFileDependencyMetadata> files = ImmutableSet.builder();
                ImmutableList.Builder<ExcludeMetadata> excludes = ImmutableList.builder();
    
                configurationsProvider.visitAll(config -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            state.getConfiguration("child2").metadata.dependencies*.source == [dependency1]
            state.getConfiguration("other").metadata.dependencies.isEmpty()
        }
    
        def "builds and caches exclude rules for a configuration"() {
            given:
            def conf = dependencyScope("conf")
            def child = resolvable("child", [conf])
    
            conf.exclude([group: "group1", module: "module1"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       (Template Engines) for details.
    #
    #       (An example invocation of this template is from
    #       https://github.com/gradle/gradle/blob/HEAD/subprojects/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java
    #       within the Gradle project, which builds "gradlew".)
    # */ %>
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    ##############################################################################
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "notCacheableByDefault"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "unspecified"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "noOutputs"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            "consuming descendant" | 'build/dir'    | "dir"      | "build/dir/sub/output.txt" | "build/dir/sub/output.txt"
        }
    
        def "ignores missing dependency if there is an #relation relation in the other direction"() {
            def sourceDir = "src"
            file(sourceDir).createDir()
            def outputDir = "build/output"
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            withIncludedBuild("second")
            buildFile << """
                buildscript {
                    dependencies {
                        classpath(files("./first/build/classes/java/main"))
                        classpath(files("./second/build/classes/java/main"))
                    }
                }
            """
    
            when:
            executer.inDirectory(file("first")).withTasks("classes").run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. pilot/pkg/xds/bench_test.go

    		l := s.ConfigGen.BuildListeners(proxy, s.PushContext())
    		routeNames := xdstest.ExtractRoutesFromListeners(l)
    		return &model.WatchedResource{ResourceNames: routeNames}
    	}
    	return nil
    }
    
    // Setup test builds a mock test environment. Note: push context is not initialized, to be able to benchmark separately
    // most should just call setupAndInitializeTest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. api/maven-api-plugin/src/main/mdo/plugin.mdo

            <field xml.format="((PluginDescriptor.Builder) context.peekLast()).build().getId() + &quot;:&quot; + mojoDescriptor.build().getGoal()">
              <name>id</name>
              <version>2.0.0+</version>
              <type>String</type>
              <description>the id of the mojo, based on the goal name</description>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top