Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HttpHead (0.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        @Override
        public ResponseData doHead(final String url) {
            HttpUriRequest httpHead;
            try {
                httpHead = new HttpHead(url);
            } catch (final IllegalArgumentException e) {
                throw new CrawlingAccessException("The url may not be valid: " + url, e);
            }
            return doHttpMethod(url, httpHead);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu May 09 09:29:26 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. go.mod

    	github.com/go-openapi/spec v0.21.0 // indirect
    	github.com/go-openapi/strfmt v0.23.0 // indirect
    	github.com/go-openapi/swag v0.23.0 // indirect
    	github.com/go-openapi/validate v0.24.0 // indirect
    	github.com/gobwas/httphead v0.1.0 // indirect
    	github.com/gobwas/pool v0.2.1 // indirect
    	github.com/goccy/go-json v0.10.3 // indirect
    	github.com/gogo/protobuf v1.3.2 // indirect
    	github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top