Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 441 for Builds (0.12 sec)

  1. src/cmd/dist/build.go

    	// in the binaries, while toolchain2 does. In non-release builds, the
    	// toolchain's build IDs feed into constructing the build IDs of built targets,
    	// so in non-release builds, everything now looks out-of-date due to
    	// toolchain2 having build IDs - that is, due to the go command seeing
    	// that there are new compilers. In release builds, the toolchain's reported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/internal/goexperiment/flags.go

    // sets the default experiments for binaries built with the tool
    // chain; or it can be set at build time. GOEXPERIMENT can also be set
    // to "none", which disables any experiments that were enabled at
    // make.bash time.
    //
    // Experiments are exposed to the build in the following ways:
    //
    // - Build tag goexperiment.x is set if experiment x (lower case) is
    // enabled.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                    }
                }
    
                build.dependsOn resolve
    
                logger.lifecycle('from build.gradle')
    
                gradle.taskGraph.whenReady{
                    logger.warn('warning from taskgraph')
                }
            """
    
            when:
            succeeds("build", '-I', 'init/init.gradle')
    
            then:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/apis.go

    	// moment we go through and zero out just the slots in the array
    	// corresponding to the counter values. We do this to avoid the
    	// following bad scenario: suppose that a user builds their Go
    	// program with "-cover", and that program has a function (call it
    	// main.XYZ) that invokes ClearCounters:
    	//
    	//     func XYZ() {
    	//       ... do some stuff ...
    	//       coverage.ClearCounters()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

                descriptor.dependencies == [firstTransformOperation.descriptor] as Set
                successful
            }
        }
    
        def "reports transform progress events for included builds"() {
            given:
            withFileSizerTransform()
            settingsFile.moveToDirectory(file('included'))
            buildFile.moveToDirectory(file('included'))
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeScopeServices.java

    import org.gradle.internal.service.scopes.GradleModuleServices;
    import org.gradle.internal.service.scopes.Scope;
    
    import java.util.List;
    
    /**
     * Contains the singleton services for a single build tree which consists of one or more builds.
     */
    public class BuildTreeScopeServices implements ServiceRegistrationProvider {
        private final BuildInvocationScopeId buildInvocationScopeId;
        private final BuildTreeState buildTree;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def shouldCheckForDeprecationWarnings(){
            false
        }
    
        def "builds the model even if idea plugin not applied"() {
    
            buildFile.text = '''
    apply plugin: 'java'
    description = 'this is a project'
    '''
            settingsFile.text = 'rootProject.name = \"test project\"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

            fun of(builder: BindingsBuilder.() -> Unit) = BindingsBuilder(emptyList()).apply(builder).build()
        }
    
        /**
         * Builds a new set of bindings based on the current bindings plus any bindings created via the given builder.
         */
        fun append(builder: BindingsBuilder.() -> Unit) = BindingsBuilder(bindings).apply(builder).build()
    
        fun build() = BindingsBackedCodec(bindings)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    					}
    
    					// Poison a.Target to catch uses later in the build.
    					a.Target = "DO NOT USE - main build pseudo-cache Target"
    					a.built = "DO NOT USE - main build pseudo-cache built"
    					if a.json != nil {
    						a.json.BuildID = a.buildID
    					}
    					return true
    				}
    				// Otherwise restore old build ID for main build.
    				a.buildID = oldBuildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top