Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for _edata (0.13 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

        26: 0000000000404000     0 OBJECT  LOCAL  DEFAULT   24 _GLOBAL_OFFSET_TABLE_
        27: 0000000000401300    23 FUNC    GLOBAL DEFAULT   15 _ZN8Multiply8mul[...]
        28: 0000000000404060     0 NOTYPE  GLOBAL DEFAULT   25 _edata
        29: 0000000000404050     0 NOTYPE  WEAK   DEFAULT   25 data_start
        30: 0000000000402000     4 OBJECT  GLOBAL DEFAULT   17 _IO_stdin_used
        31: 0000000000401290    99 FUNC    GLOBAL DEFAULT   15 main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/runtime/os3_solaris.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    //go:cgo_export_dynamic runtime.end _end
    //go:cgo_export_dynamic runtime.etext _etext
    //go:cgo_export_dynamic runtime.edata _edata
    
    //go:cgo_import_dynamic libc____errno ___errno "libc.so"
    //go:cgo_import_dynamic libc_clock_gettime clock_gettime "libc.so"
    //go:cgo_import_dynamic libc_exit _exit "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    			Size:      0x0CF3BB,
    			Addralign: 0x01,
    		})
    	}
    
    	data := buf.Bytes()
    
    	f, err := NewFile(bytes.NewReader(data))
    	if err != nil {
    		t.Errorf("cannot create file from data: %v", err)
    	}
    	defer f.Close()
    
    	wantFileHeader := FileHeader{
    		Class:     ELFCLASS32,
    		Data:      ELFDATA2LSB,
    		Version:   EV_CURRENT,
    		OSABI:     ELFOSABI_NONE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    		etext := ldr.Lookup("runtime.etext", 0)
    		edata := ldr.Lookup("runtime.edata", 0)
    		end := ldr.Lookup("runtime.end", 0)
    		ldr.SetSymExtname(etext, "runtime.etext")
    		ldr.SetSymExtname(edata, "runtime.edata")
    		ldr.SetSymExtname(end, "runtime.end")
    		ctxt.xdefine("_etext", ldr.SymType(etext), ldr.SymValue(etext))
    		ctxt.xdefine("_edata", ldr.SymType(edata), ldr.SymValue(edata))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. .github/workflows/mint/minio-erasure.yaml

    # using nginx reverse proxy, load balancing, you can access
    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - edata1-1:/edata1
          - edata1-2:/edata2
          - edata1-3:/edata3
          - edata1-4:/edata4
    
      nginx:
        image: nginx:1.19.2-alpine
        hostname: nginx
        volumes:
          - ./nginx-1-node.conf:/etc/nginx/nginx.conf:ro
        ports:
          - "9000:9000"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/plugin.go

    			inRange(pmd.data, pmd.edata, md.data, md.edata) ||
    			inRange(pmd.types, pmd.etypes, md.types, md.etypes) {
    			println("plugin: new module data overlaps with previous moduledata")
    			println("\tpmd.text-etext=", hex(pmd.text), "-", hex(pmd.etext))
    			println("\tpmd.bss-ebss=", hex(pmd.bss), "-", hex(pmd.ebss))
    			println("\tpmd.data-edata=", hex(pmd.data), "-", hex(pmd.edata))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    			if datap.data <= dst && dst < datap.edata {
    				bulkBarrierBitmap(dst, src, size, dst-datap.data, datap.gcdatamask.bytedata)
    				return
    			}
    		}
    		for _, datap := range activeModules() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/cmd/internal/objfile/macho.go

    			sect := f.macho.Sections[s.Sect-1]
    			switch sect.Seg {
    			case "__TEXT", "__DATA_CONST":
    				sym.Code = 'R'
    			case "__DATA":
    				sym.Code = 'D'
    			}
    			switch sect.Seg + " " + sect.Name {
    			case "__TEXT __text":
    				sym.Code = 'T'
    			case "__DATA __bss", "__DATA __noptrbss":
    				sym.Code = 'B'
    			}
    		}
    		syms = append(syms, sym)
    	}
    
    	return syms, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. istioctl/pkg/multicluster/remote_secret_test.go

    	return sa
    }
    
    func makeSecret(name, caData, token string) *v1.Secret {
    	out := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   testNamespace,
    			Annotations: map[string]string{v1.ServiceAccountNameKey: testServiceAccountName},
    		},
    		Data: map[string][]byte{},
    		Type: v1.SecretTypeServiceAccountToken,
    	}
    	if len(caData) > 0 {
    		out.Data[v1.ServiceAccountRootCAKey] = []byte(caData)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  10. pkg/proxy/endpointslicecache.go

    		if pendingOk {
    			return !reflect.DeepEqual(esData, pendingData)
    		}
    
    		// If there's already an applied value, return whether or not this would
    		// change that.
    		if appliedOk {
    			return !reflect.DeepEqual(esData, appliedData)
    		}
    	}
    
    	// If this is marked for removal and does not exist in the cache, no changes
    	// are necessary.
    	if esData.remove {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top