Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for doPatch (0.12 sec)

  1. pilot/pkg/networking/core/cluster.go

    }
    
    func (p clusterPatcher) patch(hosts []host.Name, c *cluster.Cluster) *discovery.Resource {
    	cluster := p.doPatch(hosts, c)
    	if cluster == nil {
    		return nil
    	}
    	return &discovery.Resource{Name: cluster.Name, Resource: protoconv.MessageToAny(cluster)}
    }
    
    func (p clusterPatcher) doPatch(hosts []host.Name, c *cluster.Cluster) *cluster.Cluster {
    	if !envoyfilter.ShouldKeepCluster(p.pctx, p.efw, c, hosts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. src/regexp/testdata/repetition.dat

    #	NOMATCH
    #	(0,.)\((\(.\),\(.\))(?,?)(\2,\3)\)*
    #	(0,.)\((\(.\),\(.\))(\2,\3)(?,?)\)*
    # i.e., each 3-tuple has two identical elements and one (?,?)
    
    E	((..)|(.))				NULL		NOMATCH
    E	((..)|(.))((..)|(.))			NULL		NOMATCH
    E	((..)|(.))((..)|(.))((..)|(.))		NULL		NOMATCH
    
    E	((..)|(.)){1}				NULL		NOMATCH
    E	((..)|(.)){2}				NULL		NOMATCH
    E	((..)|(.)){3}				NULL		NOMATCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    )
    
    type ruleTest struct {
    	rule    adreg.RuleWithOperations
    	match   []admission.Attributes
    	noMatch []admission.Attributes
    }
    type tests map[string]ruleTest
    
    func a(group, version, resource, subresource, name string, operation admission.Operation, operationOptions runtime.Object) admission.Attributes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/RegExpNameMapperTest.java

        }
    
        @Test
        public void testRenameNoMatch() {
            RegExpNameMapper mapper = new RegExpNameMapper("(.+).java", "$1Test.java");
            String noMatch = "NoMatch";
            assertEquals(noMatch, mapper.transform(noMatch));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:00:51 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_run.txt

    ! stdout 'no tests to run'
    
    # Tests where -run doesn't match any seed corpora.
    
    go test -run FuzzFoo/nomatch
    stdout ok
    
    go test -run /nomatch
    stdout ok
    
    go test -v -run FuzzFoo/nomatch
    stdout '=== RUN   FuzzFoo'
    stdout '--- PASS: FuzzFoo'
    stdout ok
    ! stdout 'no tests to run'
    
    go test -v -run /nomatch
    stdout '=== RUN   FuzzFoo'
    stdout '--- PASS: FuzzFoo'
    stdout ok
    ! stdout 'no tests to run'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:02 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. tests/integration/security/reachability_test.go

    							// Run the test cases.
    							echotest.New(t, allServices.Instances()).
    								FromMatch(match.And(c.fromMatch, match.NotProxylessGRPC)).
    								ToMatch(match.And(c.toMatch, match.NotProxylessGRPC)).
    								WithDefaultFilters(1, 1).
    								ConditionallyTo(echotest.NoSelfCalls).
    								Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. tests/integration/security/authz_test.go

    			toMatch := match.Not(fromMatch)
    			to := toMatch.GetServiceMatches(apps.Ns1AndNs2)
    			fromAndTo := to.Instances().Append(from)
    
    			config.New(t).
    				Source(config.File("testdata/authz/not-method.yaml.tmpl")).
    				BuildAll(nil, to).
    				Apply()
    
    			newTrafficTest(t, fromAndTo).
    				FromMatch(fromMatch).
    				ToMatch(toMatch).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-ALPN-NoMatch

    Adam Langley <******@****.***> 1471477547 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:46:46 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  9. pkg/kubelet/config/file_linux.go

    		if backOff.IsInBackOffSinceUpdate(backOffID, time.Now()) {
    			return
    		}
    
    		if err := s.doWatch(); err != nil {
    			klog.ErrorS(err, "Unable to read config path", "path", s.path)
    			if _, retryable := err.(*retryableError); !retryable {
    				backOff.Next(backOffID, time.Now())
    			}
    		}
    	}, retryPeriod)
    }
    
    func (s *sourceFile) doWatch() error {
    	_, err := os.Stat(s.path)
    	if err != nil {
    		if !os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 17:27:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/regexp/syntax/prog.go

    			return 0
    		}
    		return noMatch
    
    	case 4, 6, 8:
    		// Linear search for a few pairs.
    		// Should handle ASCII well.
    		for j := 0; j < len(rune); j += 2 {
    			if r < rune[j] {
    				return noMatch
    			}
    			if r <= rune[j+1] {
    				return j / 2
    			}
    		}
    		return noMatch
    	}
    
    	// Otherwise binary search.
    	lo := 0
    	hi := len(rune) / 2
    	for lo < hi {
    		m := int(uint(lo+hi) >> 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top