Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for __data (0.25 sec)

  1. src/encoding/xml/marshal.go

    // writing nothing. Marshal handles all other data by writing one or more XML
    // elements containing the data.
    //
    // The name for the XML elements is taken from, in order of preference:
    //   - the tag on the XMLName field, if the data is a struct
    //   - the value of the XMLName field of type [Name]
    //   - the tag of the struct field used to obtain the data
    //   - the name of the struct field used to obtain the data
    //   - the name of the marshaled type
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    		if md.bad {
    			continue
    		}
    		*modules = append(*modules, md)
    		if md.gcdatamask == (bitvector{}) {
    			scanDataSize := md.edata - md.data
    			md.gcdatamask = progToPointerMask((*byte)(unsafe.Pointer(md.gcdata)), scanDataSize)
    			scanBSSSize := md.ebss - md.bss
    			md.gcbssmask = progToPointerMask((*byte)(unsafe.Pointer(md.gcbss)), scanBSSSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/cmd/link/internal/amd64/asm.go

    			// have symbol
    			// turn MOVQ of GOT entry into LEAQ of symbol itself
    			sdata := ldr.Data(s)
    			if r.Off() < 2 || sdata[r.Off()-2] != 0x8b {
    				ldr.Errorf(s, "unexpected GOT_LOAD reloc for non-dynamic symbol %s", ldr.SymName(targ))
    				return false
    			}
    
    			su := ldr.MakeSymbolUpdater(s)
    			su.MakeWritable()
    			sdata = su.Data()
    			sdata[r.Off()-2] = 0x8d
    			su.SetRelocType(rIdx, objabi.R_PCREL)
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/encoding/xml/read.go

    	"strings"
    )
    
    // BUG(rsc): Mapping between XML elements and data structures is inherently flawed:
    // an XML element is an order-dependent collection of anonymous
    // values, while a data structure is an order-independent collection
    // of named values.
    // See [encoding/json] for a textual representation more suitable
    // to data structures.
    
    // Unmarshal parses the XML-encoded data and stores the result in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    			return nil, true, fmt.Errorf("error parsing root-ca-file at %s: %v", controllerContext.ComponentConfig.SAController.RootCAFile, err)
    		}
    	} else {
    		rootCA = rootClientBuilder.ConfigOrDie("tokens-controller").CAData
    	}
    
    	tokenGenerator, err := serviceaccount.JWTTokenGenerator(serviceaccount.LegacyIssuer, privateKey)
    	if err != nil {
    		return nil, false, fmt.Errorf("failed to build token generator: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    		}
    	}
    }
    
    // addSEH adds SEH information to the COFF file f.
    func (f *peFile) addSEH(ctxt *Link) {
    	// .pdata section can exist without the .xdata section.
    	// .xdata section depends on the .pdata section.
    	if Segpdata.Length == 0 {
    		return
    	}
    	d := pefile.addSection(".pdata", int(Segpdata.Length), int(Segpdata.Length))
    	d.characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm64/asm.go

    			// have symbol
    			// turn MOVD sym@GOT (adrp+ldr) into MOVD $sym (adrp+add)
    			data := ldr.Data(s)
    			off := r.Off()
    			if int(off+3) >= len(data) {
    				ldr.Errorf(s, "unexpected GOT_LOAD reloc for non-dynamic symbol %s", ldr.SymName(targ))
    				return false
    			}
    			o := target.Arch.ByteOrder.Uint32(data[off:])
    			su := ldr.MakeSymbolUpdater(s)
    			switch {
    			case (o>>24)&0x9f == 0x90: // adrp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
Back to top