Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dquorum (0.05 sec)

  1. cmd/erasure-object.go

    		return objInfo, wquorum, toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    
    	if fi.Deleted {
    		if opts.VersionID == "" || opts.DeleteMarker {
    			return objInfo, wquorum, toObjectErr(errFileNotFound, bucket, object)
    		}
    		// Make sure to return object info to provide extra information.
    		return objInfo, wquorum, toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 24 04:05:31 UTC 2025
    - 80.4K bytes
    - Viewed (0)
  2. cmd/erasure-object-conditional_test.go

    		if !isErrReadQuorum(err) {
    			t.Errorf("Expected read quorum error when if-none-match is used with quorum failure, got: %v", err)
    		}
    	})
    
    	t.Run("if-match with read quorum failure", func(t *testing.T) {
    		// Test Case 2: if-match (update only if ETag matches)
    		// With if-match: <etag>, this should only succeed if object exists with matching ETag.
    		// Since read quorum fails, we can't determine if object exists or ETag matches.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 24 04:05:31 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. cmd/erasure-multipart-conditional_test.go

    		if !isErrReadQuorum(err) {
    			t.Errorf("Expected read quorum error when if-none-match is used with quorum failure, got: %v", err)
    		}
    	})
    
    	t.Run("if-match with wrong ETag and read quorum failure", func(t *testing.T) {
    		// Test Case 2: if-match with WRONG ETag
    		// This should fail even without quorum issues, but with quorum failure
    		// we can't verify the ETag at all.
    		opts := ObjectOptions{
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 24 04:05:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  4. cmd/erasure-multipart.go

    		return fi, nil, errErasureReadQuorum
    	}
    
    	if writeQuorum < 0 {
    		return fi, nil, errErasureWriteQuorum
    	}
    
    	quorum := readQuorum
    	if write {
    		quorum = writeQuorum
    	}
    
    	// List all online disks.
    	_, modTime, etag := listOnlineDisks(storageDisks, partsMetadata, errs, quorum)
    
    	if write {
    		err = reduceWriteQuorumErrs(ctx, errs, objectOpIgnoredErrs, writeQuorum)
    	} else {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 24 04:05:31 UTC 2025
    - 47.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_tr.properties

    labels.authRealm=Alan
    labels.available=Durum
    labels.createdBy=Oluşturan
    labels.createdTime=Oluşturma Zamanı
    labels.depth=Derinlik
    labels.excludedPaths=Tarama için Hariç Tutulan Yollar
    labels.excludedUrls=Tarama için Hariç Tutulan URL'ler
    labels.excludedDocPaths=Arama için Hariç Tutulan Yollar
    labels.excludedDocUrls=Arama için Hariç Tutulan URL'ler
    labels.hostname=Ana Bilgisayar Adı
    labels.id=ID
    labels.includedPaths=Tarama için Dahil Edilen Yollar
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 47K bytes
    - Viewed (0)
  6. docs/tr/docs/alternatives.md

    Hug ile birlikte (Hug zaten Falcon'a dayandığından) **FastAPI**'ın fonksiyonlarda `cevap` parametresi belirtmesinde ilham kaynağı oldu.
    
    FastAPI'da opsiyonel olmasına rağmen, daha çok header'lar, çerezler ve alternatif durum kodları belirlemede kullanılıyor.
    
    ///
    
    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 28.7K bytes
    - Viewed (0)
Back to top