Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for svc4 (0.17 sec)

  1. src/debug/elf/elf.go

    	EI_DATA       = 5  /* Data format. */
    	EI_VERSION    = 6  /* ELF format version. */
    	EI_OSABI      = 7  /* Operating system / ABI identification */
    	EI_ABIVERSION = 8  /* ABI version */
    	EI_PAD        = 9  /* Start of padding (per SVR4 ABI). */
    	EI_NIDENT     = 16 /* Size of e_ident array. */
    )
    
    // Initial magic number for ELF files.
    const ELFMAG = "\177ELF"
    
    // Version is found in Header.Ident[EI_VERSION] and Header.Version.
    type Version byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            },
            "subdomain": {
              "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
              "type": "string"
            },
            "terminationGracePeriodSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		r := int(p.Reg)
    		if r == obj.REG_NONE {
    			r = int(p.To.Reg)
    		}
    		o1 |= (uint32(p.From.Reg&31) << 16) | (uint32(r&31) << 5) | uint32(p.To.Reg&31)
    
    	case 10: /* brk/hvc/.../svc [$con] */
    		o1 = c.opimm(p, p.As)
    
    		if p.From.Type != obj.TYPE_NONE {
    			o1 |= uint32((p.From.Offset & 0xffff) << 5)
    		}
    
    	case 11: /* dword */
    		c.aclass(&p.To)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top