Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for inexact (0.18 sec)

  1. src/net/http/server.go

    //
    // Before wildcards were introduced, it was clear that an exact match meant
    // that the pattern and path were the same string. The only other possibility
    // was that a trailing-slash pattern, like "/", matched a path longer than
    // it, like "/a".
    //
    // With wildcards, we define an inexact match as any one where a multi wildcard
    // matches a non-empty string. All other matches are exact.
    // For example, these are all exact matches:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
        - {{ .dstSvc }}
      http:
      - match:
        - uri:
            exact: /foo
        redirect:
          uri: /new/path
      - match:
        - uri:
            exact: /new/path
        route:
        - destination:
            host: {{ .dstSvc }}`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "http",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. istioctl/pkg/authz/testdata/configdump.yaml

                           "or_rules": {
                            "rules": [
                             {
                              "url_path": {
                               "path": {
                                "exact": "/data"
                               }
                              }
                             }
                            ]
                           }
                          }
                         ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    						return &r
    					}(),
    				},
    			},
    		},
    		expectedError: `spec.matchConstraints.matchPolicy: Unsupported value: "other": supported values: "Equivalent", "Exact"`,
    	}, {
    		name: "Operations must not be empty or nil",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: 'HTTP Authority values are case-sensitive and formatted as follows: - `exact: "value"` for exact string match - `prefix: "value"` for prefix-based match - `regex: "value"` for RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax).' oneOf: - not: anyOf: - required: - exact - required: - prefix - required: - regex - required: - exact - required: - prefix - required: - regex properties: exact: type: string prefix: type: string regex: description: RE2 style regex-based match...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    		}, valid: false},
    		{name: "non empty matchType AllowOrigins", in: &networking.CorsPolicy{
    			AllowOrigins: []*networking.StringMatch{
    				{MatchType: &networking.StringMatch_Exact{Exact: "exact"}},
    				{MatchType: &networking.StringMatch_Prefix{Prefix: "prefix"}},
    				{MatchType: &networking.StringMatch_Regex{Regex: "regex"}},
    			},
    			AllowMethods:  []string{"GET", "POST"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      }
    
      TF_EXPECT_GRAPH_EQ(graphdef_expected, graphdef);
      TF_EXPECT_FUNCTIONDEFLIBRARY_EQ(library_expected, library);
    }
    
    // Test with two outside_compilation clusters that interact outside the compiled
    // subgraph, where the ancestor has no HostCompute Op.
    TEST(EncapsulateSubgraphsTest,
         OutsideCompilationClusterDependencyNoSrcCluster) {
      FunctionDefLibrary library;
      GraphDef graphdef;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a view of a map where each value is transformed by a function. All other properties of
       * the map, such as iteration order, are left intact. For example, the code:
       *
       * <pre>{@code
       * Map<String, Integer> map = ImmutableMap.of("a", 4, "b", 9);
       * Function<Integer, Double> sqrt =
       *     new Function<Integer, Double>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a view of a map where each value is transformed by a function. All other properties of
       * the map, such as iteration order, are left intact. For example, the code:
       *
       * <pre>{@code
       * Map<String, Integer> map = ImmutableMap.of("a", 4, "b", 9);
       * Function<Integer, Double> sqrt =
       *     new Function<Integer, Double>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		analyzeUnreachableTLSRules(virtualService.Tls, warnUnused, warnIneffective)
    
    		return errs.Unwrap()
    	})
    
    func assignExactOrPrefix(exact, prefix string) string {
    	if exact != "" {
    		return matchExact + exact
    	}
    	if prefix != "" {
    		return matchPrefix + prefix
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top