Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for _ignored (0.26 sec)

  1. cmd/metrics-v2.go

    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    	}
    	mg.RegisterRead(func(ctx context.Context) (metrics []MetricV2) {
    		objLayer := newObjectLayerFn()
    
    		// Fetch disk space info, ignore errors
    		metrics = make([]MetricV2, 0, 10)
    		storageInfo := objLayer.StorageInfo(ctx, true)
    		onlineDrives, offlineDrives := getOnlineOfflineDisksStats(storageInfo.Disks)
    		totalDrives := onlineDrives.Merge(offlineDrives)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	// except the primary load object, which is typically the executable.
    	DF_1_INTERPOSE DynFlag1 = 0x00000400
    	// Indicates that the search for dependencies of this object ignores any
    	// default library search paths.
    	DF_1_NODEFLIB DynFlag1 = 0x00000800
    	// Indicates that this object is not dumped by dldump. Candidates are objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          if (getElementTypeOrSelf(ba.getType()).isa<TF::ResourceType>()) {
            bool has_read_only_variables = true;
            for (auto user : ba.getUsers()) {
              // Ternimator ops, for example, tfl::yield op, should be ignored since
              // the argument can be used for yielding as the `body` function result
              // and that does not give any meaningful points to the decision
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        %0 = "tf.B"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        func.return %0 : tensor<?xi32>
      }
    }
    
    // -----
    
    // Tests that cluster_func without _xla_compile_device_type = "TPU", _replication_info attribute is ignored.
    
    module attributes {tf.versions = {producer = 888 : i32}} {
      // CHECK-LABEL: func @single_gpu_cluster_func
      func.func @single_gpu_cluster_func(%arg0: tensor<?xi32>) -> tensor<?xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		//   *(arg0+auxint+aux) = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// Note that these instructions also return the old value in AX, but we ignore it.
    		// TODO: have these return flags instead of bool.  The current system generates:
    		//    CMPXCHGQ ...
    		//    SETEQ AX
    		//    CMPB  AX, $0
    		//    JNE ...
    		// instead of just
    		//    CMPXCHGQ ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //    tokens are irrelevant. Each collective group should have a unique
    //    instance_key at runtime.
    // 2) If at least one ordering token is present, then we purely rely on ordering
    //    tokens for side effect modeling and ignore the op-based effect
    //    `TF_CollectiveReduceOrderingEffect` for which this function is relevant
    //    (note that returning `std::nullopt` here signals exactly that).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              if (!cast_op) return false;
              tl_element_shape.replaceAllUsesWith(cast_op->getResult(0));
            }
            continue;
          }
          // Ignore ops that just consume a TensorList and do not output another
          // TensorList.
          if (isa<TensorListStackOp, TensorListGatherOp, TensorListConcatV2Op,
                  TensorListLengthOp, TensorListGetItemOp>(use.getOwner()))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

          checkNotNull(key);
          checkNotNull(loader);
          try {
            if (count != 0) { // read-volatile
              // don't call getLiveEntry, which would ignore loading values
              ReferenceEntry<K, V> e = getEntry(key, hash);
              if (e != null) {
                long now = map.ticker.read();
                V value = getLiveValue(e, now);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top