Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for edata (0.05 sec)

  1. 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)
  2. 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)
  3. .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)
  4. src/runtime/checkptr.go

    	}
    
    	// heap (must check after stack because of #35068)
    	if base, _, _ := findObject(uintptr(p), 0, 0); base != 0 {
    		return base
    	}
    
    	// data or bss
    	for _, datap := range activeModules() {
    		if datap.data <= uintptr(p) && uintptr(p) < datap.edata {
    			return datap.data
    		}
    		if datap.bss <= uintptr(p) && uintptr(p) < datap.ebss {
    			return datap.bss
    		}
    	}
    
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	ldr.SetAttrSpecial(ebss.Sym(), false)
    
    	data := ldr.CreateSymForUpdate("runtime.data", 0)
    	data.SetSize(8)
    	ldr.SetAttrSpecial(data.Sym(), false)
    
    	edata := ldr.CreateSymForUpdate("runtime.edata", 0)
    	ldr.SetAttrSpecial(edata.Sym(), false)
    
    	if ctxt.HeadType == objabi.Haix {
    		// XCOFFTOC symbols are part of .data section.
    		edata.SetType(sym.SXCOFFTOC)
    	}
    
    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. src/runtime/race.go

    	// Round data segment to page boundaries, because it's used in mmap().
    	start := ^uintptr(0)
    	end := uintptr(0)
    	if start > firstmoduledata.noptrdata {
    		start = firstmoduledata.noptrdata
    	}
    	if start > firstmoduledata.data {
    		start = firstmoduledata.data
    	}
    	if start > firstmoduledata.noptrbss {
    		start = firstmoduledata.noptrbss
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/runtime/cgocheck.go

    		return
    	}
    
    	// The type has a GC program. Try to find GC bits somewhere else.
    	for _, datap := range activeModules() {
    		if cgoInRange(src, datap.data, datap.edata) {
    			doff := uintptr(src) - datap.data
    			cgoCheckBits(add(src, -doff), datap.gcdatamask.bytedata, off+doff, size)
    			return
    		}
    		if cgoInRange(src, datap.bss, datap.ebss) {
    			boff := uintptr(src) - datap.bss
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcshared/cshared_test.go

    	}
    
    	f, err := pe.Open(objfile)
    	if err != nil {
    		t.Fatalf("pe.Open failed: %v", err)
    	}
    	defer f.Close()
    	section := f.Section(".edata")
    	if section == nil {
    		t.Skip(".edata section is not present")
    	}
    
    	// TODO: deduplicate this struct from cmd/link/internal/ld/pe.go
    	type IMAGE_EXPORT_DIRECTORY struct {
    		_                 [2]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    			if cgoIsGoPointer(pp) && !isPinned(pp) {
    				panic(errorString(msg))
    			}
    		}
    		return
    	}
    
    	for _, datap := range activeModules() {
    		if cgoInRange(p, datap.data, datap.edata) || cgoInRange(p, datap.bss, datap.ebss) {
    			// We have no way to know the size of the object.
    			// We have to assume that it might contain a pointer.
    			panic(errorString(msg))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. 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)
Back to top