Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for doPatch (0.14 sec)

  1. src/cmd/vendor/rsc.io/markdown/inline.go

    	// To enable this optimization, following cmark-gfm, we declare by fiat
    	// that more than maxBackticks backquotes is too many.
    	if n > len(b.last) || b.scanned && b.last[n-1] < i+n {
    		goto NoMatch
    	}
    
    	for end := i + n; end < len(s); {
    		if s[end] != '`' {
    			end++
    			continue
    		}
    		estart := end
    		for end < len(s) && s[end] == '`' {
    			end++
    		}
    		m := end - estart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    	policyIgnore := registrationv1.Ignore
    	ccfgURL := urlConfigGenerator{url}.ccfgURL
    
    	return []ValidatingTest{
    		{
    			Name: "no match",
    			Webhooks: []registrationv1.ValidatingWebhook{{
    				Name:         "nomatch",
    				ClientConfig: ccfgSVC("disallow"),
    				Rules: []registrationv1.RuleWithOperations{{
    					Operations: []registrationv1.OperationType{registrationv1.Create},
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  3. tests/integration/security/egress_gateway_origination_test.go

    	return echotest.New(t, apps.All.Instances()).
    		WithDefaultFilters(1, 1).
    		FromMatch(match.And(
    			match.Namespace(apps.Ns1.Namespace),
    			match.NotNaked,
    			match.NotProxylessGRPC)).
    		ToMatch(match.ServiceName(apps.External.All.NamespacedName()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    }
    
    func (ret CONFIGRET) Win32Error(defaultError Errno) Errno {
    	return cm_MapCrToWin32Err(ret, defaultError)
    }
    
    func (ret CONFIGRET) Unwrap() error {
    	const noMatch = Errno(^uintptr(0))
    	win32Error := ret.Win32Error(noMatch)
    	if win32Error == noMatch {
    		return nil
    	}
    	return win32Error
    }
    
    const (
    	CR_SUCCESS                  CONFIGRET = 0x00000000
    	CR_DEFAULT                  CONFIGRET = 0x00000001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	t framework.TestContext,
    	fn func(t framework.TestContext, from echo.Instance, to echo.Target),
    ) {
    	t.Helper()
    	echotest.New(t, echos.Instances).
    		WithDefaultFilters(1, 1).
    		FromMatch(serviceA).
    		ToMatch(serviceB).
    		Run(fn)
    }
    
    func newServiceExport(service string, serviceExportGVR schema.GroupVersionResource) *mcsapi.ServiceExport {
    	return &mcsapi.ServiceExport{
    		TypeMeta: metav1.TypeMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							PortValue: 443,
    						},
    					},
    				},
    			},
    			FilterChains: []*listener.FilterChain{
    				{
    					FilterChainMatch: &listener.FilterChainMatch{
    						ServerNames: []string{"nomatch.com", "*.foo.com"},
    					},
    					Filters: []*listener.Filter{{Name: "network-filter"}},
    				},
    			},
    		},
    	}
    
    	gatewayOut := []*listener.Listener{
    		{
    			Name: "80",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. src/regexp/exec_test.go

    	//     returned.
    	switch {
    	case s == "":
    		// Match with no position information.
    		ok = true
    		compiled = true
    		matched = true
    		return
    	case s == "NOMATCH":
    		// Match failure.
    		ok = true
    		compiled = true
    		matched = false
    		return
    	case 'A' <= s[0] && s[0] <= 'Z':
    		// All the other error codes are compile errors.
    		ok = true
    		compiled = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    				},
    			}
    			ps := NewPushContext()
    			meshConfig := mesh.DefaultMeshConfig()
    			ps.Mesh = meshConfig
    
    			services := []*Service{
    				{
    					Hostname:   "nomatch",
    					Attributes: ServiceAttributes{Namespace: "nomatch"},
    				},
    				{
    					Hostname:   svcName,
    					Attributes: ServiceAttributes{Namespace: nsName},
    				},
    			}
    			virtualServices := []config.Config{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    // exist at all or because it does not include that specific version.
    func isNoSuchModuleVersion(err error) bool {
    	var noMatch *modload.NoMatchingVersionError
    	return errors.Is(err, os.ErrNotExist) || errors.As(err, &noMatch)
    }
    
    // isNoSuchPackageVersion reports whether err indicates that the requested
    // package does not exist at the requested version, either because no module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    	input         []lex.Token
    	inputPos      int
    	pendingLabels []string // Labels to attach to next instruction.
    	labels        map[string]*obj.Prog
    	toPatch       []Patch
    	addr          []obj.Addr
    	arch          *arch.Arch
    	ctxt          *obj.Link
    	firstProg     *obj.Prog
    	lastProg      *obj.Prog
    	dataAddr      map[string]int64 // Most recent address for DATA for this symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top