Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reOutput (0.11 sec)

  1. pkg/volume/iscsi/iscsi_util.go

    	}
    	prefix := mntPath[:ind]
    	return device, prefix, nil
    }
    
    func extractIface(mntPath string) (string, bool) {
    	reOutput := ifaceRe.FindStringSubmatch(mntPath)
    	if len(reOutput) > 1 {
    		return reOutput[1], true
    	}
    
    	return "", false
    }
    
    func extractPortalAndIqn(device string) (string, string, error) {
    	ind1 := strings.Index(device, "-")
    	if ind1 < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

      if (auto repinput = dyn_cast<TF::TPUReplicatedInputOp>(op)) {
        if (!ValidateReplicatedInput(repinput, num_replicas, tpu_replicate_attr))
          return false;
      }
      if (auto repoutput = dyn_cast<TF::TPUReplicatedOutputOp>(op)) {
        if (!ValidateReplicatedOutput(repoutput, num_replicas, tpu_replicate_attr))
          return false;
      }
      if (auto partinput = dyn_cast<TF::TPUPartitionedInputOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top