Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for CONTENT_LENGTH (0.17 sec)

  1. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/entity/EsAccessResult.java

        public static final String MIME_TYPE = "mimeType";
    
        public static final String CREATE_TIME = "createTime";
    
        public static final String EXECUTION_TIME = "executionTime";
    
        public static final String CONTENT_LENGTH = "contentLength";
    
        public static final String LAST_MODIFIED = "lastModified";
    
        public static final String ACCESS_RESULT_DATA = "accessResultData";
    
        private boolean initializedData = false;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    labels.facet_contentLength_title:\
    labels.facet_contentLength_10k=content_length:[0 TO 9999]\t\
    labels.facet_contentLength_10kto100k=content_length:[10000 TO 99999]\t\
    labels.facet_contentLength_100kto500k=content_length:[100000 TO 499999]\t\
    labels.facet_contentLength_500kto1m=content_length:[500000 TO 999999]\t\
    labels.facet_contentLength_1m=content_length:[1000000 TO *]\n\
    labels.facet_filetype_title:\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/net/http/cgi/child.go

    	}
    
    	r.Close = true
    	r.Trailer = http.Header{}
    	r.Header = http.Header{}
    
    	r.Host = params["HTTP_HOST"]
    
    	if lenstr := params["CONTENT_LENGTH"]; lenstr != "" {
    		clen, err := strconv.ParseInt(lenstr, 10, 64)
    		if err != nil {
    			return nil, errors.New("cgi: bad CONTENT_LENGTH in environment: " + lenstr)
    		}
    		r.ContentLength = clen
    	}
    
    	if ct := params["CONTENT_TYPE"]; ct != "" {
    		r.Header.Set("Content-Type", ct)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResponseResource.java

                }
            }
            return null;
        }
    
        public long getContentLength() {
            String header = response.getHeader(HttpHeaders.CONTENT_LENGTH);
            if (header == null) {
                return -1;
            }
    
            try {
                return Long.parseLong(header);
            } catch (NumberFormatException e) {
                return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_aws/fess/doc.json

          },
          "content_minhash": {
            "type": "keyword",
            "index": false
          },
          "content_minhash_bits": {
            "type": "keyword",
            "index": false
          },
          "content_length": {
            "type": "long"
          },
          "created": {
            "type": "date",
            "format": "date_optional_time"
          },
          "timestamp": {
            "type": "date",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_cloud/fess/doc.json

          },
          "content_minhash": {
            "type": "keyword",
            "index": false
          },
          "content_minhash_bits": {
            "type": "keyword",
            "index": false
          },
          "content_length": {
            "type": "long"
          },
          "created": {
            "type": "date",
            "format": "date_optional_time"
          },
          "timestamp": {
            "type": "date",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/doc.json

            "index": false
          },
          "content_minhash_bits": {
            "type": "minhash",
            "bit_string": true,
            "minhash_analyzer": "minhash_analyzer"
          },
          "content_length": {
            "type": "long"
          },
          "created": {
            "type": "date",
            "format": "date_optional_time"
          },
          "timestamp": {
            "type": "date",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // title
            // content
            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
            defaultDataMap.put(fessConfig.getIndexFieldVirtualHost(),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            }
        }
    
        @Test
        public void searchTestWithSort() throws Exception {
            String sortField = "content_length";
            Map<String, String> params = new HashMap<>();
            params.put("q", "*");
            params.put("sort", sortField + ".asc");
            params.put("num", "100");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      if ((TF_GetCode(status) != TF_OK) &&
          (TF_GetCode(status) != TF_OUT_OF_RANGE)) {
        return -1;
      }
      int64_t read;
      auto content_length = stream.headers().find("content-length");
      if (content_length == stream.headers().end()) {
        // When we read a file with offset that is bigger than the actual file size.
        // GCS will return an empty header (e.g no `content-length` header). In this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
Back to top