Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for umagic (0.4 sec)

  1. src/net/http/request.go

    	if !ok {
    		return nil, ErrMissingBoundary
    	}
    	return multipart.NewReader(r.Body, boundary), nil
    }
    
    // isH2Upgrade reports whether r represents the http2 "client preface"
    // magic string.
    func (r *Request) isH2Upgrade() bool {
    	return r.Method == "PRI" && len(r.Header) == 0 && r.URL.Path == "*" && r.Proto == "HTTP/2.0"
    }
    
    // Return value if nonempty, def otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Zero [3] ptr mem) =>
    	(MOVBstore [2] ptr (MOVWconst [0])
    		(MOVBstore [1] ptr (MOVWconst [0])
    			(MOVBstore [0] ptr (MOVWconst [0]) mem)))
    
    // Medium zeroing uses a duff device
    // 4 and 128 are magic constants, see runtime/mkduff.go
    (Zero [s] {t} ptr mem)
    	&& s%4 == 0 && s > 4 && s <= 512
    	&& t.Alignment()%4 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [4 * (128 - s/4)] ptr (MOVWconst [0]) mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    	//     printf -v x "%04x" i;
    	//     echo "int var_$x __attribute__((section(\"section_$x\"))) = $i;"
    	//   done > y.c
    	// 2. compile: gcc -c y.c -m32
    	//
    	// $readelf -h y.o
    	// ELF Header:
    	//   Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
    	//   Class:                             ELF32
    	//   Data:                              2's complement, little endian
    	//   Version:                           1 (current)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    	return int(sh.Size)
    }
    
    // The race detector can't handle ASLR (address space layout randomization).
    // ASLR is on by default for NetBSD, so we turn the ASLR off explicitly
    // using a magic elf Note when building race binaries.
    
    func elfnetbsdpax(sh *ElfShdr, startva uint64, resoff uint64) int {
    	n := int(Rnd(4, 4) + Rnd(4, 4))
    	return elfnote(sh, startva, resoff, n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    	q := uintptr((uint64(n) * uint64(s.divMul)) >> 32)
    
    	if doubleCheck && q != n/s.elemsize {
    		println(n, "/", s.elemsize, "should be", n/s.elemsize, "but got", q)
    		throw("bad magic division")
    	}
    	return q
    }
    
    // nosplit, because it is called by other nosplit code like findObject
    //
    //go:nosplit
    func (s *mspan) objIndex(p uintptr) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    		TBSCertificate:     c,
    		SignatureAlgorithm: algorithmIdentifier,
    		SignatureValue:     asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
    	})
    }
    
    // pemCRLPrefix is the magic string that indicates that we have a PEM encoded
    // CRL.
    var pemCRLPrefix = []byte("-----BEGIN X509 CRL")
    
    // pemType is the type of a PEM encoded CRL.
    var pemType = "X509 CRL"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    TEXT runtime·retpolineCX(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(1)
    TEXT runtime·retpolineDX(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(2)
    TEXT runtime·retpolineBX(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(3)
    /* SP is 4, can't happen / magic encodings */
    TEXT runtime·retpolineBP(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(5)
    TEXT runtime·retpolineSI(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(6)
    TEXT runtime·retpolineDI(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	// It is not a standard go command flag; use os.Getenv, not cfg.Getenv.
    	if os.Getenv("GO_GCFLAGS") != "" {
    		fmt.Fprintf(os.Stderr, "testing: warning: no tests to run\n") // magic string for cmd/go
    		fmt.Printf("cmd/go test is not compatible with $GO_GCFLAGS being set\n")
    		fmt.Printf("SKIP\n")
    		return
    	}
    
    	flag.Parse()
    
    	if *proxyAddr != "" {
    		StartProxy()
    		select {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top