Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 962 for inexact (0.17 sec)

  1. pilot/pkg/security/authz/model/generator_test.go

    			value: "80",
    			want: yamlPermission(t, `
             destinationPort: 80`),
    		},
    		{
    			name:  "connSNIGenerator",
    			g:     connSNIGenerator{},
    			value: "exact.com",
    			want: yamlPermission(t, `
             requestedServerName:
              exact: exact.com`),
    		},
    		{
    			name:  "envoyFilterGenerator-string",
    			g:     envoyFilterGenerator{},
    			key:   "experimental.a.b.c[d]",
    			value: "val",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                - orRules:
                    rules:
                    - requestedServerName:
                        exact: exact.com
                - notRule:
                    orRules:
                      rules:
                      - requestedServerName:
                          exact: not-exact.com
                - orRules:
                    rules:
                    - metadata:
                        filter: envoy.filters.a.b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

      - to:
        - operation:
            hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
            notHosts: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
      - to:
        - operation:
            ports: ["80", "90"]
            notPorts: ["800", "900"]
      - to:
        - operation:
            paths: ["/exact", "/prefix/*", "*/suffix", "*"]
            notPaths: ["/not-exact", "/not-prefix/*", "*/not-suffix", "*"]
      - when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/security/authz/builder/testdata/http/custom-http-provider-out2.yaml

            value: value-2
        authorizationResponse:
          allowedClientHeaders:
            patterns:
            - exact: Set-cookie
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
          allowedClientHeadersOnSuccess:
            patterns:
            - exact: Set-cookie
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 12:45:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/fix/gotypes_test.go

    }
    
    var gotypesTests = []testCase{
    	{
    		Name: "gotypes.0",
    		In: `package main
    
    import "golang.org/x/tools/go/types"
    import "golang.org/x/tools/go/exact"
    
    var _ = exact.Kind
    
    func f() {
    	_ = exact.MakeBool(true)
    }
    `,
    		Out: `package main
    
    import "go/types"
    import "go/constant"
    
    var _ = constant.Kind
    
    func f() {
    	_ = constant.MakeBool(true)
    }
    `,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/TaskOrderSpecs.java

     *
     * An 'exact' rule asserts that all of the specified tasks occur in the order
     * provided.  Note that other tasks may appear - it only verifies that the
     * given tasks occur in order.
     *
     * exact(':b', ':d') would match on [ ':b', ':d' ] or say [ ':a', ':b', ':c', ':d' ]
     *
     * Assertions can also be nested:
     *
     * exact(':a', any(':b', ':c'), ':d') would match any of the following:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. samples/ambient-argo/application/ingress-gateway.yaml

      name: bookinfo
    spec:
      parentRefs:
      - name: bookinfo-gateway
      rules:
      - matches:
        - path:
            type: Exact
            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 760 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    				hasExtra = true
    			}
    			exact = old == t
    		} else {
    			exact = false
    		}
    		if hasExtra {
    			// We have some variants.
    			for i, s := range specialTags {
    				if s == t {
    					return ID(i + len(coreTags)), exact
    				}
    			}
    			exact = false
    		}
    	}
    	if x, ok := getCoreIndex(t); ok {
    		return x, exact
    	}
    	exact = false
    	if r != 0 && s == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top