Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 294 for Tmpl (0.07 sec)

  1. 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)
  2. src/text/template/exec.go

    	s.at(t)
    	tmpl := s.tmpl.Lookup(t.Name)
    	if tmpl == nil {
    		s.errorf("template %q not defined", t.Name)
    	}
    	if s.depth == maxExecDepth {
    		s.errorf("exceeded maximum template depth (%v)", maxExecDepth)
    	}
    	// Variables declared by the pipeline persist.
    	dot = s.evalPipeline(dot, t.Pipe)
    	newState := *s
    	newState.depth++
    	newState.tmpl = tmpl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K 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/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)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    func renderHTML(dst io.Writer, tmpl string, rpt *report.Report, errList, legend []string, data webArgs) error {
    	file := getFromLegend(legend, "File: ", "unknown")
    	profile := getFromLegend(legend, "Type: ", "unknown")
    	data.Title = file + " " + profile
    	data.Errors = errList
    	data.Total = rpt.Total()
    	data.Legend = legend
    	return getHTMLTemplates().ExecuteTemplate(dst, tmpl, data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. tests/integration/pilot/tunneling_test.go

    	"istio.io/istio/tests/integration/pilot/forwardproxy"
    )
    
    const (
    	forwardProxyConfigMapFile    = "testdata/forward-proxy/configmap.tmpl.yaml"
    	forwardProxyServiceFile      = "testdata/forward-proxy/service.tmpl.yaml"
    	tunnelingDestinationRuleFile = "testdata/tunneling/destination-rule.tmpl.yaml"
    )
    
    type tunnelingTestCase struct {
    	// configDir is a directory with Istio configuration files for a particular test case
    	configDir string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/text/template/funcs.go

    		}
    	}
    	return true
    }
    
    // findFunction looks for a function in the template, and global map.
    func findFunction(name string, tmpl *Template) (v reflect.Value, isBuiltin, ok bool) {
    	if tmpl != nil && tmpl.common != nil {
    		tmpl.muFuncs.RLock()
    		defer tmpl.muFuncs.RUnlock()
    		if fn := tmpl.execFuncs[name]; fn.IsValid() {
    			return fn, false, true
    		}
    	}
    	if fn := builtinFuncs()[name]; fn.IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/deployment.go

    	}
    
    	deploy := getTemplate(deploymentTemplateFile)
    	if cfg.DeployAsVM {
    		deploy = getTemplate(vmDeploymentTemplateFile)
    	}
    
    	return tmpl.Execute(deploy, params)
    }
    
    func GenerateService(cfg echo.Config) (string, error) {
    	params := serviceParams(cfg)
    	return tmpl.Execute(getTemplate(serviceTemplateFile), params)
    }
    
    var VMImages = map[echo.VMDistro]string{
    	echo.UbuntuBionic: "app_sidecar_ubuntu_bionic",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_simulation_test.go

    		// "alpha" is created after "beta". This triggers a mismatch in the conflict resolution logic in Ingress and VirtualService, leading to unexpected results
    		kubeConfig: tmpl.MustEvaluate(cfg, map[string]string{"Name": "alpha", "Time": "2020-01-01T00:00:00Z"}) +
    			tmpl.MustEvaluate(cfg, map[string]string{"Name": "beta", "Time": "2010-01-01T00:00:00Z"}),
    		calls: []simulation.Expect{
    			{
    				Name: "http alpha",
    				Call: simulation.Call{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. pilot/pkg/autoregistration/controller_test.go

    		}
    	} else {
    		if we.Network != tmpl.Template.Network {
    			err = multierror.Append(fmt.Errorf("entry has network %s; expected to match group template network %s", we.Network, tmpl.Template.Network))
    		}
    	}
    
    	loc := tmpl.Template.Locality
    	if node.Locality != nil {
    		loc = util.LocalityToString(node.Locality)
    	}
    	if we.Locality != loc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top