Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for contentLang (0.42 sec)

  1. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    				</la:option>
    			</c:if>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    		<legend><la:message key="labels.index_lang" /></legend>
    		<label for="contentLang"><la:message key="labels.index_lang" /></label>
    		<la:select property="lang" styleId="langSearchOption" multiple="true"
    			styleClass="form-control">
    			<c:forEach var="item" items="${langItems}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Jul 17 08:19:53 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/searchOptions.jsp

    				</la:option>
    			</c:if>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    		<legend><la:message key="labels.index_lang" /></legend>
    		<label for="contentLang"><la:message key="labels.index_lang" /></label>
    		<la:select property="lang" styleId="langSearchOption" multiple="true"
    			styleClass="form-control">
    			<c:forEach var="item" items="${langItems}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Jul 17 08:19:53 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/advance.jsp

    							</la:option>
    						</c:if>
    					</la:select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    				<label for="contentLang" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.index_lang"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    							</la:option>
    						</c:if>
    					</la:select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    				<label for="contentLang" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.index_lang"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  5. cmd/api-headers.go

    		return err
    	}
    
    	// Set content length.
    	w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    	if rs != nil {
    		contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, totalObjectSize)
    		w.Header().Set(xhttp.ContentRange, contentRange)
    	}
    
    	// Set the relevant version ID as part of the response header.
    	if objInfo.VersionID != "" && objInfo.VersionID != nullVersionID {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 6.9K bytes
    - Viewed (1)
  6. cmd/object-handlers.go

    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    							w.Header().Set(xhttp.ContentRange, contentRange)
    						}
    
    						io.Copy(w, bytes.NewReader(ci.Data))
    						return
    					}
    					if ci.StatusCode == http.StatusPreconditionFailed {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  7. cmd/api-router.go

    func corsHandler(handler http.Handler) http.Handler {
    	commonS3Headers := []string{
    		xhttp.Date,
    		xhttp.ETag,
    		xhttp.ServerInfo,
    		xhttp.Connection,
    		xhttp.AcceptRanges,
    		xhttp.ContentRange,
    		xhttp.ContentEncoding,
    		xhttp.ContentLength,
    		xhttp.ContentType,
    		xhttp.ContentDisposition,
    		xhttp.LastModified,
    		xhttp.ContentLanguage,
    		xhttp.CacheControl,
    		xhttp.RetryAfter,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  8. internal/http/headers.go

    	ContentMD5         = "Content-Md5"
    	ContentEncoding    = "Content-Encoding"
    	Expires            = "Expires"
    	ContentLength      = "Content-Length"
    	ContentLanguage    = "Content-Language"
    	ContentRange       = "Content-Range"
    	Connection         = "Connection"
    	AcceptRanges       = "Accept-Ranges"
    	AmzBucketRegion    = "X-Amz-Bucket-Region"
    	ServerInfo         = "Server"
    	RetryAfter         = "Retry-After"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 10.4K bytes
    - Viewed (1)
  9. cmd/bucket-replication-utils.go

    var contentRangeRegexp = regexp.MustCompile(`bytes ([0-9]+)-([0-9]+)/([0-9]+|\\*)`)
    
    // parse size from content-range header
    func parseSizeFromContentRange(h http.Header) (sz int64, err error) {
    	cr := h.Get(xhttp.ContentRange)
    	if cr == "" {
    		return sz, fmt.Errorf("Content-Range not set")
    	}
    	parts := contentRangeRegexp.FindStringSubmatch(cr)
    	if len(parts) != 4 {
    		return sz, fmt.Errorf("invalid Content-Range header %s", cr)
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
Back to top