Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for _edata (0.19 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/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)
  5. 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)
  6. 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)
  7. src/cmd/link/internal/ld/symtab.go

    	ctxt.xdefine("runtime.enoptrdata", sym.SNOPTRDATA, 0)
    	ctxt.xdefine("runtime.data", sym.SDATA, 0)
    	ctxt.xdefine("runtime.edata", sym.SDATA, 0)
    	ctxt.xdefine("runtime.bss", sym.SBSS, 0)
    	ctxt.xdefine("runtime.ebss", sym.SBSS, 0)
    	ctxt.xdefine("runtime.noptrbss", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.enoptrbss", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.covctrs", sym.SNOPTRBSS, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticdata/data.go

    	}
    	size := info.Size()
    	if size <= 1*1024 {
    		data, err := io.ReadAll(f)
    		if err != nil {
    			return nil, 0, err
    		}
    		if int64(len(data)) != size {
    			return nil, 0, fmt.Errorf("file changed between reads")
    		}
    		var sym *obj.LSym
    		if readonly {
    			sym = StringSym(pos, string(data))
    		} else {
    			sym = slicedata(pos, string(data))
    		}
    		if len(hash) > 0 {
    			sum := notsha256.Sum256(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. istioctl/pkg/multicluster/remote_secret.go

    				multicluster.MultiClusterSecretLabel: "true",
    			},
    		},
    		Data: map[string][]byte{
    			key: data.Bytes(),
    		},
    	}
    	return out, nil
    }
    
    func createBaseKubeconfig(caData []byte, clusterName, server string) *api.Config {
    	return &api.Config{
    		Clusters: map[string]*api.Cluster{
    			clusterName: {
    				CertificateAuthorityData: caData,
    				Server:                   server,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top