Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,418 for buildID (0.28 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/ProjectFactoryTest.groovy

        def dependencyResolutionManagement = Mock(DependencyResolutionManagementInternal)
    
        def setup() {
            owner.buildIdentifier >> buildId
        }
    
        def "creates a project with build script"() {
            def buildFile = tmpDir.createFile("build.gradle")
            def projectDir = tmpDir.createFile("project")
    
            given:
            projectDescriptor.name >> "name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:41:06 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/catalog/repo/com/mycompany/catalog/1.0/catalog-1.0.module

        "module": "catalog",
        "version": "1.0",
        "attributes": {
          "org.gradle.status": "release"
        }
      },
      "createdBy": {
        "gradle": {
          "version": "6.8-20201112074858+0000",
          "buildId": "eu4qxlq4v5cejjzia42b7kmruq"
        }
      },
      "variants": [
        {
          "name": "versionCatalogElements",
          "attributes": {
            "org.gradle.category": "platform",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1015 bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return &fileNM{file: file{
    			b:       b,
    			name:    name,
    			buildID: buildID,
    			m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    		}}, nil
    	}
    	return &fileAddr2Line{file: file{
    		b:       b,
    		name:    name,
    		buildID: buildID,
    		m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    	}}, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    func adjacent(m1, m2 *Mapping) bool {
    	if m1.File != "" && m2.File != "" {
    		if m1.File != m2.File {
    			return false
    		}
    	}
    	if m1.BuildID != "" && m2.BuildID != "" {
    		if m1.BuildID != m2.BuildID {
    			return false
    		}
    	}
    	if m1.Limit != m2.Start {
    		return false
    	}
    	if m1.Offset != 0 && m2.Offset != 0 {
    		offset := m1.Offset + (m1.Limit - m1.Start)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGradleServices.java

            StartParameter startParameter,
            TimeoutHandler timeoutHandler,
            ValidateStep.ValidationWarningRecorder validationWarningRecorder,
            VirtualFileSystem virtualFileSystem
        ) {
            UniqueId buildId = buildInvocationScopeId.getId();
            Supplier<OutputsCleaner> skipEmptyWorkOutputsCleanerSupplier = () -> new OutputsCleaner(deleter, buildOutputCleanupRegistry::isOutputOwnedByBuild, buildOutputCleanupRegistry::isOutputOwnedByBuild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top