Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for inexact (0.25 sec)

  1. pilot/pkg/model/virtualservice_test.go

    						MatchType: &networking.StringMatch_Exact{Exact: "/productpage/v1"},
    					},
    				},
    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Exact{Exact: "/reviews/v1"},
    					},
    				},
    			},
    			expected: []*networking.HTTPMatchRequest{
    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Exact{Exact: "/productpage/v1"},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		acc     Accuracy
    	}{
    		{"0", "0/1", Exact},
    		{"+0", "0/1", Exact},
    		{"-0", "0/1", Exact},
    		{"Inf", "nil", Below},
    		{"+Inf", "nil", Below},
    		{"-Inf", "nil", Above},
    		{"1", "1/1", Exact},
    		{"-1", "-1/1", Exact},
    		{"1.25", "5/4", Exact},
    		{"-1.25", "-5/4", Exact},
    		{"1e10", "10000000000/1", Exact},
    		{"1p10", "1024/1", Exact},
    		{"-1p-10", "-1/1024", Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    			expected: map[string][]string{
    				// Exact match wins
    				"alt-known.default.svc.cluster.local": {"outbound|80||wild.example.com"},
    				"known.default.svc.cluster.local":     {"outbound|80||explicit.example.com"},
    				// Matched an exact service, so we have no route for the wildcard
    				"*.cluster.local": nil,
    			},
    			expectedGateway: map[string][]string{
    				// Exact match wins
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/math/big/int_test.go

    		{"-9007199254740991", -9007199254740991.000000, Exact},
    		{"-4503599627370497", -4503599627370497.000000, Exact},
    		{"-4503599627370496", -4503599627370496.000000, Exact}, // -2^52
    		{"-4503599627370495", -4503599627370495.000000, Exact},
    		{"-12345", -12345, Exact},
    		{"-1", -1, Exact},
    		{"0", 0, Exact},
    		{"1", 1, Exact},
    		{"12345", 12345, Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	Fail FailurePolicyType = "Fail"
    )
    
    // MatchPolicyType specifies the type of match policy
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	Fail FailurePolicyType = "Fail"
    )
    
    // MatchPolicyType specifies the type of match policy
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // +optional
      repeated NamedRuleWithOperations excludeResourceRules = 4;
    
      // matchPolicy defines how the "MatchResources" list is used to match incoming requests.
      // Allowed values are "Exact" or "Equivalent".
      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    )
    
    // MatchPolicyType specifies the type of match policy.
    // +enum
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule.
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // +optional
      repeated NamedRuleWithOperations excludeResourceRules = 4;
    
      // matchPolicy defines how the "MatchResources" list is used to match incoming requests.
      // Allowed values are "Exact" or "Equivalent".
      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    		// * checkListener, the hostname of the other listener we are comparing to
    		// We want to return false if checkListener would match the routeHost and it would be a more exact match
    		if len(ourListener) > len(checkListener) {
    			// If our hostname is longer, it must be more exact than the check
    			continue
    		}
    		// Ours is shorter. If it matches the checkListener, then it should ONLY match that one
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top