Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for r2devices (0.15 sec)

  1. cluster/gce/gci/configure-helper.sh

        return
      fi
    
      local device="${devices[0]}"
      if [ "${#devices[@]}" -ne 1 ]; then
        seen_arrays=(/dev/md/*)
        device=${seen_arrays[0]}
        echo "Setting RAID array with local SSDs on device ${device}"
        if [ ! -e "$device" ]; then
          device="/dev/md/0"
          echo "y" | mdadm --create "${device}" --level=0 --raid-devices=${#devices[@]} "${devices[@]}"
        fi
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			klog.V(4).InfoS("Device will be attached to container in the corresponding path on host", "containerName", container.Name, "path", symlinkPath)
    			devices = append(devices, kubecontainer.DeviceInfo{PathOnHost: symlinkPath, PathInContainer: device.DevicePath, Permissions: permission})
    		}
    	}
    
    	return devices, nil
    }
    
    // shouldMountHostsFile checks if the nodes /etc/hosts should be mounted
    // Kubernetes only mounts on /etc/hosts if:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"false",
               "Enables certain TPUExecute ops to run in parallel if they only "
               "operate on resources that live on composite devices.">
      ];
    }
    
    def ExecutorUpdateControlDependenciesPass : Pass<"tf-executor-update-control-dependencies", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		klog.V(2).InfoS("Failed to get local endpoint for PodResources endpoint", "err", err)
    		return
    	}
    
    	providers := podresources.PodResourcesProviders{
    		Pods:             kl.podManager,
    		Devices:          kl.containerManager,
    		Cpus:             kl.containerManager,
    		Memory:           kl.containerManager,
    		DynamicResources: kl.containerManager,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top