Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,244 for m_regex (0.16 sec)

  1. samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt

        val mainFiles = mainFiles()
        return mainFiles.map {
          val suffix = it.path.replace("${prefix}samples/guide/src/main/java/", "")
          suffix.replace("(.*)\\.java".toRegex()) { mr ->
            mr.groupValues[1].replace('/', '.')
          }.replace("(.*)\\.kt".toRegex()) { mr ->
            mr.groupValues[1].replace('/', '.') + "Kt"
          }
        }.sorted()
      }
    }
    
    @Disabled("Don't run by default")
    @Tag("Slow")
    class AllMainsTest {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/all_golden.json

            "regex": "^mongo\\.(.+?)\\.(collection|cmd|cx_|op_|delays_|decoding_)(.*?)$"
          },
          {
            "regex": "(cache\\.(.+?)\\.)",
            "tag_name": "cache"
          },
          {
            "regex": "(component\\.(.+?)\\.)",
            "tag_name": "component"
          },
          {
            "regex": "(tag\\.(.+?);\\.)",
            "tag_name": "tag"
          },
          {
            "regex": "(wasm_filter\\.(.+?)\\.)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

            "regex": "^mongo\\.(.+?)\\.(collection|cmd|cx_|op_|delays_|decoding_)(.*?)$"
          },
          {
            "regex": "(cache\\.(.+?)\\.)",
            "tag_name": "cache"
          },
          {
            "regex": "(component\\.(.+?)\\.)",
            "tag_name": "component"
          },
          {
            "regex": "(tag\\.(.+?);\\.)",
            "tag_name": "tag"
          },
          {
            "regex": "(wasm_filter\\.(.+?)\\.)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/config/validation/virtualservice_test.go

    		{name: "regex without headers match ?", route: &networking.HTTPRoute{
    			Redirect: &networking.HTTPRedirect{
    				Uri:       "/",
    				Authority: "foo.biz",
    			},
    			Match: []*networking.HTTPMatchRequest{{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    						MatchType: &networking.StringMatch_Regex{Regex: "?"},
    					},
    				},
    			}},
    		}, valid: false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

            "regex": "^mongo\\.(.+?)\\.(collection|cmd|cx_|op_|delays_|decoding_)(.*?)$"
          },
          {
            "regex": "(cache\\.(.+?)\\.)",
            "tag_name": "cache"
          },
          {
            "regex": "(component\\.(.+?)\\.)",
            "tag_name": "component"
          },
          {
            "regex": "(tag\\.(.+?);\\.)",
            "tag_name": "tag"
          },
          {
            "regex": "(wasm_filter\\.(.+?)\\.)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

            "regex": "^mongo\\.(.+?)\\.(collection|cmd|cx_|op_|delays_|decoding_)(.*?)$"
          },
          {
            "regex": "(cache\\.(.+?)\\.)",
            "tag_name": "cache"
          },
          {
            "regex": "(component\\.(.+?)\\.)",
            "tag_name": "component"
          },
          {
            "regex": "(tag\\.(.+?);\\.)",
            "tag_name": "tag"
          },
          {
            "regex": "(wasm_filter\\.(.+?)\\.)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/matcher/header.go

    // HostMatcherWithRegex creates a host matcher for a host using regex for proxies before 1.11.
    func HostMatcherWithRegex(k, v string) *routepb.HeaderMatcher {
    	var regex string
    	if v == "*" {
    		return &routepb.HeaderMatcher{
    			Name: k,
    			HeaderMatchSpecifier: &routepb.HeaderMatcher_PresentMatch{
    				PresentMatch: true,
    			},
    		}
    	} else if strings.HasPrefix(v, "*") {
    		regex = `.*` + regexp.QuoteMeta(v[1:])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsPathMapping.java

            this.processType = value;
        }
    
        public String getRegex() {
            checkSpecifiedProperty("regex");
            return convertEmptyToNull(regex);
        }
    
        public void setRegex(String value) {
            registerModifiedProperty("regex");
            this.regex = value;
        }
    
        public String getReplacement() {
            checkSpecifiedProperty("replacement");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap.jsp

                                    <la:form action="/admin/pathmap/">
                                        <div class="form-group row">
                                            <label for="regex" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.regex"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            when:
            descriptor.includeGroupByRegex(null)
    
            then:
            IllegalArgumentException ex = thrown()
            ex.message == "Group regex cannot be null"
    
            when:
            descriptor.includeModuleByRegex("foo", null)
    
            then:
            ex = thrown()
            ex.message == "Module name regex cannot be null"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top