Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,114 for EQUAL (0.04 sec)

  1. guava/src/com/google/common/collect/Comparators.java

          Comparator<T> comparator) {
        return new LexicographicalOrdering<S>(checkNotNull(comparator));
      }
    
      /**
       * Returns {@code true} if each element in {@code iterable} after the first is greater than or
       * equal to the element that preceded it, according to the specified comparator. Note that this is
       * always true when the iterable has fewer than two elements.
       */
      public static <T extends @Nullable Object> boolean isInOrder(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tests/test_path.py

            {
                "detail": [
                    {
                        "type": "greater_than_equal",
                        "loc": ["path", "item_id"],
                        "msg": "Input should be greater than or equal to 3",
                        "input": "2",
                        "ctx": {"ge": 3.0},
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			newObj:       nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name:         "queue-on-toleratedtaint-node-added",
    			pod:          podWithTolerations("pod1", []v1.Toleration{{Key: "dedicated", Operator: "Equal", Value: "user2", Effect: "NoSchedule"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

            Project project = (Project) o;
            return Objects.equal(buildCommands, project.buildCommands)
                && Objects.equal(comment, project.comment)
                && Objects.equal(linkedResources, project.linkedResources)
                && Objects.equal(resourceFilters, project.resourceFilters)
                && Objects.equal(name, project.name)
                && Objects.equal(natures, project.natures)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh_test.go

    			"default": "foo",
    		}
    		mc, err := mesh.ApplyProxyConfig(`proxyMetadata: {"merged":"override","override":"bar"}`, config)
    		assert.NoError(t, err)
    		// Ensure we didn't modify the passed in mesh config
    		assert.Equal(t, mc.DefaultConfig.ProxyMetadata, map[string]string{
    			"merged":   "override",
    			"default":  "foo",
    			"override": "bar",
    		}, "unexpected proxy metadata")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/Network.java

       * same structural relationships as those in this network.
       *
       * <p>Thus, two networks A and B are equal if <b>all</b> of the following are true:
       *
       * <ul>
       *   <li>A and B have equal {@link #isDirected() directedness}.
       *   <li>A and B have equal {@link #nodes() node sets}.
       *   <li>A and B have equal {@link #edges() edge sets}.
       *   <li>Every edge in A and B connects the same nodes in the same direction (if any).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/crypto/hmac/hmac_test.go

    	a := []byte("test")
    	b := []byte("test1")
    	c := []byte("test2")
    
    	if !Equal(b, b) {
    		t.Error("Equal failed with equal arguments")
    	}
    	if Equal(a, b) {
    		t.Error("Equal accepted a prefix of the second argument")
    	}
    	if Equal(b, a) {
    		t.Error("Equal accepted a prefix of the first argument")
    	}
    	if Equal(b, c) {
    		t.Error("Equal accepted unequal slices")
    	}
    }
    
    func TestWriteAfterSum(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
  8. pkg/probe/http/http_test.go

    		require.NoError(t, err)
    		req, err := NewProbeRequest(target, headers)
    		require.NoError(t, err)
    		result, body, err := prober.Probe(req, wait.ForeverTestTimeout)
    		assert.NoError(t, err)
    		assert.Equal(t, probe.Success, result)
    		assert.Equal(t, string(truncatedPayload), body)
    	})
    }
    
    func TestHTTPProbeChecker_PayloadNormal(t *testing.T) {
    	successHostHeader := "www.success.com"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:40:08 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. src/index/suffixarray/suffixarray_test.go

    }
    
    func testConstruction(t *testing.T, tc *testCase, x *Index) {
    	if !sort.IsSorted((*index)(x)) {
    		t.Errorf("failed testConstruction %s", tc.name)
    	}
    }
    
    func equal(x, y *Index) bool {
    	if !bytes.Equal(x.data, y.data) {
    		return false
    	}
    	if x.sa.len() != y.sa.len() {
    		return false
    	}
    	n := x.sa.len()
    	for i := 0; i < n; i++ {
    		if x.sa.get(i) != y.sa.get(i) {
    			return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta_test.go

    	assert.Equal(t, resp.RemovedResources, nil)
    
    	// On remove, just get the removal
    	s.MemRegistry.RemoveService("test-1.default")
    	resp = ads.ExpectResponse()
    	assertResources(resp, "inbound|80||") // currently we always send the inbound stuff. Not ideal, but acceptable
    	assert.Equal(t, resp.RemovedResources, []string{"outbound|80||test-1.default"})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top