Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 695 for tmp2 (0.04 sec)

  1. tests/integration/security/testdata/requestauthn/forward.yaml.tmpl

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 393 bytes
    - Viewed (0)
  2. pkg/controller/certificates/authority/policies.go

    	tmpl.IsCA = false
    
    	tmpl.NotBefore = now.Add(-p.Backdate)
    
    	if ttl < p.Short {
    		// do not backdate the end time if we consider this to be a short lived certificate
    		tmpl.NotAfter = now.Add(ttl)
    	} else {
    		tmpl.NotAfter = now.Add(ttl - p.Backdate)
    	}
    
    	if !tmpl.NotAfter.Before(signerNotAfter) {
    		tmpl.NotAfter = signerNotAfter
    	}
    
    	if !tmpl.NotBefore.Before(signerNotAfter) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. src/text/template/examplefiles_test.go

    	dir := createTestDir([]templateFile{
    		// T0.tmpl is a plain template file that just invokes T1.
    		{"T0.tmpl", `T0 invokes T1: ({{template "T1"}})`},
    		// T1.tmpl defines a template, T1 that invokes T2.
    		{"T1.tmpl", `{{define "T1"}}T1 invokes T2: ({{template "T2"}}){{end}}`},
    		// T2.tmpl defines a template T2.
    		{"T2.tmpl", `{{define "T2"}}This is T2{{end}}`},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. pkg/test/csrctrl/authority/policies.go

    }
    
    func (p PermissiveSigningPolicy) apply(tmpl *x509.Certificate) error {
    	usage, extUsages, err := keyUsagesFromStrings(p.Usages)
    	if err != nil {
    		return err
    	}
    	tmpl.KeyUsage = usage
    	tmpl.ExtKeyUsage = extUsages
    	tmpl.NotAfter = tmpl.NotBefore.Add(p.TTL)
    
    	tmpl.ExtraExtensions = nil
    	tmpl.Extensions = nil
    	tmpl.BasicConstraintsValid = true
    	tmpl.IsCA = false
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/html/template/clone_test.go

    	// with t.Name() is t. Check that this holds.
    	tmpl := Must(New("x").Parse("a"))
    	tmpl = Must(tmpl.Clone())
    	if tmpl.Lookup(tmpl.Name()) != tmpl {
    		t.Error("after Clone, tmpl.Lookup(tmpl.Name()) != tmpl")
    	}
    }
    
    func TestCloneGrowth(t *testing.T) {
    	tmpl := Must(New("root").Parse(`<title>{{block "B". }}Arg{{end}}</title>`))
    	tmpl = Must(tmpl.Clone())
    	Must(tmpl.Parse(`{{define "B"}}Text{{end}}`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. tests/integration/security/testdata/requestauthn/remote.yaml.tmpl

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 338 bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/gateway.tmpl.yaml

    Whitney Griffith <******@****.***> 1688577567 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 570 bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/forward-proxy/configmap.tmpl.yaml

    Jacek Ewertowski <******@****.***> 1662558157 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 13:42:37 UTC 2022
    - 256 bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/forward-proxy/service.tmpl.yaml

    Jacek Ewertowski <******@****.***> 1662558157 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 13:42:37 UTC 2022
    - 280 bytes
    - Viewed (0)
Back to top