Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GetBase (0.19 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. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

              op.getOperation()->getOperand(to));
        }
        BitVector operands_to_erase(op->getNumOperands());
        int args_start = op->getNumOperands()
                             ? op.getArgOperands().getBase()->getOperandNumber()
                             : 0;
        operands_to_erase |= args_to_erase.lookup(func);
        operands_to_erase <<= args_start;
        op->eraseOperands(operands_to_erase);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. 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)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    		return x.OwnerName
    	}
    	return ""
    }
    
    func (x *Values) GetMeshConfig() *structpb.Value {
    	if x != nil {
    		return x.MeshConfig
    	}
    	return nil
    }
    
    func (x *Values) GetBase() *BaseConfig {
    	if x != nil {
    		return x.Base
    	}
    	return nil
    }
    
    func (x *Values) GetIstiodRemote() *IstiodRemoteConfig {
    	if x != nil {
    		return x.IstiodRemote
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top