Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 467 for Matcher (0.18 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    
            for (int i = 0; i < lines.length; i++) {
                String line = lines[i];
                if (!WHITESPACE.matcher(line).matches()) {
                    builder.append(indent);
                }
                builder.append(line);
                if (i < lines.length - 1) {
                    builder.append('\n');
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                typeName = "? extends " + superclass.getTypeName();
            } else {
                typeName = type.getTypeName();
            }
    
            return PACKAGE_AND_PARENT
                    .matcher(ARRAY_SIGNATURE.matcher(typeName).replaceAll("$1[]"))
                    .replaceAll("");
        }
    
        public static @Nullable Object getOuterClassInstance(Object innerClassInstance) {
            if (innerClassInstance == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

     * limitations under the License.
     */
    package org.gradle.api.plugins.quality.pmd
    
    
    import org.hamcrest.Matcher
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.SuggestionsMessages.SCAN
    import static org.gradle.util.Matchers.containsLine
    import static org.hamcrest.CoreMatchers.containsString
    import static org.hamcrest.CoreMatchers.not
    import static org.junit.Assume.assumeTrue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Predicates.java

       * Returns a predicate that evaluates to {@code true} if the {@code CharSequence} being tested
       * contains any match for the given regular expression pattern. The test used is equivalent to
       * {@code Pattern.compile(pattern).matcher(arg).find()}
       *
       * @throws IllegalArgumentException if the pattern is invalid
       * @since 3.0
       */
      @GwtIncompatible // Only used by other GWT-incompatible code.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/codecs/kafka/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/matcher/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Predicates.java

       * Returns a predicate that evaluates to {@code true} if the {@code CharSequence} being tested
       * contains any match for the given regular expression pattern. The test used is equivalent to
       * {@code Pattern.compile(pattern).matcher(arg).find()}
       *
       * @throws IllegalArgumentException if the pattern is invalid
       * @since 3.0
       */
      @GwtIncompatible // Only used by other GWT-incompatible code.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/model/model.go

    	attrEnvoyFilter      = "experimental.envoy.filters." // an experimental attribute for checking Envoy Metadata directly.
    
    	// Internal names used to generate corresponding Envoy matcher.
    	methodHeader = ":method"
    	pathMatcher  = "path-matcher"
    	hostHeader   = ":authority"
    )
    
    type rule struct {
    	key       string
    	values    []string
    	notValues []string
    	g         generator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

    import org.gradle.util.Matchers
    import org.gradle.util.internal.Resources
    import org.gradle.util.internal.ToBeImplemented
    import org.gradle.util.internal.VersionNumber
    import org.hamcrest.Matcher
    import org.junit.Assume
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.util.Matchers.containsLine
    import static org.gradle.util.Matchers.containsText
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  9. pkg/registry/core/service/strategy.go

    	service, ok := obj.(*api.Service)
    	if !ok {
    		return nil, nil, fmt.Errorf("not a service")
    	}
    	return service.Labels, SelectableFields(service), nil
    }
    
    // Matcher returns a selection predicate for a given label and field selector.
    func Matcher(label labels.Selector, field fields.Selector) pkgstorage.SelectionPredicate {
    	return pkgstorage.SelectionPredicate{
    		Label:    label,
    		Field:    field,
    		GetAttrs: GetAttrs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tests/integration/security/reachability_test.go

    						Path: migrationPathNonIstio,
    					},
    				},
    			}
    
    			cases := []struct {
    				name               string
    				configs            config.Sources
    				fromMatch          match.Matcher
    				toMatch            match.Matcher
    				callOpts           []echo.CallOptions
    				expectMTLS         condition
    				expectCrossCluster condition
    				expectCrossNetwork condition
    				expectSuccess      condition
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top