Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for GetBase (0.14 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/fmt/scan.go

    	hexadecimalDigits = "0123456789aAbBcCdDeEfF"
    	sign              = "+-"
    	period            = "."
    	exponent          = "eEpP"
    )
    
    // getBase returns the numeric base represented by the verb and its digit string.
    func (s *ss) getBase(verb rune) (base int, digits string) {
    	s.okVerb(verb, "bdoUxXv", "integer") // sets s.err
    	base = 10
    	digits = decimalDigits
    	switch verb {
    	case 'b':
    		base = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadata.java

                return;
            }
    
            for (AdditionalVariant additionalVariant : additionalVariants) {
                String name = additionalVariant.getName();
                String baseName = additionalVariant.getBase();
                ImmutableAttributes attributes;
                ImmutableCapabilities capabilities;
                List<ModuleDependencyMetadata> dependencies;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadata.java

            for (AdditionalVariant additionalVariant : additionalVariants) {
                String name = additionalVariant.getName();
                String baseName = additionalVariant.getBase();
                ImmutableAttributes attributes;
                ImmutableCapabilities capabilities;
                List<? extends ModuleDependencyMetadata> dependencies;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

        static class OverrideCheckBaseClass {
            @Option(option = "base", description = "from base class")
            public void setBase(String value) {
            }
        }
    
        interface OverrideCheckBaseInterface {
            @Option(option = "base", description = "from base interface")
            public void setBase(String value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  8. src/cmd/internal/src/pos.go

    func (p Pos) Filename() string { return p.base.Pos().RelFilename() }
    
    // Base returns the position base.
    func (p Pos) Base() *PosBase { return p.base }
    
    // SetBase sets the position base.
    func (p *Pos) SetBase(base *PosBase) { p.base = base }
    
    // RelFilename returns the filename recorded with the position's base.
    func (p Pos) RelFilename() string { return p.base.Filename() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/lex/input.go

    	tok = in.Stack.Next()
    	if tok != '\n' {
    		in.Error("unexpected token at end of #line: ", tok)
    	}
    	pos := src.MakePos(in.Base(), uint(in.Line())+1, 1) // +1 because #line nnn means line nnn starts on next line
    	in.Stack.SetBase(src.NewLinePragmaBase(pos, file, objabi.AbsFile(objabi.WorkingDir(), file, *flags.TrimPath), uint(line), 1))
    }
    
    // #undef processing
    func (in *Input) undef() {
    	name := in.macroName()
    	if in.macros[name] == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top