Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 467 for Matcher (0.13 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    		// For headless service, discovery type will be `Cluster_ORIGINAL_DST`
    		// Apply auto mtls to clusters excluding these kind of headless services.
    		if istioAutodetectedMtls {
    			// convert to transport socket matcher if the mode was auto detected
    			transportSocket := c.cluster.TransportSocket
    			c.cluster.TransportSocket = nil
    			c.cluster.TransportSocketMatches = []*cluster.Cluster_TransportSocketMatch{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb.py

    #
    #  Register all the *Printer classes above.
    #
    
    def makematcher(klass):
    	def matcher(val):
    		try:
    			if klass.pattern.match(str(val.type)):
    				return klass(val)
    			elif paramtypematch(val.type, klass.pattern):
    				return klass(val.cast(val.type.target()))
    		except Exception:
    			pass
    	return matcher
    
    goobjfile.pretty_printers.extend([makematcher(var) for var in vars().values() if hasattr(var, 'pattern')])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

         */
        public interface BuildableExpectedRequest extends ExpectedRequest {
            /**
             * Verifies that the user agent provided in the request matches the given criteria.
             *
             * @return this
             */
            BuildableExpectedRequest expectUserAgent(Matcher expectedUserAgent);
    
            /**
             * Sends a 404 response with some arbitrary content as the response body.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	retryTimeout = retry.Timeout(1 * time.Minute)
    	retryDelay   = retry.Delay(500 * time.Millisecond)
    
    	hostTypes = []hostType{hostTypeClusterSetLocal, hostTypeClusterLocal}
    
    	serviceA match.Matcher
    	serviceB match.Matcher
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		RequireMinVersion(17).
    		RequireMinClusters(2).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            verifyFullDependencies(metadata.dependencies)
    
            def rules = metadata.excludes
            rules.size() == 2
            rules[0].matcher == PatternMatcher.GLOB
            rules[0].configurations as List == ["myconf1"]
            rules[1].matcher == PatternMatcher.EXACT
            rules[1].configurations as List == ["myconf1", "myconf2", "myconf3", "myconf4", "myoldconf"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            }
            final List<String> urlList = new ArrayList<>();
            for (final FailureUrl failureUrl : list) {
                if (pattern != null) {
                    if (!pattern.matcher(failureUrl.getErrorName()).matches()) {
                        urlList.add(failureUrl.getUrl());
                    }
                } else {
                    urlList.add(failureUrl.getUrl());
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    import org.gradle.util.UsesNativeServices
    import org.gradle.util.internal.VersionNumber
    import org.junit.Rule
    import spock.lang.Specification
    import spock.lang.Issue
    
    import java.util.regex.Matcher
    
    import static org.gradle.nativeplatform.toolchain.internal.gcc.metadata.GccCompilerType.CLANG
    import static org.gradle.nativeplatform.toolchain.internal.gcc.metadata.GccCompilerType.GCC
    
    @UsesNativeServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

    import static org.gradle.api.tasks.TaskDependencyMatchers.dependsOn
    import static org.hamcrest.CoreMatchers.hasItem
    import static org.hamcrest.CoreMatchers.hasItems
    import static org.hamcrest.CoreMatchers.not
    import static spock.util.matcher.HamcrestSupport.that
    
    class CheckstylePluginTest extends AbstractProjectBuilderSpec {
    
        def setup() {
            project.pluginManager.apply(CheckstylePlugin)
            project.file("config/checkstyle").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                    String pluginGroup = pluginGroups.get(i);
    
                    validateStringNotEmpty(problems, "pluginGroups.pluginGroup[" + i + "]", pluginGroup, null);
    
                    if (!ID_REGEX.matcher(pluginGroup).matches()) {
                        addViolation(
                                problems,
                                BuilderProblem.Severity.ERROR,
                                "pluginGroups.pluginGroup[" + i + "]",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

    import static org.gradle.api.tasks.TaskDependencyMatchers.dependsOn
    import static org.hamcrest.CoreMatchers.hasItem
    import static org.hamcrest.CoreMatchers.hasItems
    import static org.hamcrest.CoreMatchers.not
    import static spock.util.matcher.HamcrestSupport.that
    
    class PmdPluginTest extends AbstractProjectBuilderSpec {
    
        def setup() {
            project.pluginManager.apply(PmdPlugin)
        }
    
        def "applies reporting-base plugin"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top