Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for urlMatch (0.04 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java

            public boolean match(ResponseData responseData) {
                if (responseData == null) {
                    return false;
                }
    
                boolean urlMatch = true;
                if (urlPattern != null && responseData.getUrl() != null) {
                    urlMatch = responseData.getUrl().matches(urlPattern);
                }
    
                boolean mimeMatch = true;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

         */
    
        @Override
        public String getName() {
            final String urlpath = getURLPath();
            final String shr = getShare();
            if (urlpath.length() > 1) {
                int i = urlpath.length() - 2;
                while (urlpath.charAt(i) != '/') {
                    i--;
                }
                return urlpath.substring(i + 1);
            }
            if (shr != null) {
                return shr + '/';
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          url: HttpUrl,
          path: String,
        ): Boolean {
          val urlPath = url.encodedPath
    
          if (urlPath == path) {
            return true // As in '/foo' matching '/foo'.
          }
    
          if (urlPath.startsWith(path)) {
            if (path.endsWith("/")) return true // As in '/' matching '/foo'.
            if (urlPath[path.length] == '/') return true // As in '/foo' matching '/foo/bar'.
          }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  4. cmd/signature-v4.go

    //	<CanonicalHeaders>\n
    //	<SignedHeaders>\n
    //	<HashedPayload>
    func getCanonicalRequest(extractedSignedHeaders http.Header, payload, queryStr, urlPath, method string) string {
    	rawQuery := strings.ReplaceAll(queryStr, "+", "%20")
    	encodedPath := s3utils.EncodePath(urlPath)
    	canonicalRequest := strings.Join([]string{
    		method,
    		encodedPath,
    		rawQuery,
    		getCanonicalHeaders(extractedSignedHeaders),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Dec 13 22:19:12 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. cmd/generic-handlers.go

    var redirectPrefixes = map[string]struct{}{
    	"favicon-16x16.png": {},
    	"favicon-32x32.png": {},
    	"favicon-96x96.png": {},
    	"index.html":        {},
    	minioReservedBucket: {},
    }
    
    // Fetch redirect location if urlPath satisfies certain
    // criteria. Some special names are considered to be
    // redirectable, this is purely internal function and
    // serves only limited purpose on redirect-handler for
    // browser requests.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 20.7K bytes
    - Viewed (1)
Back to top