Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,418 for buildID (0.13 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/java-library-with-excludes.module

            "version": "1.9",
            "attributes": {
                "org.gradle.status": "release"
            }
        },
        "createdBy": {
            "gradle": {
                "version": "4.5-20171204230000+0000",
                "buildId": "mmkppe3smvbgbhp5yeotxkaweq"
            }
        },
        "variants": [
            {
                "name": "runtime",
                "attributes": {
                    "org.gradle.usage": "java-runtime"
                },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/internal/profile/merge.go

    	size = size - (size % mapsizeRounding)
    	key := mappingKey{
    		size:   size,
    		offset: m.Offset,
    	}
    
    	switch {
    	case m.BuildID != "":
    		key.buildIDOrFile = m.BuildID
    	case m.File != "":
    		key.buildIDOrFile = m.File
    	default:
    		// A mapping containing neither build ID nor file name is a fake mapping. A
    		// key with empty buildIDOrFile is used for fake mappings so that they are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  3. src/runtime/pprof/proto_windows.go

    			0,
    			exe,
    			peBuildID(exe),
    			false,
    		)
    		err = windows.Module32Next(snap, &module)
    	}
    }
    
    func readMainModuleMapping() (start, end uint64, exe, buildID string, err error) {
    	exe, err = os.Executable()
    	if err != nil {
    		return 0, 0, "", "", err
    	}
    	snap, err := createModuleSnapshot()
    	if err != nil {
    		return 0, 0, "", "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/symbolz/symbolz.go

    			continue
    		}
    		// Skip well-known system mappings.
    		if m.Unsymbolizable() {
    			continue
    		}
    		mappingSources := sources[m.File]
    		if m.BuildID != "" {
    			mappingSources = append(mappingSources, sources[m.BuildID]...)
    		}
    		for _, source := range mappingSources {
    			if symz := symbolz(source.Source); symz != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:18:01 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

            this.flakinessDataProvider = flakinessDataProvider;
            this.executionDataProvider = executionDataProvider;
        }
    
        public static String getTeamCityWebUrlFromBuildId(String buildId) {
            return "https://builds.gradle.org/viewLog.html?buildId=" + buildId;
        }
    
        protected abstract class TableHtml extends MetricsHtml {
            AtomicInteger counter = new AtomicInteger();
    
            public TableHtml(Writer writer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    }
    
    // GetBuildID returns the GNU build-ID for an ELF binary.
    //
    // If no build-ID was found but the binary was read without error, it returns
    // (nil, nil).
    func GetBuildID(f *elf.File) ([]byte, error) {
    	findBuildID := func(notes []elfNote) ([]byte, error) {
    		var buildID []byte
    		for _, note := range notes {
    			if note.Name == "GNU" && note.Type == noteTypeGNUBuildID {
    				if buildID == nil {
    					buildID = note.Desc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.go

    }
    
    // BuildActionID returns the action ID section of a's build ID.
    func (a *Action) BuildActionID() string { return actionID(a.buildID) }
    
    // BuildContentID returns the content ID section of a's build ID.
    func (a *Action) BuildContentID() string { return contentID(a.buildID) }
    
    // BuildID returns a's build ID.
    func (a *Action) BuildID() string { return a.buildID }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/runtime/pprof/vminfo_darwin.go

    }
    
    // machVMInfo uses the mach_vm_region region system call to add mapping entries
    // for the text region of the running process.
    func machVMInfo(addMapping func(lo, hi, offset uint64, file, buildID string)) bool {
    	added := false
    	var addr uint64 = 0x1
    	for {
    		var memRegionSize uint64
    		var info machVMRegionBasicInfoData
    		// Get the first address and page size.
    		kr := mach_vm_region(
    			&addr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_modcache.txt

    # the 'std' tests would change globally.
    
    ! go test -fuzz . encoding/json
    stderr '^cannot use -fuzz flag on package outside the main module$'
    
    ! go test -fuzz . cmd/buildid
    stderr '^cannot use -fuzz flag on package outside the main module$'
    
    
    -- go.mod --
    module example.com/m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludesMultiProjectProjectDependencyConflictResolutionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.build.BuildTestFile
    import org.gradle.integtests.resolve.AbstractProjectDependencyConflictResolutionIntegrationSpec
    import org.gradle.internal.build.BuildState
    import org.gradle.test.fixtures.file.TestFile
    
    /**
     * This is a variation of {@link org.gradle.integtests.resolve.MultiProjectProjectDependencyConflictResolutionIntegrationTest}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 16 07:51:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
Back to top