Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pathMatch (0.14 sec)

  1. src/net/http/cookiejar/jar.go

    func (e *entry) domainMatch(host string) bool {
    	if e.Domain == host {
    		return true
    	}
    	return !e.HostOnly && hasDotSuffix(host, e.Domain)
    }
    
    // pathMatch implements "path-match" according to RFC 6265 section 5.1.4.
    func (e *entry) pathMatch(requestPath string) bool {
    	if requestPath == e.Path {
    		return true
    	}
    	if strings.HasPrefix(requestPath, e.Path) {
    		if e.Path[len(e.Path)-1] == '/' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Cookie.kt

        val domainMatch =
          if (hostOnly) {
            url.host == domain
          } else {
            domainMatch(url.host, domain)
          }
        if (!domainMatch) return false
    
        if (!pathMatch(url, path)) return false
    
        return !secure || url.isHttps
      }
    
      override fun equals(other: Any?): Boolean {
        return other is Cookie &&
          other.name == name &&
          other.value == value &&
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_log.search_log/search_log.json

          {
            "headers": {
              "path_match": "headers.*",
              "mapping": {
                "type": "keyword"
              }
            }
          },
          {
            "search_fields": {
              "path_match": "searchField.*",
              "mapping": {
                "type": "keyword"
              }
            }
          },
          {
            "documents": {
              "path_match": "documents.*",
              "mapping": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 25 13:38:21 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top