Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for Advice (0.49 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        auto name_strref = named_attr.getName().str();
        auto attr = named_attr.getValue();
        absl::string_view name(name_strref.data(), name_strref.size());
        if (name == "name" || name == "device" || attrs_to_ignore.contains(name)) {
          // The name, device spec of a TF op or function are not stored as
          // AttrValue inside NodeDef, but we model them using attribute inside
          // MLIR. So we need to ignore them when going back to AttrValue here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    }
    
    // DeviceInfo contains information about the device.
    type DeviceInfo struct {
    	// Path on host for mapping
    	PathOnHost string
    	// Path in Container to map
    	PathInContainer string
    	// Cgroup permissions
    	Permissions string
    }
    
    // CDIDevice contains information about CDI device
    type CDIDevice struct {
    	// Name is a fully qualified device name
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/volume/hostpath/host_path.go

    		}
    	case v1.HostPathCharDev:
    		if !ftc.IsChar() {
    			return fmt.Errorf("hostPath type check failed: %s is not a character device", ftc.GetPath())
    		}
    	case v1.HostPathBlockDev:
    		if !ftc.IsBlock() {
    			return fmt.Errorf("hostPath type check failed: %s is not a block device", ftc.GetPath())
    		}
    	default:
    		return fmt.Errorf("%s is an invalid volume type", *pathType)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/net/net_windows_test.go

    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   Media disconnected
    	//
    	//Connection Name:  Bluetooth Network Connection
    	//Network Adapter:  Bluetooth Device (Personal Area Network)
    	//Physical Address: N/A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

    )mlir";
    
    constexpr absl::string_view kModulePartitionedCall = R"mlir(
      module {
        func.func @main(%arg0: tensor<2x2xf32> {tf_saved_model.index_path = ["input_tensor"]}) -> (tensor<2x2xf32>) {
          %cst = "tf.Const"() {device = "", value = dense<[[-0.630731344, 0.54962182], [0.180364341, -0.764542698]]> : tensor<2x2xf32>} : () -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. fastapi/openapi/docs.py

        """
        html = f"""
        <!DOCTYPE html>
        <html>
        <head>
        <title>{title}</title>
        <!-- needed for adaptive design -->
        <meta charset="utf-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        """
        if with_google_fonts:
            html += """
        <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_plugin.go

    	driverName := pvSrc.Driver
    
    	skipAttach, err := p.skipAttach(driverName)
    	if err != nil {
    		return false, err
    	}
    
    	return !skipAttach, nil
    }
    
    // CanDeviceMount returns true if the spec supports device mount
    func (p *csiPlugin) CanDeviceMount(spec *volume.Spec) (bool, error) {
    	volumeLifecycleMode, err := p.getVolumeLifecycleMode(spec)
    	if err != nil {
    		return false, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. pkg/volume/fc/fc.go

    		deviceUtil: util.NewDeviceHandler(util.NewIOHandler()),
    	}
    
    	blockPath, err := mapper.GetGlobalMapPath(spec)
    	if err != nil {
    		return nil, fmt.Errorf("failed to get device path: %v", err)
    	}
    	mapper.MetricsProvider = volume.NewMetricsBlock(filepath.Join(blockPath, string(podUID)))
    
    	return mapper, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. cni/pkg/iptables/iptables.go

    		{"-t", iptablesconstants.MANGLE, "-D", iptablesconstants.OUTPUT, "-j", ChainInpodOutput},
    		{"-t", iptablesconstants.NAT, "-D", iptablesconstants.OUTPUT, "-j", ChainInpodOutput},
    	}
    
    	// these sometimes fail due to "Device or resource busy"
    	optionalDeleteCmds := [][]string{
    		// flush-then-delete our created chains
    		{"-t", iptablesconstants.MANGLE, "-F", ChainInpodPrerouting},
    		{"-t", iptablesconstants.MANGLE, "-F", ChainInpodOutput},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor_test.go

    		}
    		oe.UnmountDevice(attachedVolumes[i], nil /* actualStateOfWorldMounterUpdater */, nil /* mount.Interface */)
    	}
    
    	// Assert
    	if !isOperationRunSerially(ch, quit) {
    		t.Fatalf("Unmount device operations should not start concurrently")
    	}
    }
    
    func TestOperationExecutor_AttachSingleNodeVolumeConcurrentlyToSameNode(t *testing.T) {
    	t.Parallel()
    
    	// Arrange
    	ch, quit, oe := setup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top