Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GetReq (0.17 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    	frontendClient := frontend.Client()
    
    	getReq, _ := http.NewRequest("GET", frontend.URL, nil)
    	getReq.Host = "some-name"
    	getReq.Header.Set("Connection", "close, TE")
    	getReq.Header.Add("Te", "foo")
    	getReq.Header.Add("Te", "bar, trailers")
    	getReq.Header.Set("Proxy-Connection", "should be deleted")
    	getReq.Header.Set("Upgrade", "foo")
    	getReq.Close = true
    	res, err := frontendClient.Do(getReq)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_amd64.s

    	MOVL	new+12(FP), CX
    	LOCK
    	CMPXCHGL	CX, 0(BX)
    	SETEQ	ret+16(FP)
    	RET
    
    // bool	·Cas64(uint64 *val, uint64 old, uint64 new)
    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    //	} else {
    //		return 0;
    //	}
    TEXT ·Cas64(SB), NOSPLIT, $0-25
    	MOVQ	ptr+0(FP), BX
    	MOVQ	old+8(FP), AX
    	MOVQ	new+16(FP), CX
    	LOCK
    	CMPXCHGQ	CX, 0(BX)
    	SETEQ	ret+24(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/internal/bytealg/equal_amd64.s

    	ADDQ	$8, DI
    	SUBQ	$8, BX
    	CMPQ	CX, DX
    	JEQ	bigloop
    	XORQ	AX, AX	// return 0
    	RET
    
    	// remaining 0-8 bytes
    leftover:
    	MOVQ	-8(SI)(BX*1), CX
    	MOVQ	-8(DI)(BX*1), DX
    	CMPQ	CX, DX
    	SETEQ	AX
    	RET
    
    small:
    	CMPQ	BX, $0
    	JEQ	equal
    
    	LEAQ	0(BX*8), CX
    	NEGQ	CX
    
    	CMPB	SI, $0xf8
    	JA	si_high
    
    	// load at SI won't cross a page boundary.
    	MOVQ	(SI), SI
    	JMP	si_finish
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_386.s

    	MOVL	new_hi+16(FP), CX
    	LOCK
    	CMPXCHG8B	0(BP)
    	SETEQ	ret+20(FP)
    	RET
    
    // bool Casp1(void **p, void *old, void *new)
    // Atomically:
    //	if(*p == old){
    //		*p = new;
    //		return 1;
    //	}else
    //		return 0;
    TEXT ·Casp1(SB), NOSPLIT, $0-13
    	MOVL	ptr+0(FP), BX
    	MOVL	old+4(FP), AX
    	MOVL	new+8(FP), CX
    	LOCK
    	CMPXCHGL	CX, 0(BX)
    	SETEQ	ret+12(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Absorb flag constants into SETxx ops.
    ((SETEQ|SETLE|SETGE|SETBE|SETAE) (FlagEQ))     => (MOVLconst [1])
    ((SETNE|SETL|SETG|SETB|SETA)     (FlagEQ))     => (MOVLconst [0])
    ((SETNE|SETL|SETLE|SETB|SETBE)   (FlagLT_ULT)) => (MOVLconst [1])
    ((SETEQ|SETG|SETGE|SETA|SETAE)   (FlagLT_ULT)) => (MOVLconst [0])
    ((SETNE|SETL|SETLE|SETA|SETAE)   (FlagLT_UGT)) => (MOVLconst [1])
    ((SETEQ|SETG|SETGE|SETB|SETBE)   (FlagLT_UGT)) => (MOVLconst [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. docs/en/data/github_sponsors.yml

        avatarUrl: https://avatars.githubusercontent.com/u/317045?u=f1349d5ffe84a19f324e204777859fbf69ddf633&v=4
        url: https://github.com/adamghill
      - login: eteq
        avatarUrl: https://avatars.githubusercontent.com/u/346587?v=4
        url: https://github.com/eteq
      - login: dmig
        avatarUrl: https://avatars.githubusercontent.com/u/388564?v=4
        url: https://github.com/dmig
      - login: securancy
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteAMD64.go

    			v.AddArg(v0)
    			return true
    		}
    		break
    	}
    	// match: (SETEQ (InvertFlags x))
    	// result: (SETEQ x)
    	for {
    		if v_0.Op != OpAMD64InvertFlags {
    			break
    		}
    		x := v_0.Args[0]
    		v.reset(OpAMD64SETEQ)
    		v.AddArg(x)
    		return true
    	}
    	// match: (SETEQ (FlagEQ))
    	// result: (MOVLconst [1])
    	for {
    		if v_0.Op != OpAMD64FlagEQ {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    				// MOVSS, SQRTSS, etc
    				src = 4
    				break
    			}
    			if op == "MOVO" || op == "MOVOU" {
    				src = 16
    				break
    			}
    			if strings.HasPrefix(op, "SET") {
    				// SETEQ, etc
    				src = 1
    				break
    			}
    			switch op[len(op)-1] {
    			case 'B':
    				src = 1
    			case 'W':
    				src = 2
    			case 'L':
    				src = 4
    			case 'D', 'Q':
    				src = 8
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/runtime/asm_386.s

    TEXT ·checkASM(SB),NOSPLIT,$0-1
    	// check that masks<>(SB) and shifts<>(SB) are aligned to 16-byte
    	MOVL	$masks<>(SB), AX
    	MOVL	$shifts<>(SB), BX
    	ORL	BX, AX
    	TESTL	$15, AX
    	SETEQ	ret+0(FP)
    	RET
    
    TEXT runtime·return0(SB), NOSPLIT, $0
    	MOVL	$0, AX
    	RET
    
    // Called from cgo wrappers, this function returns g->m->curg.stack.hi.
    // Must obey the gcc calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    // func checkASM() bool
    TEXT ·checkASM(SB),NOSPLIT,$0-1
    	// check that masks<>(SB) and shifts<>(SB) are aligned to 16-byte
    	MOVQ	$masks<>(SB), AX
    	MOVQ	$shifts<>(SB), BX
    	ORQ	BX, AX
    	TESTQ	$15, AX
    	SETEQ	ret+0(FP)
    	RET
    
    // these are arguments to pshufb. They move data down from
    // the high bytes of the register to the low bytes of the register.
    // index is how many bytes to move.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top