Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 165 for fdel (0.05 sec)

  1. cmd/test-utils_test.go

    	}
    
    	// Anonymous request return early.
    	if accessKey == "" || secretKey == "" {
    		return req, nil
    	}
    
    	if signer == signerV2 {
    		err = signRequestV2(req, accessKey, secretKey)
    		req.Header.Del("x-amz-content-sha256")
    	} else {
    		req.Header.Set("x-amz-content-sha256", "92b165232fbd011da355eca0b033db22b934ba9af0145a437a832d27310b89f9")
    		err = signRequestV4(req, accessKey, secretKey)
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 77K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    				// skipped, like the meta-bucket.
    				if isReservedOrInvalidBucket(volInfo.Name, false) {
    					continue
    				}
    
    				healBuckets.Compute(volInfo.Name, func(oldValue VolInfo, loaded bool) (newValue VolInfo, del bool) {
    					if loaded {
    						newValue = oldValue
    						newValue.count = oldValue.count + 1
    						return newValue, false
    					}
    					return VolInfo{
    						Name:    volInfo.Name,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool-decom.go

    					expired++
    					decommissioned++
    					stopFn(version.Size, errors.New("ILM expired object/version will be skipped"))
    					continue
    				}
    
    				// any object with only single DEL marker we don't need
    				// to decommission, just skip it, this also includes
    				// any other versions that have already expired.
    				remainingVersions := len(fivs.Versions) - expired
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 42.1K bytes
    - Viewed (1)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0F18..0F19    ; valid                                  # 2.0  TIBETAN ASTROLOGICAL SIGN -KHYUD PA..TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS
    0F1A..0F1F    ; valid                  ;      ; NV8    # 2.0  TIBETAN SIGN RDEL DKAR GCIG..TIBETAN SIGN RDEL DKAR RDEL NAG
    0F20..0F29    ; valid                                  # 2.0  TIBETAN DIGIT ZERO..TIBETAN DIGIT NINE
    0F2A..0F34    ; valid                  ;      ; NV8    # 2.0  TIBETAN DIGIT HALF ONE..TIBETAN MARK BSDUS RTAGS
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	modTime := opts.MTime
    	if opts.MTime.IsZero() {
    		modTime = UTCNow()
    	}
    	fvID := mustGetUUID()
    
    	defer func() {
    		// attempt a heal before returning if there are offline disks
    		// for both del marker and permanent delete situations.
    		for _, disk := range storageDisks {
    			if disk != nil && disk.IsOnline() {
    				continue
    			}
    			er.addPartial(bucket, object, opts.VersionID)
    			break
    		}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 80.4K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    	if opts.Versioned {
    		w.Header().Set(xhttp.AmzVersionID, objInfo.VersionID)
    	}
    
    	lastModified := objInfo.ModTime.UTC().Format(http.TimeFormat)
    	w.Header().Set(xhttp.LastModified, lastModified)
    	w.Header().Del(xhttp.ContentType)
    
    	if _, ok := opts.ObjectAttributes[xhttp.Checksum]; ok {
    		chkSums, _ := objInfo.decryptChecksums(0, r.Header)
    		// AWS does not appear to append part number on this API call.
    		if len(chkSums) > 0 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 120.6K bytes
    - Viewed (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const NOTE_WRITE ideal-int
    pkg syscall (darwin-arm64), const OCRNL = 16
    pkg syscall (darwin-arm64), const OCRNL ideal-int
    pkg syscall (darwin-arm64), const OFDEL = 131072
    pkg syscall (darwin-arm64), const OFDEL ideal-int
    pkg syscall (darwin-arm64), const OFILL = 128
    pkg syscall (darwin-arm64), const OFILL ideal-int
    pkg syscall (darwin-arm64), const ONLCR = 2
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  8. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    frontier
    frosinone.it
    frosta.no
    froya.no
    fræna.no
    frøya.no
    fst.br
    ftpaccess.cc
    ftr
    fuchu.hiroshima.jp
    fuchu.tokyo.jp
    fuchu.toyama.jp
    fudai.iwate.jp
    fuefuki.yamanashi.jp
    fuel.aero
    fuettertdasnetz.de
    fuji.shizuoka.jp
    fujieda.shizuoka.jp
    fujiidera.osaka.jp
    fujikawa.shizuoka.jp
    fujikawa.yamanashi.jp
    fujikawaguchiko.yamanashi.jp
    fujimi.nagano.jp
    fujimi.saitama.jp
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  9. cmd/object-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: Failed to create HTTP request for Put Object: <ERROR> %v", i+1, err)
    		}
    		// Removes auth header if test case requires it.
    		if testCase.removeAuthHeader {
    			req.Header.Del("Authorization")
    		}
    		switch testCase.fault {
    		case malformedEncoding:
    			req, err = malformChunkSizeSigV4(req, testCase.chunkSize-1)
    		case signatureMismatch:
    			req, err = malformDataSigV4(req, 'z')
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 163.1K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (darwin-386), const NOTE_WRITE = 2
    pkg syscall (darwin-386), const OCRNL = 16
    pkg syscall (darwin-386), const OCRNL ideal-int
    pkg syscall (darwin-386), const OFDEL = 131072
    pkg syscall (darwin-386), const OFDEL ideal-int
    pkg syscall (darwin-386), const OFILL = 128
    pkg syscall (darwin-386), const OFILL ideal-int
    pkg syscall (darwin-386), const ONLCR = 2
    pkg syscall (darwin-386), const ONLCR ideal-int
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top