Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for GetData (0.29 sec)

  1. src/cmd/link/internal/arm/asm.go

    	o3 := uint32(t)                            // WORD $target
    	arch.ByteOrder.PutUint32(P, o1)
    	arch.ByteOrder.PutUint32(P[4:], o2)
    	arch.ByteOrder.PutUint32(P[8:], o3)
    	tramp.SetData(P)
    
    	if linkmode == ld.LinkExternal || ldr.SymValue(target) == 0 {
    		r, _ := tramp.AddRel(objabi.R_ADDR)
    		r.SetOff(8)
    		r.SetSiz(4)
    		r.SetSym(target)
    		r.SetAdd(offset)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	}
    
    	if err = getmsg(fd, clp, datap, &flags); err != nil {
    		return nil, nil, 0, err
    	}
    
    	if len(cl) > 0 {
    		retCl = cl[:clp.Len]
    	}
    	if len(data) > 0 {
    		retData = data[:datap.Len]
    	}
    	return retCl, retData, flags, nil
    }
    
    func IoctlSetIntRetInt(fd int, req int, arg int) (int, error) {
    	return ioctlRet(fd, req, uintptr(arg))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		for _, l := range ctxt.Library {
    			s := ldr.CreateSymForUpdate("go:link.pkghashbytes."+l.Pkg, 0)
    			s.SetType(sym.SRODATA)
    			s.SetSize(int64(len(l.Fingerprint)))
    			s.SetData(l.Fingerprint[:])
    			str := ldr.CreateSymForUpdate("go:link.pkghash."+l.Pkg, 0)
    			str.SetType(sym.SRODATA)
    			str.AddAddr(ctxt.Arch, s.Sym())
    			str.AddUint(ctxt.Arch, uint64(len(l.Fingerprint)))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/symbolbuilder.go

    // Setters for symbol properties.
    
    func (sb *SymbolBuilder) SetType(kind sym.SymKind)   { sb.kind = kind }
    func (sb *SymbolBuilder) SetSize(size int64)         { sb.size = size }
    func (sb *SymbolBuilder) SetData(data []byte)        { sb.data = data }
    func (sb *SymbolBuilder) SetOnList(v bool)           { sb.l.SetAttrOnList(sb.symIdx, v) }
    func (sb *SymbolBuilder) SetExternal(v bool)         { sb.l.SetAttrExternal(sb.symIdx, v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// and strings with formats are allowed.
    	// If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string.
    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    type CustomResourceColumnDefinition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    	o3 := uint32(0xd61f0200) // br x16
    	ctxt.Arch.ByteOrder.PutUint32(P, o1)
    	ctxt.Arch.ByteOrder.PutUint32(P[4:], o2)
    	ctxt.Arch.ByteOrder.PutUint32(P[8:], o3)
    	tramp.SetData(P)
    
    	r, _ := tramp.AddRel(objabi.R_ADDRARM64)
    	r.SetSiz(8)
    	r.SetSym(target)
    	r.SetAdd(offset)
    }
    
    // generate a trampoline to target+offset for a DYNIMPORT symbol via GOT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadpe/ldpe.go

    		}
    
    		if bld.Type() != sym.SNOPTRBSS {
    			data, err := sect.Data()
    			if err != nil {
    				return nil, err
    			}
    			state.sectdata[sect] = data
    			bld.SetData(data)
    		}
    		bld.SetSize(int64(sect.Size))
    		state.sectsyms[sect] = s
    		if sect.Name == ".rsrc" || strings.HasPrefix(sect.Name, ".rsrc$") {
    			ls.Resources = append(ls.Resources, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// and strings with formats are allowed.
    	// If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string.
    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string `json:"jsonPath" protobuf:"bytes,1,opt,name=jsonPath"`
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// and strings with formats are allowed.
    	// If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string.
    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string `json:"jsonPath" protobuf:"bytes,1,opt,name=jsonPath"`
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadelf/ldelf.go

    		case elf.SHF_ALLOC + elf.SHF_EXECINSTR:
    			sb.SetType(sym.STEXT)
    		}
    
    		if sect.name == ".got" || sect.name == ".toc" {
    			sb.SetType(sym.SELFGOT)
    		}
    		if sect.type_ == elf.SHT_PROGBITS {
    			sb.SetData(sect.base[:sect.size])
    			sb.SetExternal(true)
    		}
    
    		sb.SetSize(int64(sect.size))
    		sb.SetAlign(int32(sect.align))
    		sb.SetReadOnly(sect.readOnlyMem)
    
    		sect.sym = sb.Sym()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top