Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,418 for buildID (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/GradleFileModuleAdapter.groovy

                        // report lastModified, but file size would change so we would detect it!
                        padding "-" * publishId
    
                        // add a random build id to make sure file changes
                        buildId "$buildId"
                    }
                }
                component {
                    if (printComponentGAV) {
                        group this.group
                        module this.module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho_update_uuid.go

    // difficult/impossible to support reproducible builds. Since we try
    // hard to maintain build reproducibility for Go, the APIs here
    // compute a new UUID (based on the Go build ID) and write it to the
    // final executable generated by the external linker.
    
    import (
    	"cmd/internal/notsha256"
    	"debug/macho"
    	"io"
    	"os"
    	"unsafe"
    )
    
    // uuidFromGoBuildId hashes the Go build ID and returns a slice of 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/internal/buildid/note.go

    	return nil, nil
    }
    
    var elfGoNote = []byte("Go\x00\x00")
    var elfGNUNote = []byte("GNU\x00")
    
    // The Go build ID is stored in a note described by an ELF PT_NOTE prog
    // header. The caller has already opened filename, to get f, and read
    // at least 4 kB out, in data.
    func readELF(name string, f *os.File, data []byte) (buildid string, err error) {
    	// Assume the note content is in the data, already read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			continue
    		}
    		if m.BuildID == "" {
    			if u, err := url.Parse(m.File); err == nil && u.IsAbs() && strings.Contains(strings.ToLower(u.Scheme), "http") {
    				// Skip mappings pointing to a source URL
    				continue
    			}
    		}
    
    		name := filepath.Base(m.File)
    		if m.BuildID != "" {
    			name += fmt.Sprintf(" (build ID %s)", m.BuildID)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/boolean-attributes.module

    {
        "formatVersion": "1.0",
        "builtBy": { "gradle": { "version": "123", "buildId": "abc" } },
        "variants": [
            {
                "name": "api",
                "attributes": { "usage": "compile", "debuggable": true, "testable": false }
            }
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 260 bytes
    - Viewed (0)
  6. src/runtime/pprof/proto.go

    		// enter the mappings into b.mem in the first place.
    
    		buildID, _ := elfBuildID(file)
    		addMapping(lo, hi, offset, file, buildID)
    	}
    }
    
    func (b *profileBuilder) addMapping(lo, hi, offset uint64, file, buildID string) {
    	b.addMappingEntry(lo, hi, offset, file, buildID, false)
    }
    
    func (b *profileBuilder) addMappingEntry(lo, hi, offset uint64, file, buildID string, fake bool) {
    	b.mem = append(b.mem, memMap{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

                new ScenarioBuildResultData(
                    scenarioName: it.name,
                    scenarioClass: it.className,
                    testProject: testProject,
                    webUrl: TC_URL + buildId,
                    teamCityBuildId: buildId,
                    agentName: agentName,
                    status: (it.errors || it.failures) ? "FAILURE" : "SUCCESS",
                    testFailure: collectFailures(it))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTest.groovy

            services.add(Stub(BuildTreeWorkGraphController))
            _ * buildTree.services >> services
    
            def buildId = Stub(BuildIdentifier) {
                buildPath >> Path.path(":a:b:c")
            }
            build = new DefaultIncludedBuild(buildId, buildDefinition, false, owningBuild, buildTree, Mock(Instantiator))
        }
    
        def "creates a foreign id for projects"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 22 14:22:44 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/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)
  10. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionEngineFactory.java

     * being very slow with deeply nested constructor calls in Groovy source files.
     */
    public class TestExecutionEngineFactory {
        public static ExecutionEngine createExecutionEngine(
            UniqueId buildId,
            BuildCacheController buildCacheController,
            BuildOperationRunner buildOperationRunner,
            ClassLoaderHierarchyHasher classloaderHierarchyHasher,
            Deleter deleter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top