Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetBase (0.11 sec)

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

    		return start - *stextOffset, true
    	}
    	return 0, false
    }
    
    // GetBase determines the base address to subtract from virtual
    // address to get symbol table address. For an executable, the base
    // is 0. Otherwise, it's a shared library, and the base is the
    // address where the mapping starts. The kernel needs special handling.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

                variantsByName = Collections.emptyMap();
            }
            for (AdditionalVariant additionalVariant : variantMetadataRules.getAdditionalVariants()) {
                String baseName = additionalVariant.getBase();
                VariantGraphResolveMetadata base = null;
                if (baseName != null) {
                    if (variants.isPresent()) {
                        base = variantsByName.get(baseName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// value until we have a sample address for this mapping, so that we can
    	// correctly identify the associated program segment that is needed to compute
    	// the base.
    	if _, err := elfexec.GetBase(&ef.FileHeader, elfexec.FindTextProgHeader(ef), kernelOffset, start, limit, offset); err != nil {
    		return nil, fmt.Errorf("could not identify base for %s: %v", name, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top