Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for SetList (0.18 sec)

  1. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	}
    
    	setList, err := fake.ListSets()
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if len(setList) != 2 {
    		t.Errorf("Expected 2 sets, got %d", len(setList))
    	}
    	expectedSets := sets.NewString("foo", "bar")
    	if !expectedSets.Equal(sets.NewString(setList...)) {
    		t.Errorf("Unexpected sets mismatch, expected: %v, got: %v", expectedSets, setList)
    	}
    
    	// Destroy a given set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    	for _, setList := range podLabelsMap {
    		if hasMatchingPodsRunningIn(selector, setList) {
    			return true
    		}
    	}
    	return false
    }
    
    func hasMatchingPodsRunningIn(selector klabels.Selector, setList []klabels.Set) bool {
    	hasMatchingPods := false
    	for _, labels := range setList {
    		if selector.Matches(labels) {
    			hasMatchingPods = true
    			break
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/TestEntity.java

    /**
     * @author shinsuke
     *
     */
    public class TestEntity {
        private String title;
    
        private String body;
    
        private List<String> list;
    
        public List<String> getList() {
            return list;
        }
    
        public void setList(final List<String> list) {
            this.list = list;
        }
    
        public String getTitle() {
            return title;
        }
    
        public void setTitle(final String title) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/test/api_meta_help_test.go

    		&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "1"}},
    		&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "2"}},
    		&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "3"}},
    	}
    	err := meta.SetList(pl, list)
    	if err != nil {
    		t.Fatalf("Unexpected error %v", err)
    	}
    	if e, a := len(list), len(pl.Items); e != a {
    		t.Fatalf("Expected %v, got %v", e, a)
    	}
    	for i := range list {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/embedded_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if errs := runtime.DecodeList(list2, codec); len(errs) > 0 {
    		t.Fatalf("unexpected error: %v", errs)
    	}
    	if err := meta.SetList(list[3], list2); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	// we want DecodeList to set type meta if possible, even on runtime.Unknown objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 06 16:07:10 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

        assertTrue(
            "addAll(n, allPresent) should return true",
            getList().addAll(0, MinimalCollection.of(e0())));
        expectAdded(0, e0());
      }
    
      @ListFeature.Require(absent = SUPPORTS_ADD_WITH_INDEX)
      @CollectionSize.Require(absent = ZERO)
      public void testAddAllAtIndex_unsupportedAllPresent() {
        try {
          getList().addAll(0, MinimalCollection.of(e0()));
          fail("addAll(n, allPresent) should throw");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

        assertTrue(
            "addAll(n, allPresent) should return true",
            getList().addAll(0, MinimalCollection.of(e0())));
        expectAdded(0, e0());
      }
    
      @ListFeature.Require(absent = SUPPORTS_ADD_WITH_INDEX)
      @CollectionSize.Require(absent = ZERO)
      public void testAddAllAtIndex_unsupportedAllPresent() {
        try {
          getList().addAll(0, MinimalCollection.of(e0()));
          fail("addAll(n, allPresent) should throw");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveTester.java

        E duplicate = arrayAndDuplicate.duplicate;
    
        int firstIndex = getList().indexOf(duplicate);
        int initialSize = getList().size();
        assertTrue("remove(present) should return true", getList().remove(duplicate));
        assertTrue(
            "After remove(duplicate), a list should still contain the duplicate element",
            getList().contains(duplicate));
        assertFalse(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveAtIndexTester.java

      public void testRemoveAtIndex_unsupported() {
        try {
          getList().remove(0);
          fail("remove(i) should throw");
        } catch (UnsupportedOperationException expected) {
        }
        expectUnchanged();
      }
    
      @ListFeature.Require(SUPPORTS_REMOVE_WITH_INDEX)
      public void testRemoveAtIndex_negative() {
        try {
          getList().remove(-1);
          fail("remove(-1) should throw");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 4K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/ListEqualsTester.java

        assertFalse(
            "Lists of different sizes should not be equal.",
            getList().equals(new ArrayList<E>(moreElements)));
      }
    
      public void testEquals_set() {
        assertFalse("A List should never equal a Set.", getList().equals(MinimalSet.from(getList())));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.5K bytes
    - Viewed (0)
Back to top