Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for Amount (0.14 sec)

  1. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern const char* TF_DeviceListType(const TF_DeviceList* list,
                                                        int index,
                                                        TF_Status* status);
    
    // Retrieve the amount of memory associated with a given device.
    //
    // If index is out of bounds, an error code will be set in the status object,
    // and -1 will be returned.
    TF_CAPI_EXPORT extern int64_t TF_DeviceListMemoryBytes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

       * is merely copied. Only as the power set is iterated are the individual subsets created, and
       * these subsets themselves occupy only a small constant amount of memory.
       *
       * @param set the set of elements to construct a power set from
       * @return the power set, as an immutable set of immutable sets
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

            if ($system_log_monitors.count -gt 0) {
              $flags+=" --config.system-log-monitor={0}" -f ($system_log_monitors -join ",")
            }
            if ($system_stats_monitors.count -gt 0) {
              $flags+=" --config.system-stats-monitor={0}" -f ($system_stats_monitors -join ",")
            }
            if ($custom_plugin_monitors.count -gt 0) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	    to the original sources.
    
    	-covermode set,count,atomic
    	    Set the mode for coverage analysis for the package[s]
    	    being tested. The default is "set" unless -race is enabled,
    	    in which case it is "atomic".
    	    The values:
    		set: bool: does this statement run?
    		count: int: how many times does this statement run?
    		atomic: int: count, but correct in multithreaded tests;
    			significantly more expensive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    // necessarily themselves be in "all". (That configuration does not arise in Go
    // 1.11–1.15, but it will be possible in Go 1.16+.)
    //
    // Loading proceeds from the roots, using a parallel work-queue with a limit on
    // the amount of active work (to avoid saturating disks, CPU cores, and/or
    // network connections). Each package is added to the queue the first time it is
    // imported by another package. When we have finished identifying the imports of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter_test.go

    	// save the data file prior to unmount
    	targetDir := getTargetPath(testPodUID, pv.ObjectMeta.Name, plug.host)
    	dir := filepath.Join(targetDir, "mount")
    	if err := os.MkdirAll(dir, 0755); err != nil && !os.IsNotExist(err) {
    		t.Errorf("failed to create dir [%s]: %v", dir, err)
    	}
    
    	// do a fake local mount
    	diskMounter := util.NewSafeFormatAndMountFromHost(plug.GetPluginName(), plug.host)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_attacher_test.go

    			volumeId: "test-vol1",
    		},
    		{
    			testName:        "fail test, failed to create device mount path due to missing CSI source",
    			pvName:          "test-pv1",
    			volumeId:        "test-vol1",
    			skipPVCSISource: true,
    			shouldFail:      true,
    		},
    		{
    			testName:     "fail test, failed to create device mount path, CSIVolumeSource found",
    			pvName:       "test-pv1",
    			volumeId:     "test-vol1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  8. pkg/volume/testing/testing.go

    	TimeoutOnMountDeviceVolumeName = "timeout-mount-device-volume"
    	// TimeoutAndFailOnMountDeviceVolumeName will cause first MountDevice call to timeout but second call will fail
    	TimeoutAndFailOnMountDeviceVolumeName = "timeout-and-fail-mount-device-name"
    	// FailMountDeviceVolumeName will cause MountDevice operation on volume to fail
    	FailMountDeviceVolumeName = "fail-mount-device-volume-name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_test.go

    func TestCRIListPodStats(t *testing.T) {
    	ctx := context.Background()
    	var (
    		imageFsMountpoint = "/test/mount/point"
    		unknownMountpoint = "/unknown/mount/point"
    		imageFsInfo       = getTestFsInfo(2000)
    		rootFsInfo        = getTestFsInfo(1000)
    
    		sandbox0           = makeFakePodSandbox("sandbox0-name", "sandbox0-uid", "sandbox0-ns", false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/publishing/rules.yaml

          - staging/src/k8s.io/csi-translation-lib
      library: true
    - destination: mount-utils
      branches:
      - name: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/mount-utils
      - name: release-1.27
        go: 1.21.11
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/mount-utils
      - name: release-1.28
        go: 1.21.11
        source:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top