Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for doPatch (0.3 sec)

  1. 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)
  2. src/regexp/testdata/testregex.c

    	static char	strbuf[32 * 1024];
    
    	int		nonosub = REG_NOSUB == 0;
    	int		nonexec = 0;
    
    	unsigned long	test = 0;
    
    	static char*	filter[] = { "-", 0 };
    
    	state.NOMATCH.rm_so = state.NOMATCH.rm_eo = -2;
    	p = unit;
    	version = (char*)id + 10;
    	while (p < &unit[sizeof(unit)-1] && (*p = *version++) && !isspace(*p))
    		p++;
    	*p = 0;
    	while ((p = *++argv) && *p == '-')
    		for (;;)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/tls/handshake_server_test.go

    	runServerTestTLS13(t, test)
    }
    
    func TestHandshakeServerALPNNoMatch(t *testing.T) {
    	config := testConfig.Clone()
    	config.NextProtos = []string{"proto3"}
    
    	test := &serverTest{
    		name: "ALPN-NoMatch",
    		// Note that this needs OpenSSL 1.0.2 because that is the first
    		// version that supports the -alpn flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    						// TODO eventually we can do this for uncaptured -> l7
    						FromMatch(match.Not(match.ServiceName(echo.NamespacedName{
    							Name:      "uncaptured",
    							Namespace: apps.Namespace,
    						}))).
    						ToMatch(match.ServiceName(echo.NamespacedName{
    							Name:      "uncaptured",
    							Namespace: apps.Namespace,
    						})).
    						Config(cfg.WithParams(param.Params{
    							"Resolution": tc.resolution.String(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    		{
    			name:               "nil proxy",
    			node:               nil,
    			listenerInfo:       anyListener,
    			pluginType:         WasmPluginTypeHTTP,
    			expectedExtensions: nil,
    		},
    		{
    			name: "nomatch",
    			node: &Proxy{
    				ConfigNamespace: "other",
    				Metadata:        &NodeMetadata{},
    			},
    			listenerInfo:       anyListener,
    			pluginType:         WasmPluginTypeHTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top