Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for isMatching (0.15 sec)

  1. pilot/pkg/networking/util/util_test.go

    		{
    			name: "zubzone wildcard matching",
    			locality: &core.Locality{
    				Region: "region1",
    				Zone:   "zone1",
    			},
    			rule:  "region1/zone1",
    			match: true,
    		},
    		{
    			name: "subzone mismatching",
    			locality: &core.Locality{
    				Region: "region1",
    				Zone:   "zone1",
    			},
    			rule:  "region1/zone1/subzone2",
    			match: false,
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		if len(tokens) != len(v.t) {
    			t.Errorf("Bad number of tokens for '%s %d, %d", v.s, len(tokens), len(v.t))
    		}
    		for i := 0; i < min(len(tokens), len(v.t)); i++ {
    			if tokens[i] != v.t[i] {
    				t.Errorf("Test '%s': Mismatching in token type found '%v' it should be '%v'", v.s, tokens[i], v.t[i])
    			}
    		}
    	}
    }
    func TestParserLookahead(t *testing.T) {
    	testcases := []struct {
    		s string
    		t []Token
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    		// We should only get a Named underlying type here during type checking
    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    	},
    	err: "xml: end tag </bar> without start tag",
    }, {
    	desc: "mismatching end tag local name",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, nil},
    		EndElement{Name{"", "bar"}},
    	},
    	err:  "xml: end tag </bar> does not match start tag <foo>",
    	want: `<foo>`,
    }, {
    	desc: "mismatching end tag namespace",
    	toks: []Token{
    		StartElement{Name{"space", "foo"}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    	servicePortEndpointChainNamePrefix      = "KUBE-SEP-"
    )
    
    // servicePortPolicyClusterChain returns the name of the KUBE-SVC-XXXX chain for a service, which is the
    // main iptables chain for that service, used for dispatching to endpoints when using `Cluster`
    // traffic policy.
    func servicePortPolicyClusterChain(servicePortName string, protocol string) utiliptables.Chain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/go/types/named.go

    		// We should only get a Named underlying type here during type checking
    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// NominalConcurrencyLimit (NominalCL) of this level.
    	// This is the number of execution seats nominally reserved for this priority level.
    	// This DOES NOT limit the dispatching from this priority level
    	// but affects the other priority levels through the borrowing mechanism.
    	// The server's concurrency limit (ServerCL) is divided among all the
    	// priority levels in proportion to their NCS values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// Example:
    	//  var x = 1
    	//  var _ = x.(float64)
    	InvalidAssert
    
    	// ImpossibleAssert occurs for a type assertion x.(T) when the value x of
    	// interface cannot have dynamic type T, due to a missing or mismatching
    	// method on T.
    	//
    	// Example:
    	//  type T int
    	//
    	//  func (t *T) m() int { return int(*t) }
    	//
    	//  type I interface { m() int }
    	//
    	//  var x I
    	//  var _ = x.(T)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. pkg/volume/util/subpath/subpath_linux_test.go

    		// base.
    		prepare      func(base string) ([]string, string, string, error)
    		expectError  bool
    		expectAction []mount.FakeAction
    		mountExists  bool
    	}{
    		{
    			name: "subpath-mount-already-exists-with-mismatching-mount",
    			prepare: func(base string) ([]string, string, string, error) {
    				volpath, subpathMount := getTestPaths(base)
    				mounts := []string{subpathMount}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// NominalConcurrencyLimit (NominalCL) of this level.
    	// This is the number of execution seats nominally reserved for this priority level.
    	// This DOES NOT limit the dispatching from this priority level
    	// but affects the other priority levels through the borrowing mechanism.
    	// The server's concurrency limit (ServerCL) is divided among all the
    	// priority levels in proportion to their NCS values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top