Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for r2devices (0.24 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    /** Correct `inline-block` display not defined in IE 8/9. */
    audio,
    canvas,
    video {
    	display: inline-block;
    }
    
    /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
    audio:not([controls]) {
    	display: none;
    	height: 0;
    }
    
    /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
    [hidden],
    template {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    %outputs2:2, %control2 = tf_executor.island wraps "tf.Split"(%outputs0, %outputs1#1)
      {_class = ["loc:@dataset_iterator_1", num_split = 2 : i32}
    ```
    ### `-tf-tpu-device-propagation`
    
    _Propagates TPU devices from ops to users_
    
    ### `-tf-tpu-dynamic-layout-pass`
    
    _Inserts TPU layout ops to determine layout at run time._
    
    A pass that allows TPU input layout to be determined after JIT compilation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			for _, v := range mountedVolumes {
    				if v.VolumeName == volumeName {
    					return true, nil
    				}
    			}
    			return false, nil
    		},
    	)
    
    	if err != nil {
    		t.Fatalf("expected volume devices %s to be mounted globally", volumeName)
    	}
    }
    
    func waitForUncertainPodMount(t *testing.T, volumeName v1.UniqueVolumeName, podName types.UniquePodName, asw cache.ActualStateOfWorld) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                    newUpdater(AbstractFuture.class, Object.class, "value"));
          } catch (Exception // sneaky checked exception
              | Error atomicReferenceFieldUpdaterFailure) {
            // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
            // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                    newUpdater(AbstractFuture.class, Object.class, "value"));
          } catch (Exception // sneaky checked exception
              | Error atomicReferenceFieldUpdaterFailure) {
            // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
            // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(root.ToGraph(graph.get()));
    
      // Ensure that the "Size" op can only be clustered with either the producer or
      // consumer by putting them on different devices.
      FindNodeByName(graph.get(), "test/x")->set_assigned_device_name(kGPU0);
      FindNodeByName(graph.get(), "test/y")->set_assigned_device_name(kCPU0);
      FindNodeByName(graph.get(), "test/z")->set_assigned_device_name(kGPU1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      TF_DeviceList* device_list = list.get();
    
      CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      const int num_devices = TF_DeviceListCount(device_list);
      LOG(INFO) << "There are " << num_devices << " devices.";
      for (int i = 0; i < num_devices; ++i) {
        const char* device_name = TF_DeviceListName(device_list, i, s);
        CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	// without error. Once this method exits with no error other components are allowed to tear down
    	// supporting resources like volumes and devices. If the context is canceled, the method should
    	// return context.Canceled unless it has successfully finished, which may occur when a shorter
    	// grace period is detected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top