Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testCeiling (0.05 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

        assertEquals(c, sortedMultiset.headMultiset(c.getElement(), CLOSED).lastEntry());
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testCeiling() {
        resetWithHole();
    
        assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry());
        assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 20:14:36 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

        assertEquals(c, sortedMultiset.headMultiset(c.getElement(), CLOSED).lastEntry());
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testCeiling() {
        resetWithHole();
    
        assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry());
        assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 20:14:36 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. cmd/erasure-healing_test.go

    			}
    			if dangling != testCase.expectedDangling {
    				t.Errorf("Expected dangling %t, got %t", testCase.expectedDangling, dangling)
    			}
    		})
    	}
    }
    
    // Tests both object and bucket healing.
    func TestHealing(t *testing.T) {
    	ctx, cancel := context.WithCancel(t.Context())
    	defer cancel()
    
    	obj, fsDirs, err := prepareErasure16(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer obj.Shutdown(t.Context())
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 48.5K bytes
    - Viewed (0)
Back to top