Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for path_match (0.16 sec)

  1. 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": {
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 25 13:38:21 GMT 2022
    - 1.6K 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 &&
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 04:12:05 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top