Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for isMatching (0.18 sec)

  1. src/vendor/golang.org/x/net/nettest/conntest.go

    					break
    				}
    				t.Errorf("unexpected Read error: %v", err)
    			}
    
    			v := binary.LittleEndian.Uint64(buf)
    			binary.LittleEndian.PutUint64(buf, v+1)
    			if prev != 0 && prev+2 != v {
    				t.Errorf("mismatching value: got %d, want %d", v, prev+2)
    			}
    			prev = v
    			if v == 1000 {
    				break
    			}
    
    			if _, err := c.Write(buf); err != nil {
    				t.Errorf("unexpected Write error: %v", err)
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		}
    		// This means that during reinvocation, a webhook will not be
    		// called for the first time. For example, if the webhook is
    		// skipped in the first round because of mismatching labels,
    		// even if the labels become matching, the webhook does not
    		// get called during reinvocation.
    		if reinvokeCtx.IsReinvoke() && !webhookReinvokeCtx.ShouldReinvokeWebhook(invocation.Webhook.GetUID()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

        } else {
          if (first_start != second_start || first_limit != second_limit)
            return rewriter.notifyMatchFailure(
                second, "non-concat dims have mismatching slice bounds");
        }
    
        new_start.push_back(first_start);
        new_limit.push_back(second_limit);
        new_slice_shape.push_back(second_limit - first_start);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. src/cmd/compile/internal/types2/api_test.go

    				}
    			}()
    		}
    		wg.Wait()
    
    		if counts[0] != counts[1] {
    			t.Errorf("mismatching method counts for %s: %d vs %d", inst, counts[0], counts[1])
    			continue
    		}
    		for i := 0; i < counts[0]; i++ {
    			if m0, m1 := methods[0][i], methods[1][i]; m0 != m1 {
    				t.Errorf("mismatching methods for %s: %s vs %s", inst, m0, m1)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top