Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for tmp_ (0.13 sec)

  1. test/inline.go

    	return x + y
    }
    
    func j(x int) int { // ERROR "can inline j"
    	switch {
    	case x > 0:
    		return x + 2
    	default:
    		return x + 1
    	}
    }
    
    func f2() int { // ERROR "can inline f2"
    	tmp1 := h
    	tmp2 := tmp1
    	return tmp2(0) // ERROR "inlining call to h"
    }
    
    var abc = errors.New("abc") // ERROR "inlining call to errors.New"
    
    var somethingWrong error
    
    // local closures can be inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    loop192:
    	VPERM	IN1, IN1, MASK, KEY // vperm 3,2,2,5
    	VSLDOI	$12, ZERO, IN0, TMP // vsldoi 6,0,1,12
    	VCIPHERLAST	KEY, RCON, KEY      // vcipherlast 3,3,4
    
    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    	VSLDOI	$12, ZERO, TMP, TMP // vsldoi 6,0,6,12
    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    	VSLDOI	$12, ZERO, TMP, TMP // vsldoi 6,0,6,12
    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    
    	VSLDOI	$8, ZERO, IN1, STAGE  // vsldoi 7,0,2,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)
  3. tests/integration/security/jwt_test.go

    			config.New(t).
    				Source(config.File("testdata/requestauthn/global-jwt.yaml.tmpl").WithParams(param.Params{
    					param.Namespace.String(): istio.ClaimSystemNamespaceOrFail(t, t),
    					"Services":               apps.Ns1.All,
    					"GatewayIstioLabel":      i.Settings().IngressGatewayIstioLabel,
    				})).
    				Source(config.File("testdata/requestauthn/ingress.yaml.tmpl").WithParams(param.Params{
    					param.Namespace.String(): apps.Ns1.Namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  4. src/text/template/parse/parse_test.go

    			"break": func(in any) any { return in },
    		}
    		tmpl, err := New("").Parse(inp, "", "", make(map[string]*Tree), funcsWithKeywordFunc)
    		if err != nil || tmpl == nil {
    			t.Errorf("with break func: unexpected error: %v", err)
    		}
    	}
    
    	{
    		// No function called 'break'; treat it as a keyword. Results in a parse
    		// error.
    		tmpl, err := New("").Parse(inp, "", "", make(map[string]*Tree), make(map[string]any))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/crypto/tls/boring_test.go

    	}
    	if mode&^boringCertFIPSOK == boringCertLeaf {
    		tmpl.DNSNames = []string{"example.com"}
    	} else {
    		tmpl.IsCA = true
    		tmpl.KeyUsage |= x509.KeyUsageCertSign
    	}
    
    	var pcert *x509.Certificate
    	var pkey interface{}
    	if parent != nil {
    		pcert = parent.cert
    		pkey = parent.key
    	} else {
    		pcert = tmpl
    		pkey = key
    	}
    
    	var pub interface{}
    	switch k := key.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. test/newinline.go

    	return x + y
    }
    
    func j(x int) int { // ERROR "can inline j"
    	switch {
    	case x > 0:
    		return x + 2
    	default:
    		return x + 1
    	}
    }
    
    func f2() int { // ERROR "can inline f2"
    	tmp1 := h
    	tmp2 := tmp1
    	return tmp2(0) // ERROR "inlining call to h"
    }
    
    var abc = errors.New("abc") // ERROR "inlining call to errors.New"
    
    var somethingWrong error
    
    // local closures can be inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/html/template/template.go

    	defer t.nameSpace.mu.Unlock()
    	t.nameSpace.escaped = true
    	tmpl = t.set[name]
    	if tmpl == nil {
    		return nil, fmt.Errorf("html/template: %q is undefined", name)
    	}
    	if tmpl.escapeErr != nil && tmpl.escapeErr != escapeOK {
    		return nil, tmpl.escapeErr
    	}
    	if tmpl.text.Tree == nil || tmpl.text.Root == nil {
    		return nil, fmt.Errorf("html/template: %q is an incomplete template", name)
    	}
    	if t.text.Lookup(name) == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    				minIstioVersion string
    			}{
    				{
    					name: "global mtls strict",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    						config.File("testdata/reachability/global-dr.yaml.tmpl"),
    					}.WithParams(param.Params{
    						mtlsModeParam:            model.MTLSStrict.String(),
    						tlsModeParam:             "ISTIO_MUTUAL",
    						param.Namespace.String(): systemNS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/text/template/multi_test.go

    			continue
    		}
    		if len(template.tmpl) != len(test.names)+1 { // +1 for root
    			t.Errorf("%s: wrong number of templates; wanted %d got %d", test.name, len(test.names), len(template.tmpl))
    			continue
    		}
    		for i, name := range test.names {
    			tmpl, ok := template.tmpl[name]
    			if !ok {
    				t.Errorf("%s: can't find template %q", test.name, name)
    				continue
    			}
    			result := tmpl.Root.String()
    			if result != test.results[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    // The caller should order the right-hand side of the assignment before calling order.as2func.
    // It rewrites,
    //
    //	a, b, a = ...
    //
    // as
    //
    //	tmp1, tmp2, tmp3 = ...
    //	a, b, a = tmp1, tmp2, tmp3
    //
    // This is necessary to ensure left to right assignment order.
    func (o *orderState) as2func(n *ir.AssignListStmt) {
    	results := n.Rhs[0].Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top