Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for content_de (0.21 sec)

  1. src/main/resources/fess_indices/fess.json

          "excludes": [
            "content_ar",
            "content_bg",
            "content_bn",
            "content_ca",
            "content_ckb-iq",
            "content_cs",
            "content_da",
            "content_de",
            "content_el",
            "content_en",
            "content_en-ie",
            "content_es",
            "content_et",
            "content_eu",
            "content_fa",
            "content_fi",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  2. src/main/resources/fess_indices/_aws/fess.json

          "excludes": [
            "content_ar",
            "content_bg",
            "content_bn",
            "content_ca",
            "content_ckb-iq",
            "content_cs",
            "content_da",
            "content_de",
            "content_el",
            "content_en",
            "content_en-ie",
            "content_es",
            "content_et",
            "content_eu",
            "content_fa",
            "content_fi",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

          "excludes": [
            "content_ar",
            "content_bg",
            "content_bn",
            "content_ca",
            "content_ckb-iq",
            "content_cs",
            "content_da",
            "content_de",
            "content_el",
            "content_en",
            "content_en-ie",
            "content_es",
            "content_et",
            "content_eu",
            "content_fa",
            "content_fi",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-utils_test.go

    			arg: map[string]string{
    				xhttp.AmzRestore:                 "FAILED",
    				xhttp.ContentMD5:                 mustGetUUID(),
    				xhttp.AmzBucketReplicationStatus: "PENDING",
    				xhttp.ContentType:                "application/json",
    			},
    		},
    		{
    			name: "someempty",
    			arg: map[string]string{
    				xhttp.AmzRestore:                 "",
    				xhttp.ContentMD5:                 mustGetUUID(),
    				xhttp.AmzBucketReplicationStatus: "",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Sep 02 14:49:24 GMT 2023
    - 6K bytes
    - Viewed (0)
  5. src/cmd/buildid/buildid.go

    	f, err := os.Open(file)
    	if err != nil {
    		log.Fatal(err)
    	}
    	matches, hash, err := buildid.FindAndHash(f, id, 0)
    	f.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// <= go 1.7 doesn't embed the contentID or actionID, so no slash is present
    	if !strings.Contains(id, "/") {
    		log.Fatalf("%s: build ID is a legacy format...binary too old for this tool", file)
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 06 14:30:53 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle-handlers.go

    		return
    	}
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    
    	// PutBucketLifecycle always needs a Content-Md5
    	if _, ok := r.Header[xhttp.ContentMD5]; !ok {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMissingContentMD5), r.URL)
    		return
    	}
    
    	if s3Error := checkRequestAuthType(ctx, r, policy.PutBucketLifecycleAction, bucket, ""); s3Error != ErrNone {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Nov 21 17:48:06 GMT 2023
    - 7K bytes
    - Viewed (0)
  7. cmd/signature-v2.go

    	//	 Content-Type + "\n" +
    	//	 Date/Expires + "\n" +
    	//	 CanonicalizedProtocolHeaders +
    	//	 CanonicalizedResource;
    	stringToSign := strings.Join([]string{
    		method,
    		headers.Get(xhttp.ContentMD5),
    		headers.Get(xhttp.ContentType),
    		date,
    		canonicalHeaders,
    	}, "\n")
    
    	return stringToSign + canonicalizedResourceV2(encodedResource, encodedQuery)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  8. internal/http/headers.go

    package http
    
    // Standard S3 HTTP response constants
    const (
    	LastModified       = "Last-Modified"
    	Date               = "Date"
    	ETag               = "ETag"
    	ContentType        = "Content-Type"
    	ContentMD5         = "Content-Md5"
    	ContentEncoding    = "Content-Encoding"
    	Expires            = "Expires"
    	ContentLength      = "Content-Length"
    	ContentLanguage    = "Content-Language"
    	ContentRange       = "Content-Range"
    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/xl-storage-format_test.go

    		XLV1:             false,
    		ModTime:          time.Now(),
    		Size:             1234456,
    		Mode:             0,
    		Metadata: map[string]string{
    			xhttp.AmzRestore:                 "FAILED",
    			xhttp.ContentMD5:                 mustGetUUID(),
    			xhttp.AmzBucketReplicationStatus: "PENDING",
    			xhttp.ContentType:                "application/json",
    		},
    		Parts: []ObjectPartInfo{
    			{
    				Number:     1,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  10. internal/etag/etag.go

    	}
    	return ETag(b), nil
    }
    
    // ContentMD5Requested - for http.request.header is not request Content-Md5
    func ContentMD5Requested(h http.Header) bool {
    	_, ok := h[xhttp.ContentMD5]
    	return ok
    }
    
    // Multipart computes an S3 multipart ETag given a list of
    // S3 singlepart ETags. It returns nil if the list of
    // ETags is empty.
    //
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 21:09:36 GMT 2024
    - 13.3K bytes
    - Viewed (0)
Back to top