Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for asmidx (0.14 sec)

  1. architecture/networking/controllers.md

    `kube.Client` just bundles these all in one place, so we have a single object to pass around anywhere we need Kubernetes access.
    Additionally, it has a fake client variant, that does the same thing but with fake clients for use in unit tests.
    
    Aside from this, there are a few conveniences and workarounds built-in to the client to make things simpler.
    
    *All Istio Kubernetes usage should use this library and not operate on Kubernetes clients directly.*
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Bavail      uint64
    	Bresvd      uint64
    	Files       uint64
    	Ffree       uint64
    	Favail      uint64
    	Fresvd      uint64
    	Syncreads   uint64
    	Syncwrites  uint64
    	Asyncreads  uint64
    	Asyncwrites uint64
    	Fsidx       Fsid
    	Fsid        uint32
    	Namemax     uint32
    	Owner       uint32
    	Spare       [4]uint32
    	Fstypename  [32]byte
    	Mntonname   [1024]byte
    	Mntfromname [1024]byte
    }
    
    type Flock_t struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		// Turns out we won't be needing them.
    		for symIdx := range hostObjSyms {
    			if l.SymType(symIdx) == sym.SHOSTOBJ {
    				// If a symbol was marked both
    				// cgo_import_static and cgo_import_dynamic,
    				// then we want to make it cgo_import_dynamic
    				// now.
    				su := l.MakeSymbolUpdater(symIdx)
    				if l.SymExtname(symIdx) != "" && l.SymDynimplib(symIdx) != "" && !(l.AttrCgoExportStatic(symIdx) || l.AttrCgoExportDynamic(symIdx)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (d *dwctxt) lookupOrDiag(n string) loader.Sym {
    	symIdx := d.ldr.Lookup(n, 0)
    	if symIdx == 0 {
    		Exitf("dwarf: missing type: %s", n)
    	}
    	if len(d.ldr.Data(symIdx)) == 0 {
    		Exitf("dwarf: missing type (no data): %s", n)
    	}
    
    	return symIdx
    }
    
    func (d *dwctxt) dotypedef(parent *dwarf.DWDie, name string, def *dwarf.DWDie) *dwarf.DWDie {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/net/http/servemux121.go

    package http
    
    // This file implements ServeMux behavior as in Go 1.21.
    // The behavior is controlled by a GODEBUG setting.
    // Most of this code is derived from commit 08e35cc334.
    // Changes are minimal: aside from the different receiver type,
    // they mostly involve renaming functions, usually by unexporting them.
    
    // servemux121.go exists solely to provide a snapshot of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
    <aside class="main-sidebar sidebar-dark-primary">
    	<la:link href="/admin/" styleClass="brand-link text-center">
    		<span class="brand-text">
    		<c:if test="${empty param.brandName or empty param.logoPath}"><img src="${fe:url('/images/logo-head.png')}" alt="<la:message key="labels.header_brand_name" />" /></c:if
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/aenum.go

    	ASHA256MSG1
    	ASHA256MSG2
    	ASHA256RNDS2
    	ASHLB
    	ASHLL
    	ASHLQ
    	ASHLW
    	ASHLXL
    	ASHLXQ
    	ASHRB
    	ASHRL
    	ASHRQ
    	ASHRW
    	ASHRXL
    	ASHRXQ
    	ASHUFPD
    	ASHUFPS
    	ASIDT
    	ASLDTL
    	ASLDTQ
    	ASLDTW
    	ASMSWL
    	ASMSWQ
    	ASMSWW
    	ASQRTPD
    	ASQRTPS
    	ASQRTSD
    	ASQRTSS
    	ASTAC
    	ASTC
    	ASTD
    	ASTI
    	ASTMXCSR
    	ASTOSB
    	ASTOSL
    	ASTOSQ
    	ASTOSW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/cpu.go

    	AFCVTWD
    	AFCVTLD
    	AFCVTDW
    	AFCVTDL
    	AFCVTWUD
    	AFCVTLUD
    	AFCVTDWU
    	AFCVTDLU
    	AFCVTSD
    	AFCVTDS
    	AFSGNJD
    	AFSGNJND
    	AFSGNJXD
    	AFMVXD
    	AFMVDX
    
    	// 12.6: Double-Precision Floating-Point Compare Instructions
    	AFEQD
    	AFLTD
    	AFLED
    
    	// 12.7: Double-Precision Floating-Point Classify Instruction
    	AFCLASSD
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x47, 0x0, 0x0, 0, 0x0}
    	case AFMULD:
    		return &inst{0x53, 0x0, 0x0, 288, 0x9}
    	case AFMULQ:
    		return &inst{0x53, 0x0, 0x0, 352, 0xb}
    	case AFMULS:
    		return &inst{0x53, 0x0, 0x0, 256, 0x8}
    	case AFMVDX:
    		return &inst{0x53, 0x0, 0x0, -224, 0x79}
    	case AFMVSX:
    		return &inst{0x53, 0x0, 0x0, -256, 0x78}
    	case AFMVWX:
    		return &inst{0x53, 0x0, 0x0, -256, 0x78}
    	case AFMVXD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/debug/dwarf/entry.go

    		switch opcode {
    		case rleEndOfList:
    			if buf.err != nil {
    				return nil, buf.err
    			}
    			return ret, nil
    
    		case rleBaseAddressx:
    			baseIdx := buf.uint()
    			var err error
    			base, err = d.debugAddr(u, uint64(addrBase), baseIdx)
    			if err != nil {
    				return nil, err
    			}
    
    		case rleStartxEndx:
    			startIdx := buf.uint()
    			endIdx := buf.uint()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
Back to top