Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for imageName (0.23 sec)

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

    	}
    	defer pf.Close()
    
    	var imageBase uint64
    	switch h := pf.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		imageBase = uint64(h.ImageBase)
    	case *pe.OptionalHeader64:
    		imageBase = uint64(h.ImageBase)
    	default:
    		return nil, fmt.Errorf("unknown OptionalHeader %T", pf.OptionalHeader)
    	}
    
    	var base uint64
    	if start > 0 {
    		base = start - imageBase
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/debug/buildinfo/buildinfo.go

    type peExe struct {
    	f *pe.File
    }
    
    func (x *peExe) imageBase() uint64 {
    	switch oh := x.f.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		return uint64(oh.ImageBase)
    	case *pe.OptionalHeader64:
    		return oh.ImageBase
    	}
    	return 0
    }
    
    func (x *peExe) ReadData(addr, size uint64) ([]byte, error) {
    	addr -= x.imageBase()
    	for _, sect := range x.f.Sections {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/debug/pe/file.go

    			!read(&oh32.SizeOfInitializedData) ||
    			!read(&oh32.SizeOfUninitializedData) ||
    			!read(&oh32.AddressOfEntryPoint) ||
    			!read(&oh32.BaseOfCode) ||
    			!read(&oh32.BaseOfData) ||
    			!read(&oh32.ImageBase) ||
    			!read(&oh32.SectionAlignment) ||
    			!read(&oh32.FileAlignment) ||
    			!read(&oh32.MajorOperatingSystemVersion) ||
    			!read(&oh32.MinorOperatingSystemVersion) ||
    			!read(&oh32.MajorImageVersion) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. samples/addons/kiali.yaml

          custom_secrets: []
          dns:
            config: {}
            policy: ""
          host_aliases: []
          hpa:
            api_version: autoscaling/v2
            spec: {}
          image_digest: ""
          image_name: quay.io/kiali/kiali
          image_pull_policy: IfNotPresent
          image_pull_secrets: []
          image_version: v1.85
          ingress:
            additional_labels: {}
            class_name: nginx
            override_yaml:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. build/root/Makefile

    #    $$IMAGES.  Defaults to "cos-cloud".
    #  INSTANCE_PREFIX: For REMOTE=true only.  Instances created from images will
    #    have the name "$${INSTANCE_PREFIX}-$${IMAGE_NAME}".  Defaults to "test".
    #  INSTANCE_METADATA: For REMOTE=true and running on GCE only.
    #  GUBERNATOR: For REMOTE=true only. Produce link to Gubernator to view logs.
    #    Defaults to false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    		oh.AddressOfEntryPoint = uint32(Entryvalue(ctxt) - PEBASE)
    	}
    	oh64.BaseOfCode = f.textSect.virtualAddress
    	oh.BaseOfCode = f.textSect.virtualAddress
    	oh64.ImageBase = uint64(PEBASE)
    	oh.ImageBase = uint32(PEBASE)
    	oh64.SectionAlignment = uint32(PESECTALIGN)
    	oh.SectionAlignment = uint32(PESECTALIGN)
    	oh64.FileAlignment = uint32(PEFILEALIGN)
    	oh.FileAlignment = uint32(PEFILEALIGN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top