Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 360 for outReg (0.13 sec)

  1. src/reflect/export_test.go

    //
    // Bitmaps like stack, gc, inReg, and outReg are expanded such that each bit
    // takes up one byte, so that writing out test cases is a little clearer.
    // If ptrs is false, gc will be nil.
    func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack, gc, inReg, outReg []byte, ptrs bool) {
    	var ft *abi.Type
    	var abid abiDesc
    	if rcvr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. internal/handlers/forwarder.go

    // Modify the request to handle the target URL
    func (f *Forwarder) modifyRequest(outReq *http.Request, target *url.URL) {
    	outReq.URL = copyURL(outReq.URL)
    	outReq.URL.Scheme = target.Scheme
    	outReq.URL.Host = target.Host
    
    	u := f.getURLFromRequest(outReq)
    
    	outReq.URL.Path = u.Path
    	outReq.URL.RawPath = u.RawPath
    	outReq.URL.RawQuery = u.RawQuery
    	outReq.RequestURI = "" // Outgoing request should not have RequestURI
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 07 05:42:10 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_ppc64x.s

    	// The expanded decrypt key is the expanded encrypt key stored in reverse order.
    	// Move OUTDEC to the last key location, and store in descending order.
    	ADD	$160, OUTDEC, OUTDEC
    	BLT	loop128
    	ADD	$32, OUTDEC, OUTDEC
    	BEQ	l192
    	ADD	$32, OUTDEC, OUTDEC
    	JMP	l256
    
    loop128:
    	// Key schedule (Round 1 to 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/rsa.go

    	defer C._goboringcrypto_EVP_PKEY_CTX_free(ctx)
    
    	var outLen C.size_t
    	if crypt(ctx, nil, &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	out := make([]byte, outLen)
    	if crypt(ctx, base(out), &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	return out[:outLen], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/log/nflog.go

    			uid = *attrs.UID
    		}
    		if attrs.GID != nil {
    			gid = *attrs.GID
    		}
    		inDev, outDev := "", ""
    		if attrs.InDev != nil {
    			ii, err := net.InterfaceByIndex(int(*attrs.InDev))
    			if err == nil {
    				inDev = ii.Name
    			}
    		}
    		if attrs.OutDev != nil {
    			ii, err := net.InterfaceByIndex(int(*attrs.OutDev))
    			if err == nil {
    				outDev = ii.Name
    			}
    		}
    		iptablesTrace.WithLabels(
    			"command", prefix,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    		outreq.Header.Del("Forwarded")
    		outreq.Header.Del("X-Forwarded-For")
    		outreq.Header.Del("X-Forwarded-Host")
    		outreq.Header.Del("X-Forwarded-Proto")
    
    		// Remove unparsable query parameters from the outbound request.
    		outreq.URL.RawQuery = cleanQueryParams(outreq.URL.RawQuery)
    
    		pr := &ProxyRequest{
    			In:  req,
    			Out: outreq,
    		}
    		p.Rewrite(pr)
    		outreq = pr.Out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    go 1.21
    
    require example.net/outer/inner v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.net/outer/inner"
    -- b/go.mod --
    module example.net/b
    
    go 1.21
    
    require example.net/outer v0.1.0
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    
    import _ "example.net/outer/inner"
    -- inner/go.mod --
    module example.net/outer/inner
    
    go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/cover/cfg_test.go

    	incfg := filepath.Join(outdir, tag+"incfg.txt")
    	outcfg := filepath.Join(outdir, "outcfg.txt")
    	p := covcmd.CoverPkgConfig{
    		PkgPath:      ppath,
    		PkgName:      pname,
    		Granularity:  gran,
    		OutConfig:    outcfg,
    		EmitMetaFile: mpath,
    	}
    	data, err := json.Marshal(p)
    	if err != nil {
    		t.Fatalf("json.Marshal failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_json_interleaved.txt

    stdout '"Test":"TestWeirdTiming","Output":"[^"]* logging to outer again\\n"'
    
    -- go.mod --
    module example.com
    go 1.15
    -- main_test.go --
    package main
    
    import (
    	"testing"
    )
    
    func TestWeirdTiming(outer *testing.T) {
    	outer.Run("pauser", func(pauser *testing.T) {
    		outer.Logf("logging to outer")
    		pauser.Parallel()
    	})
    
    	outer.Logf("logging to outer again")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 17:44:20 UTC 2020
    - 581 bytes
    - Viewed (0)
  10. test/fixedbugs/issue51401.go

    	runtime.Callers(2, stack[:])
    
    	return nil
    }
    
    func main() {
    	funcs := listFuncs(New())
    	for _, f := range funcs {
    		f()
    	}
    }
    
    func listFuncs(outer Outer) []func() error {
    	return []func() error{outer.DoStuff}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 21:27:42 UTC 2022
    - 766 bytes
    - Viewed (0)
Back to top