Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // [start_index, 0, ...0], with size [size, -1, ...-1].
    //
    // Requires that `start_index` and `size` are scalar tensors and
    // `item_position_shape` is a 1-D tensor with only one element equal to the rank
    // of an item in the tensorlist.
    TF::SliceOp CreateSliceOpForTensorList(Location loc, Value input_list,
                                           Value start_index, Value size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			// assert httpProtocolOptions
    			assert.Equal(t, opts.mutable.httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout,
    				tt.expectedHTTPPOpt.CommonHttpProtocolOptions.IdleTimeout)
    			assert.Equal(t, opts.mutable.httpProtocolOptions.CommonHttpProtocolOptions.MaxRequestsPerConnection,
    				tt.expectedHTTPPOpt.CommonHttpProtocolOptions.MaxRequestsPerConnection)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	assertCacherInternalState := func(expectedWatchersCounter, expectedValueWatchersCounter int) {
    		cacher.Lock()
    		defer cacher.Unlock()
    
    		require.Equal(t, expectedWatchersCounter, len(cacher.watchers.allWatchers))
    		require.Equal(t, expectedValueWatchersCounter, len(cacher.watchers.valueWatchers))
    	}
    	assertCacherInternalState(0, 0)
    
    	var forgetWatcherFn func(bool)
    	var forgetCounter int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. cmd/bucket-listobjects-handlers.go

    // Validate all the ListObjects query arguments, returns an APIErrorCode
    // if one of the args do not meet the required conditions.
    // Special conditions required by MinIO server are as below
    //   - delimiter if set should be equal to '/', otherwise the request is rejected.
    //   - marker if set should have a common prefix with 'prefix' param, otherwise
    //     the request is rejected.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    		// as well as common modtime, if modtime is not possible
    		// verify if it has common "etag" at least.
    		if onlineMeta[i].IsValid() && onlineMeta[i].Erasure.Equal(fi.Erasure) {
    			ok := onlineMeta[i].ModTime.Equal(modTime)
    			if modTime.IsZero() || modTime.Equal(timeSentinel) {
    				ok = etag != "" && etag == fi.Metadata["etag"]
    			}
    			if ok {
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

        implementation(libs.groovyXml)
        implementation(libs.slf4jApi)
        implementation(libs.tomlj) {
            // Used for its nullability annotations, not needed at runtime
            exclude("org.checkerframework", "checker-qual")
        }
        implementation(libs.xmlApis)
    
        compileOnly(libs.kotlinStdlib) {
            because("it needs to forward calls from instrumented code to the Kotlin standard library")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/crypto/tls/bogo_shim_test.go

    				expectedRetryConfigs, err := base64.StdEncoding.DecodeString(*expectedECHRetryConfigs)
    				if err != nil {
    					log.Fatalf("failed to decode expected retry configs: %s", err)
    				}
    				if !bytes.Equal(retryErr.RetryConfigList, expectedRetryConfigs) {
    					log.Fatalf("unexpected retry list returned: got %x, want %x", retryErr.RetryConfigList, expectedRetryConfigs)
    				}
    			}
    			log.Fatalf("conn error: %s", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_EqualOp : TF_Op<"Equal", [Commutative, Pure]> {
      let summary = "Returns the truth value of (x == y) element-wise.";
    
      let description = [{
    *NOTE*: `Equal` supports broadcasting. More about broadcasting
    [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
    
    ```python
    x = tf.constant([2, 4])
    y = tf.constant(2)
    tf.math.equal(x, y) ==> array([True, False])
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

        return absl::InvalidArgumentError(
            absl::StrCat("'num_replicas' must be equal to 1 or ", num_tpu_devices,
                         ", got ", num_replicas));
    
      if (num_cores_per_replica != 1)
        return absl::InvalidArgumentError(
            absl::StrCat("'num_cores_per_replica' must be equal to 1, got ",
                         num_cores_per_replica));
    
      TPUDevicesAndHosts devices_and_hosts;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		{
    			name:   "filter returns two items, page size equal to total list size",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "foo"),
    				Label: labels.Everything(),
    				Limit: 5,
    			},
    			expectedOut: []example.Pod{*preset[2], *preset[4]},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top