Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 909 for isattached (0.37 sec)

  1. pkg/volume/flexvolume/driver-call.go

    	Message string `json:"message,omitempty"`
    	// Path to the device attached. This field is valid only for attach calls.
    	// ie: /dev/sdx
    	DevicePath string `json:"device,omitempty"`
    	// Cluster wide unique name of the volume.
    	VolumeName string `json:"volumeName,omitempty"`
    	// Represents volume is attached on the node
    	Attached bool `json:"attached,omitempty"`
    	// Returns capabilities of the driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	operationexecutor.ActualStateOfWorldAttacherUpdater
    
    	// AddVolumeNode adds the given volume and node to the underlying store.
    	// If attached is set to true, it indicates the specified volume is already
    	// attached to the specified node. If attached set to false, it means that
    	// the volume is not confirmed to be attached to the node yet.
    	// A unique volume name is generated from the volumeSpec and returned on
    	// success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/flexvolume_test.go

      }'
      exit 0
    elif [ "$1" == "getvolumename" -a $# -eq 4 ]; then
      echo -n '{
        "status": "Success",
        "volume": "fakevolume"
      }'
      exit 0
    elif [ "$1" == "isattached" -a $# -eq 2 ]; then
      echo -n '{
        "status": "Success",
        "attached": true
      }'
      exit 0
    fi
    
    echo -n '{
      "status": "Not supported"
    }'
    exit 1
    
    # Direct the arguments to a file to be tested against later
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/attacher_test.go

    func TestIsVolumeAttached(tt *testing.T) {
    	t := harness.For(tt)
    	defer t.Close()
    
    	spec := fakeVolumeSpec()
    
    	plugin, _ := testPlugin(t)
    	plugin.runner = fakeRunner(
    		assertDriverCall(t, notSupportedOutput(), isAttached, specJSON(plugin, spec, nil), "localhost"),
    	)
    	a, _ := plugin.NewAttacher()
    	specs := []*volume.Spec{spec}
    	a.VolumesAreAttached(specs, "localhost")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 03 23:29:42 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/attacher.go

    		call := a.plugin.NewDriverCall(isAttached)
    		call.AppendSpec(spec, a.plugin.host, nil)
    		call.Append(string(nodeName))
    
    		status, err := call.Run()
    		if isCmdNotSupportedErr(err) {
    			return nil, nil
    		} else if err == nil {
    			if !status.Attached {
    				volumesAttachedCheck[spec] = false
    				klog.V(2).Infof("VolumesAreAttached: check volume (%q) is no longer attached", spec.Name())
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 03 23:29:42 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    				result = true
    			}
    		}
    
    		if result == isAttached {
    			t.Logf("Volume <%v> is reported as attached to node <%v>: %v", volumeName, nodeName, result)
    			return true, nil
    		}
    		lastErr = fmt.Errorf("Check volume <%v> is reported as attached to node <%v>, got %v, expected %v",
    			volumeName,
    			nodeName,
    			result,
    			isAttached)
    		return false, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            return transitiveExclusions;
        }
    
        public void markUnattached() {
            this.unattached = true;
        }
    
        public void markAttached() {
            this.unattached = false;
        }
    
        public boolean isUnattached() {
            return unattached;
        }
    
        void markUsed() {
            this.used = true;
        }
    
        void markUnused() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/volume_manager.go

    		// Also get unattached volumes and volumes not in dsw for error message
    		unattachedVolumes :=
    			vm.getUnattachedVolumes(uniquePodName)
    		volumesNotInDSW :=
    			vm.getVolumesNotInDSW(uniquePodName, expectedVolumes)
    
    		if len(unmountedVolumes) == 0 {
    			return nil
    		}
    
    		return fmt.Errorf(
    			"unmounted volumes=%v, unattached volumes=%v, failed to process volumes=%v: %w",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top