Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for m_regex (0.27 sec)

  1. fastapi/param_functions.py

            ),
        ] = None,
        pattern: Annotated[
            Optional[str],
            Doc(
                """
                RegEx pattern for strings.
                """
            ),
        ] = None,
        regex: Annotated[
            Optional[str],
            Doc(
                """
                RegEx pattern for strings.
                """
            ),
            deprecated(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

                <trusting group="^com[.]diffplug($|([.].*))" regex="true"/>
                <trusting group="^org[.]jetbrains($|([.].*))" regex="true"/>
                <trusting group="^org[.]rnorth($|([.].*))" regex="true"/>
             </trusted-key>
             <trusted-key id="8A10792983023D5D14C93B488D7F1BEC1E2ECAE7" group="^com[.]fasterxml($|([.].*))" regex="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    					},
    				},
    			},
    		},
    		{
    			name: "url regex conflict",
    			root: []*networking.HTTPMatchRequest{
    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    					},
    				},
    			},
    			delegate: []*networking.HTTPMatchRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    		}))
    		g.Expect(routeAction.Route.RegexRewrite).To(Equal(&matcher.RegexMatchAndSubstitute{
    			Pattern: &matcher.RegexMatcher{
    				Regex: "/.*",
    			},
    			Substitution: "/replace-full",
    		}))
    	})
    
    	t.Run("for path regex match with regex rewrite", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    [PARSER]
        Name        containerd
        Format      regex
        Regex       ^(?<time>.+) (?<stream>stdout|stderr) [^ ]* (?<log>.*)$
        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
    
    [PARSER]
        Name        json
        Format      json
    
    [PARSER]
        Name        syslog
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    				Pattern: &matcher.RegexMatcher{
    					Regex: regexRewrite.Match,
    				},
    				Substitution: regexRewrite.Rewrite,
    			}
    		} else if uri := in.Rewrite.GetUri(); uri != "" {
    			if model.UseGatewaySemantics(vs) && uri == "/" {
    				// remove the prefix
    				action.RegexRewrite = &matcher.RegexMatchAndSubstitute{
    					Pattern: &matcher.RegexMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        # Provide a regex that wouldn't match any quantizable units.
                        matcher=qc.MatcherSpec(
                            function_name=qc.FunctionNameMatcherSpec(
                                regex='.*invalid_function_name.*'
                            ),
                        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    				MatchType: &istio.StringMatch_Regex{Regex: fmt.Sprintf("/[^/]+/%s", *m.Method)},
    			}, nil
    		}
    		return &istio.StringMatch{
    			MatchType: &istio.StringMatch_Exact{Exact: fmt.Sprintf("/%s/%s", *m.Service, *m.Method)},
    		}, nil
    	case k8s.GRPCMethodMatchRegularExpression:
    		if m.Method == nil {
    			return &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: fmt.Sprintf("/%s/.+", *m.Service)},
    			}, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			setMaxElements:             10,
    			expectedSetCost:            3552,
    		},
    		{
    			name:             "regex matches simple",
    			schemaGenerator:  genStringWithRule(`self.matches("x")`),
    			expectedCalcCost: 314574,
    			setMaxElements:   50,
    			expectedSetCost:  22,
    		},
    		{
    			name:             "regex matches empty string",
    			schemaGenerator:  genStringWithRule(`"".matches("(((((((((())))))))))[0-9]")`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

    import java.util.Objects;
    import java.util.Optional;
    import java.util.Set;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.function.UnaryOperator;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    import java.util.stream.StreamSupport;
    
    import org.apache.maven.api.di.Inject;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top