Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  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());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 20:14:36 GMT 2024
    - 26K bytes
    - Click Count (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());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 20:14:36 GMT 2024
    - 26K bytes
    - Click Count (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())
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 48.5K bytes
    - Click Count (0)
Back to Top