Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 376 for r2devices (0.12 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

    /**
     * Example of using a hardware key to perform client auth.
     * Prefer recent JDK builds, and results are temperamental to slight environment changes.
     * Different instructions and configuration may be required for other hardware devices.
     *
     * Using a yubikey device as a SSL key store.
     * https://lauri.võsandi.com/2017/03/yubikey-for-ssh-auth.html
     *
     * Using PKCS11 support in the JDK.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (1)
  2. pkg/volume/csi/expander.go

    		secrets:           nodeExpandSecrets,
    	}
    
    	if !fsVolume {
    		// for block volumes the volumePath in CSI NodeExpandvolumeRequest is
    		// basically same as DevicePath because block devices are not mounted and hence
    		// DeviceMountPath does not get populated in resizeOptions.DeviceMountPath
    		opts.volumePath = resizeOptions.DevicePath
    		opts.fsType = fsTypeBlockName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental_test.cc

      float* m_float = static_cast<float*>(TF_TensorData(m_data));
      TF_DeviceList* devices = TFE_ContextListDevices(ctx, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      int num_devices = TF_DeviceListCount(devices);
      for (int d = 0; d < num_devices; ++d) {
        const char* name = TF_DeviceListName(devices, d, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 03:14:26 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  4. pkg/volume/util/fs/fs.go

    		s, ok := info.Sys().(*syscall.Stat_t)
    		if !ok {
    			return fmt.Errorf("unsupported fileinfo; could not convert to stat_t")
    		}
    
    		if s.Dev != topLevelStat.Dev {
    			// don't descend into directories on other devices
    			return filepath.SkipDir
    		}
    
    		// Dedupe hardlinks
    		if s.Nlink > 1 {
    			if _, ok := dedupedInodes[s.Ino]; !ok {
    				dedupedInodes[s.Ino] = struct{}{}
    			} else {
    				return nil
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            def archString = readFirstHeaderValue(lines, "Machine:", "Maschine:")
            switch (archString) {
                case "Intel 80386":
                    return Architectures.forInput("x86")
                case "Advanced Micro Devices X86-64":
                    return Architectures.forInput("x86_64")
                default:
                    throw new RuntimeException("Cannot determine architecture for ${archString}\nreadelf output:\n${lines}")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

        : public impl::TensorDeviceCopyConversionPassBase<
              TensorDeviceCopyConversionPass> {
      void runOnOperation() override;
    };
    
    // Folds tf.IdentityOp and tf.IdentityNOp if op device and the argument devices
    // from the defining ops match.
    void TensorDeviceCopyConversionPass::runOnOperation() {
      func::FuncOp func_op = getOperation();
    
      auto should_fold_op_func = [&func_op](const Value &arg,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/c/ops.h

    // associative and commutative, and produce output with the same shape as the
    // input. The optimizer may replace an aggregate op taking input from multiple
    // devices with a tree of aggregate ops that aggregate locally within each
    // device (and possibly within groups of nearby devices) before communicating.
    TF_CAPI_EXPORT extern void TF_OpDefinitionBuilderSetIsAggregate(
        TF_OpDefinitionBuilder* builder, bool is_aggregate);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. pkg/volume/util/hostutil/fake_hostutil.go

    // No-op for testing
    func (hu *FakeHostUtil) MakeRShared(path string) error {
    	return nil
    }
    
    // GetFileType checks for file/directory/socket/block/character devices.
    // Defaults to Directory if otherwise unspecified.
    func (hu *FakeHostUtil) GetFileType(pathname string) (FileType, error) {
    	if t, ok := hu.Filesystem[pathname]; ok {
    		return t, nil
    	}
    	return FileType("Directory"), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/immediate_execution_tensor_handle.h

      // ImmediateExecutionTensorHandles, but comes up for example when computing
      // the shape of a parallel tensor with component shapes differing across
      // devices.
      virtual Status Dim(int dim_index, int64_t* dim) const = 0;
    
      // Returns the device which created the handle.
      virtual const char* DeviceName(Status* status) const = 0;
      // Returns the device where the tensor was placed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 10 21:56:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_gpu_cc_60.mlir

    // RUN: tf-opt %s -tf-layout-assignment -verify-diagnostics | FileCheck %s --dump-input=always
    
    module attributes {
      tf.devices = {"/device:GPU:0" = #tf_type.gpu_device_metadata<cc_major = 6, cc_minor = 0>}
    } {
    
    // CHECK-LABEL: func @transposeConv2D_3x3_f16
    func.func @transposeConv2D_3x3_f16(%input: tensor<1x28x28x64xf16>, %filter: tensor<3x3x64x64xf16>) -> tensor<1x26x26x64xf16> {
      // cuDNN prefers NCHW data format for spatial convolutions in f16 before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 21 08:41:18 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top