Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for doPatch (0.65 sec)

  1. tests/integration/security/https_jwt/https_jwt_test.go

    						}).
    						FromMatch(
    							// TODO(JimmyCYJ): enable VM for all test cases.
    							util.SourceMatcher(ns, true)).
    						ConditionallyTo(echotest.ReachableDestinations).
    						ToMatch(util.DestMatcher(ns, true)).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    							opts := echo.CallOptions{
    								To: to,
    								Port: echo.Port{
    									Name: "http",
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/regexp/testdata/nullsubexpr.dat

    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a+)*		a		(0,1)(0,1)
    E	SAME		x		(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a+)+		a		(0,1)(0,1)
    E	SAME		x		NOMATCH
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    
    E	([a]*)*		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	([a]*)+		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. docs/en/layouts/custom.yml

    # Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
    
    # Permission is hereby granted, free of charge, to any person obtaining a copy
    # of this software and associated documentation files (the "Software"), to
    # deal in the Software without restriction, including without limitation the
    # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    # sell copies of the Software, and to permit persons to whom the Software is
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 14:05:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. tests/integration/security/cacert_rotation/main_test.go

    			}
    
    			// Verify traffic works between a and b
    			echotest.New(t, fromAndTo).
    				WithDefaultFilters(1, 1).
    				FromMatch(match.ServiceName(from.NamespacedName())).
    				ToMatch(match.ServiceName(to.NamespacedName())).
    				Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    					// Verify mTLS works between a and b
    					opts := echo.CallOptions{
    						To: to,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/registry/admissionregistration/validatingwebhookconfiguration/storage/storage_test.go

    		validValidatingWebhookConfiguration(),
    		[]labels.Set{},
    		[]labels.Set{
    			{"hoo": "bar"},
    		},
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		[]fields.Set{
    			{"metadata.name": "nomatch"},
    		},
    	)
    }
    
    func validValidatingWebhookConfiguration() *admissionregistration.ValidatingWebhookConfiguration {
    	ignore := admissionregistration.Ignore
    	exact := admissionregistration.Exact
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:10:55 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/query_test.go

    	{path: queryRepo, query: "upgrade", current: "v0.0.0-20190513201126-42abcb6df8ee", vers: "v0.0.0-20190513201126-42abcb6df8ee"},
    	{path: queryRepo, query: "upgrade", allow: "NOMATCH", err: `no matching versions for query "upgrade"`},
    	{path: queryRepo, query: "upgrade", current: "v1.9.9", allow: "NOMATCH", err: `vcs-test.golang.org/git/querytest.git@v1.9.9: disallowed module version`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. tests/integration/security/remote_jwks/remote_jwks_test.go

    						}).
    						FromMatch(
    							// TODO(JimmyCYJ): enable VM for all test cases.
    							util.SourceMatcher(ns, true)).
    						ConditionallyTo(echotest.ReachableDestinations).
    						ToMatch(util.DestMatcher(ns, true)).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    							opts := echo.CallOptions{
    								To: to,
    								Port: echo.Port{
    									Name: "http",
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    
    	p.append(prog, cond, true)
    }
    
    func (p *Parser) patch() {
    	for _, patch := range p.toPatch {
    		targetProg := p.labels[patch.label]
    		if targetProg == nil {
    			p.errorf("undefined label %s", patch.label)
    			return
    		}
    		p.branch(patch.addr, targetProg)
    	}
    	p.toPatch = p.toPatch[:0]
    }
    
    func (p *Parser) branch(addr *obj.Addr, target *obj.Prog) {
    	*addr = obj.Addr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingadmissionpolicy/storage/storage_test.go

    		validValidatingAdmissionPolicy(),
    		[]labels.Set{},
    		[]labels.Set{
    			{"hoo": "bar"},
    		},
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		[]fields.Set{
    			{"metadata.name": "nomatch"},
    		},
    	)
    }
    
    func validValidatingAdmissionPolicy() *admissionregistration.ValidatingAdmissionPolicy {
    	return &admissionregistration.ValidatingAdmissionPolicy{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 23:43:34 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/switch.go

    			// Start with all hashes going to the didn't-match target.
    			noMatch := typecheck.AutoLabel(".s")
    			for j := 0; j < 1<<b; j++ {
    				jt.Cases[j] = constant.MakeInt64(int64(j))
    				jt.Targets[j] = noMatch
    			}
    			// This statement is not reachable, but it will make it obvious that we don't
    			// fall through to the first case.
    			out.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, noMatch))
    
    			// Emit each of the actual cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top