Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,257 for _Equal (0.17 sec)

  1. pkg/util/smallset/smallset_test.go

    	assert.Equal(t, set.List(), []string{"a", "b", "d"})
    	assert.Equal(t, nset.List(), []string{"a", "b", "c", "d", "z"})
    
    	assert.Equal(t, nset.Contains("a"), true)
    	assert.Equal(t, nset.Contains("b"), true)
    	assert.Equal(t, nset.Contains("c"), true)
    	assert.Equal(t, nset.Contains("d"), true)
    	assert.Equal(t, nset.Contains("e"), false)
    	assert.Equal(t, nset.Contains("z"), true)
    }
    
    func TestNew(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SimpleAbstractMultisetTest.java

        public void clear() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public int count(@Nullable Object element) {
          for (Entry<E> entry : entrySet()) {
            if (Objects.equal(entry.getElement(), element)) {
              return entry.getCount();
            }
          }
          return 0;
        }
    
        @Override
        public int add(E element, int occurrences) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/maps/maps_test.go

    func TestEqual(t *testing.T) {
    	if !Equal(m1, m1) {
    		t.Errorf("Equal(%v, %v) = false, want true", m1, m1)
    	}
    	if Equal(m1, (map[int]int)(nil)) {
    		t.Errorf("Equal(%v, nil) = true, want false", m1)
    	}
    	if Equal((map[int]int)(nil), m1) {
    		t.Errorf("Equal(nil, %v) = true, want false", m1)
    	}
    	if !Equal[map[int]int, map[int]int](nil, nil) {
    		t.Error("Equal(nil, nil) = false, want true")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/util/ipvs_test.go

    				Scheduler: "rr",
    				Flags:     0x1,
    				Timeout:   10800,
    			},
    			equal:  true,
    			reason: "All fields equal",
    		},
    	}
    
    	for i := range Tests {
    		equal := Tests[i].svcA.Equal(Tests[i].svcB)
    		if equal != Tests[i].equal {
    			t.Errorf("case: %d got %v, expected %v, reason: %s", i, equal, Tests[i].equal, Tests[i].reason)
    		}
    	}
    }
    
    func TestRealServerEqual(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. test/literal2.go

    	// hexadecimal floats
    	assert(equal(0x1p-2, 0.25))
    	assert(equal(0x2.p10, 2048.0))
    	assert(equal(0x1.Fp+0, 1.9375))
    	assert(equal(0x.8p-0, 0.5))
    	assert(equal(0x1FFFp-16, 0.1249847412109375))
    	assert(equal(0x1.fffffffffffffp1023, 1.7976931348623157e308))
    	assert(equal(0x1.fffffffffffffp1023i, complex(0, 1.7976931348623157e308)))
    
    	assert(equal(0x_1p-2, 0.25))
    	assert(equal(0x2.p1_0, 2048.0))
    	assert(equal(0x1_0.Fp+0, 16.9375))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 22:45:09 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/hosts_test.go

    	// wildcard, all namespaces scope
    	g.Expect(NewScopedFqdn("*", "foo", "*")).To(Equal(ScopedFqdn("*/*")))
    	// wildcard sub domain, all namespaces scope
    	g.Expect(NewScopedFqdn("*", "foo", "*.xyz.abc")).To(Equal(ScopedFqdn("*/*.xyz.abc")))
    
    	// external host, local scope
    	g.Expect(NewScopedFqdn("foo", "foo", "xyz.abc")).To(Equal(ScopedFqdn("foo/xyz.abc")))
    	// external host, all namespaces scope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/volume/flexvolume/probe_test.go

    	}
    
    	// Act
    	events, err := prober.Probe()
    
    	// Assert
    	assert.Equal(t, 2, len(events))
    	assert.Equal(t, volume.ProbeAddOrUpdate, events[0].Op)
    	assert.Equal(t, volume.ProbeAddOrUpdate, events[1].Op)
    	assert.NoError(t, err)
    	for i := 0; i < iterations-1; i++ {
    		events, err = prober.Probe()
    		assert.Equal(t, 0, len(events))
    		assert.NoError(t, err)
    	}
    }
    
    func TestProberError(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimap.java

       * their map views, as returned by {@link #asMap}, are also equal.
       *
       * <p>In general, two multimaps with identical key-value mappings may or may not be equal,
       * depending on the implementation. For example, two {@link SetMultimap} instances with the same
       * key-value mappings are equal, but equality of two {@link ListMultimap} instances depends on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

    public final class ForwardingWrapperTester {
    
      private boolean testsEquals = false;
    
      /**
       * Asks for {@link Object#equals} and {@link Object#hashCode} to be tested. That is, forwarding
       * wrappers of equal instances should be equal.
       */
      @CanIgnoreReturnValue
      public ForwardingWrapperTester includingEquals() {
        this.testsEquals = true;
        return this;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    			namespaceTolerations:      []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule"}},
    			podTolerations:            []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule"}},
    			mergedTolerations:         []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule"}, {Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top