Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for buildC (0.09 sec)

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

            outputContains build.expectedPropertyOutput()
            outputDoesNotContain "GradleProperties has not been loaded yet."
    
            where:
            build << GradlePropertiesIncludedBuildFixture.builds()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19184")
        def "system properties declared in properties of composite build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                println "user home dir: " + gradle.gradleUserHomeDir
                println "build script code source: " + getClass().protectionDomain.codeSource.location
            '''
    
            when:
            run 'otherBuild'
    
            then:
            output.contains("user home dir: $dir")
            output.contains("build script code source: ${dir.toURI()}")
        }
    
        def "nested build can have buildSrc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    		if cachedCluster == nil {
    			allFound = false
    		}
    		res = append(res, cachedCluster)
    	}
    	return res, allFound
    }
    
    // build does any final build operations needed, like marshaling etc.
    func (mc *clusterWrapper) build() *cluster.Cluster {
    	if mc == nil {
    		return nil
    	}
    	// Marshall Http Protocol options if they exist.
    	if mc.httpProtocolOptions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    		}
    	}
    
    	return nil
    }
    
    func (configgen *ConfigGeneratorImpl) buildGatewayListeners(builder *ListenerBuilder) *ListenerBuilder {
    	if builder.node.MergedGateway == nil {
    		log.Debugf("buildGatewayListeners: no gateways for router %v", builder.node.ID)
    		return builder
    	}
    
    	mergedGateway := builder.node.MergedGateway
    	log.Debugf("buildGatewayListeners: gateways after merging: %v", mergedGateway)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top