Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 180 for _edata (0.72 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/debug/elf/symbols_test.go

    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "_end",
    			Info:    0x10,
    			Other:   0x0,
    			Section: 0xFFF1,
    			Value:   0x6008A0,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "_edata",
    			Info:    0x10,
    			Other:   0x0,
    			Section: 0xFFF1,
    			Value:   0x600898,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "main",
    			Info:    0x12,
    			Other:   0x0,
    			Section: 0xD,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. .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)
  7. cmd/config-encrypted_test.go

    		SecretKey: "minio1234",
    	}
    
    	data := []byte(`config data`)
    	edata1, err := madmin.EncryptData(cred1.String(), data)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	edata2, err := madmin.EncryptData(cred2.String(), data)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	tests := []struct {
    		edata   []byte
    		cred    auth.Credentials
    		success bool
    	}{
    		{edata1, cred1, true},
    		{edata2, cred2, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_perm.txt

    go list ./...
    ! stdout _data
    
    # skip in conditions where chmod 0 may not work.
    # plan9 should be fine, but copied from list_perm.txt unchanged.
    [root] skip
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # go list should work with unreadable _data directory.
    chmod 0 _data
    go list ./...
    ! stdout _data
    
    -- go.mod --
    module m
    
    -- x.go --
    package m
    
    -- _data/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 412 bytes
    - Viewed (0)
  9. 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)
  10. src/debug/macho/file_test.go

    			{"__eh_frame", "__TEXT", 0x100000fb8, 0x48, 0xfb8, 0x3, 0x0, 0x0, 0x6000000b},
    			{"__data", "__DATA", 0x100001000, 0x1c, 0x1000, 0x3, 0x0, 0x0, 0x0},
    			{"__dyld", "__DATA", 0x100001020, 0x38, 0x1020, 0x3, 0x0, 0x0, 0x0},
    			{"__la_symbol_ptr", "__DATA", 0x100001058, 0x10, 0x1058, 0x2, 0x0, 0x0, 0x7},
    		},
    		nil,
    	},
    	{
    		"testdata/gcc-amd64-darwin-exec-debug.base64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top