Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,075 for buildID (0.68 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            when:
            buildId = UniqueId.generate()
            outputFile.text = "outdated"
    
            then:
            outOfDate(builder.build(), outputFilesChanged(file: [outputFile]))
        }
    
        def "failed executions are never up-to-date"() {
            def failure = new RuntimeException()
    
            when:
            def result = execute(builder.withWork { ->
                throw failure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                }
                localRepository.get().asFileTree.matching { include("**/*.module") }.forEach {
                    val content = it.readText()
                        .replace("\"buildId\":\\s+\"\\w+\"".toRegex(), "\"buildId\": \"\"")
                        .replace("\"size\":\\s+\\d+".toRegex(), "\"size\": 0")
                        .replace("\"sha512\":\\s+\"\\w+\"".toRegex(), "\"sha512\": \"\"")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/runtime/pprof/pe.go

    import "os"
    
    // peBuildID returns a best effort unique ID for the named executable.
    //
    // It would be wasteful to calculate the hash of the whole file,
    // instead use the binary name and the last modified time for the buildid.
    func peBuildID(file string) string {
    	s, err := os.Stat(file)
    	if err != nil {
    		return file
    	}
    	return file + s.ModTime().String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 536 bytes
    - Viewed (0)
  4. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

            }
            repoDir.get().asFileTree.matching { include("**/*.module") }.forEach {
                val content = it.readText()
                    .replace("\"buildId\":\\s+\"\\w+\"".toRegex(), "\"buildId\": \"\"")
                    .replace("\"size\":\\s+\\d+".toRegex(), "\"size\": 0")
                    .replace("\"sha512\":\\s+\"\\w+\"".toRegex(), "\"sha512\": \"\"")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto_other.go

    		// TODO(hyangah): make addMapping return *memMap or
    		// take a memMap struct, and get rid of addMappingEntry
    		// that takes a bunch of positional arguments.
    	}
    }
    
    func readMainModuleMapping() (start, end uint64, exe, buildID string, err error) {
    	return 0, 0, "", "", errors.New("not implemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 928 bytes
    - Viewed (0)
  6. src/cmd/link/internal/wasm/asm.go

    	}
    
    	ctxt.Out.Write([]byte{0x00, 0x61, 0x73, 0x6d}) // magic
    	ctxt.Out.Write([]byte{0x01, 0x00, 0x00, 0x00}) // version
    
    	// Add any buildid early in the binary:
    	if len(buildid) != 0 {
    		writeBuildID(ctxt, buildid)
    	}
    
    	writeTypeSec(ctxt, types)
    	writeImportSec(ctxt, hostImports)
    	writeFunctionSec(ctxt, fns)
    	writeTableSec(ctxt, fns)
    	writeMemorySec(ctxt, ldr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

            }
        }
    
        @EqualsAndHashCode
        static class CreatedBy {
            final String gradleVersion
            final String buildId
    
            CreatedBy(String gradleVersion, String buildId) {
                this.gradleVersion = gradleVersion
                this.buildId = buildId
            }
        }
    
        @EqualsAndHashCode
        static class Coords {
            final String group
            final String module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module

        "module": "producer",
        "version": "1.0",
        "attributes": {
          "org.gradle.status": "release"
        }
      },
      "createdBy": {
        "gradle": {
          "version": "5.3-20190124175634+0000",
          "buildId": "l63zt5h46neu3ahqbi73jsdqaa"
        }
      },
      "variants": [
        {
          "name": "runtime",
          "attributes": {
            "org.gradle.usage": "java-runtime"
          },
          "files": [
            {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildPathAssignmentIntegrationTest.groovy

                                def buildId = b.buildIdentifier
                                println "Build path=" + buildId.buildPath + " name=" + buildId.name
                            }
                        }
                    }
                """
                it.buildFile << """
                    subprojects {
                        // The Java plugin forces the configuration of the included builds
                        apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 09:41:26 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsersTest.groovy

        }
    
        def "understands project input"() {
            when:
            def buildId = new DefaultBuildIdentifier(Path.path(":build"))
            def projectState = Mock(ProjectState) {
                getComponentIdentifier() >> new DefaultProjectComponentIdentifier(buildId, Path.path(":id:bar"), Path.path(":bar"), "name")
            }
            def project = Mock(ProjectInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top