Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,075 for buildID (0.34 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	Name() string
    
    	// ObjAddr returns the objdump (linker) address corresponding to a runtime
    	// address, and an error.
    	ObjAddr(addr uint64) (uint64, error)
    
    	// BuildID returns the GNU build ID of the file, or an empty string.
    	BuildID() string
    
    	// SourceLine reports the source line information for a given
    	// address in the file. Due to inlining, the source line information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildProjectDependencyConflictResolutionIntegrationTest.groovy

        }
    
        @Override
        void moduleDefinition(String name, String definition) {
            buildTestFixture.populate(name) {
                buildFile << definition
                buildFile << checkHelper(buildId, projectPath)
            }
        }
    
        @Override
        boolean isAutoDependencySubstitution() {
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                }
                // Compatible daemon was found, try it
                try {
                    Build build = new Build(buildId, connection.getDaemon().getToken(), action, requestContext.getClient(), requestContext.getStartTime(), requestContext.isInteractive(), parameters);
                    return executeBuild(build, connection, requestContext.getCancellationToken(), requestContext.getEventConsumer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/internal/objabi/flag.go

    	// for releases, but during development we include the full
    	// build ID of the binary, so that if the compiler is changed and
    	// rebuilt, we notice and rebuild all packages.
    	if s == "full" {
    		if strings.HasPrefix(buildcfg.Version, "devel") {
    			p += " buildID=" + buildID
    		}
    	}
    
    	fmt.Printf("%s version %s%s\n", name, buildcfg.Version, p)
    	os.Exit(0)
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		p1 := a1.Package
    		if p1 != nil {
    			if a1.built != "" || a1.buildID != "" {
    				buildID := a1.buildID
    				if buildID == "" {
    					buildID = b.buildID(a1.built)
    				}
    				fmt.Fprintf(h, "packagefile %s=%s\n", p1.ImportPath, contentID(buildID))
    			}
    			// Because we put package main's full action ID into the binary's build ID,
    			// we must also put the full action ID into the binary's action ID hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top