Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for _Equal (0.2 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

              << "from different generators." << std::endl;
          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    	proxier = &Proxier{ipFamily: v1.IPv4Protocol}
    	proxier.OnServiceCIDRsChanged([]string{"172.30.0.0/16", "fd00:10:96::/112"})
    	assert.Equal(t, proxier.serviceCIDRs, "172.30.0.0/16")
    
    	proxier.OnServiceCIDRsChanged([]string{"172.30.0.0/16", "172.50.0.0/16", "fd00:10:96::/112", "fd00:172:30::/112"})
    	assert.Equal(t, proxier.serviceCIDRs, "172.30.0.0/16,172.50.0.0/16")
    
    	proxier = &Proxier{ipFamily: v1.IPv6Protocol}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    					t.Errorf("err \nWANT=%+v,\nGOT=%+v", item.expectError, gotErr)
    				}
    			} else if gotErr != nil {
    				t.Errorf("err \nWANT=%+v,\nGOT=%+v", item.expectError, gotErr)
    			}
    			if !cmp.Equal(item.expectPodBind, gotBind) {
    				t.Errorf("err \nWANT=%+v,\nGOT=%+v", item.expectPodBind, gotBind)
    			}
    
    			if item.expectAssumeCalled != fakeVolumeBinder.AssumeCalled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	// run on an old connection. This function is synchronous.
    	ExportCloseTransportConnsAbruptly(c.Transport.(*Transport))
    
    	body3 := fetch(3, 5)
    
    	if body1 != body2 {
    		t.Errorf("expected body1 and body2 to be equal")
    	}
    	if body2 == body3 {
    		t.Errorf("expected body2 and body3 to be different")
    	}
    }
    
    // Test for https://golang.org/issue/2616 (appropriate issue number)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @testStaticAndIdenticalTypeForEqualOp(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2xi1> {
      // CHECK:      "tf.Equal"(%arg0, %arg1)
      // CHECK-SAME:   incompatible_shape_error = true
      // CHECK-SAME:   device = "/job:localhost/replica:0/task:0/device:GPU:0"
      %0 = "tf.Equal"(%arg0, %arg1) {incompatible_shape_error = false, device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"7f62f36e716e0badaf4a4658da9d09bea26357a1bc6aeb8cf7c3ae35",
    		"For every action there is an equal and opposite government program.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MIN_NODES} -lt 0 ]]; then
        echo "AUTOSCALER_MIN_NODES must be greater or equal 0"
        exit 2
      fi
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MAX_NODES} -lt ${NUM_MIGS} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "NOTL", argLength: 1, reg: gp11, asm: "NOTL", resultInArg0: true},
    
    		// BS{F,R}Q returns a tuple [result, flags]
    		// result is undefined if the input is zero.
    		// flags are set to "equal" if the input is zero, "not equal" otherwise.
    		// BS{F,R}L returns only the result.
    		{name: "BSFQ", argLength: 1, reg: gp11flags, asm: "BSFQ", typ: "(UInt64,Flags)"},        // # of low-order zeroes in 64-bit arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      if (mlir::cast<ShapedType>(conv_op.getWindowStrides().value().getType())
              .getRank() != 1)
        return rewriter.notifyMatchFailure(
            conv_op, "requires window_strides to equal to one");
    
      int num_spatial_dims = dnums.getInputSpatialDimensions().size();
      if (num_spatial_dims != 2)
        return rewriter.notifyMatchFailure(conv_op, "doesn't support more than 2D");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&EmptyVerySmallSquare;":            "\u25ab",
    	"&Eogon;":                           "\u0118",
    	"&Eopf;":                            "\U0001d53c",
    	"&Epsilon;":                         "\u0395",
    	"&Equal;":                           "\u2a75",
    	"&EqualTilde;":                      "\u2242",
    	"&Equilibrium;":                     "\u21cc",
    	"&Escr;":                            "\u2130",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top