Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 962 for inexact (0.13 sec)

  1. pkg/registry/admissionregistration/validatingwebhookconfiguration/storage/storage_test.go

    			{"metadata.name": "nomatch"},
    		},
    	)
    }
    
    func validValidatingWebhookConfiguration() *admissionregistration.ValidatingWebhookConfiguration {
    	ignore := admissionregistration.Ignore
    	exact := admissionregistration.Exact
    	thirty := int32(30)
    	none := admissionregistration.SideEffectClassNone
    	servicePath := "/"
    	return &admissionregistration.ValidatingWebhookConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:10:55 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/matcher/string_test.go

    		{
    			name:   "suffix",
    			v:      "*-suffix",
    			prefix: "abc",
    			want:   StringMatcherRegex("abc.*-suffix"),
    		},
    		{
    			name:   "exact",
    			v:      "-exact",
    			prefix: "abc",
    			want: &matcher.StringMatcher{
    				MatchPattern: &matcher.StringMatcher_Exact{
    					Exact: "abc-exact",
    				},
    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. test/float_lit2.go

    	}
    
    	for _, c := range cvt {
    		if bits(c.exact) != c.bits {
    			bug()
    			fmt.Printf("%s: inconsistent table: bits=%#x (%g) but exact=%g (%#x)\n", c.text, c.bits, fromBits(c.bits, c.exact), c.exact, bits(c.exact))
    		}
    		if c.approx != c.exact || bits(c.approx) != c.bits {
    			bug()
    			fmt.Printf("%s: have %g (%#x) want %g (%#x)\n", c.text, c.approx, bits(c.approx), c.exact, c.bits)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:39:47 UTC 2016
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication_test.go

    				},
    			},
    			expected: rest.Config{BearerToken: "first"},
    		},
    		{
    			name:       "exact match with default https port",
    			serverName: "one.two.three.com:443",
    			kubeconfig: clientcmdapi.Config{
    				AuthInfos: map[string]*clientcmdapi.AuthInfo{
    					"one.two.three.com:443": {Token: "exact"},
    					"*.two.three.com":       {Token: "first"},
    					"*.three.com":           {Token: "second"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/default-match-http.yaml

      hostnames:
      - default-match.com
      rules:
      - matches:
        - headers:
          - type: Exact
            name: magic
            value: default-match
        backendRefs:
        - group: acme.io
          kind: CustomBackend
          name: my-custom-resource
          port: 8080
      - matches:
        - path:
            type: Exact
            value: /example/exact
        backendRefs:
        - name: my-service-2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/custom-bad-out.yaml

            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /httpbin1
            principals:
            - andIds:
                ids:
                - any: true
          istio-ext-authz-ns[foo]-policy[httpbin-2]-rule[0]-deny-due-to-bad-CUSTOM-action:
            permissions:
            - andRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 04:13:49 UTC 2023
    - 885 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion_test.go

    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Exact{
    									Exact: "/foo",
    								},
    							},
    						},
    					},
    				},
    			},
    			[]*istio.HTTPRoute{
    				{
    					Match: []*istio.HTTPMatchRequest{
    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Exact{
    									Exact: "/foo",
    								},
    							},
    						},
    					},
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    //   No       - No mutual intelligibility.
    //
    // The following levels can occur for each type of subtag:
    //   Base:    Exact, MaxExact, High, Low, No
    //   Script:  Exact, MaxExact [see Note 3], Low, No
    //   Region:  Exact, MaxExact, High
    //   Variant: Exact, High
    //   Private: Exact, No
    //
    // Any result with a confidence level of Low or higher is deemed a possible match.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/go/constant/example_test.go

    	b := constant.MakeUint64(11)
    	c := constant.BinaryOp(a, token.MUL, b)
    
    	// Convert c into a complex128.
    	Ar, exact := constant.Float64Val(constant.Real(c))
    	if !exact {
    		fmt.Printf("Could not represent real part %s exactly as float64\n", constant.Real(c))
    	}
    	Ai, exact := constant.Float64Val(constant.Imag(c))
    	if !exact {
    		fmt.Printf("Could not represent imaginary part %s as exactly as float64\n", constant.Imag(c))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/bookinfo-ingress.yaml

          - path: /productpage
            pathType: Exact
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /static/
            pathType: Prefix
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /login
            pathType: Exact
            backend:
              service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 28 04:24:35 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top