Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for isattached (0.22 sec)

  1. 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)
  2. 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)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    // AttachedVolume represents a volume that is attached to a node.
    type AttachedVolume struct {
    	// VolumeName is the unique identifier for the volume that is attached.
    	VolumeName v1.UniqueVolumeName
    
    	// VolumeSpec is the volume spec containing the specification for the
    	// volume that is attached.
    	VolumeSpec *volume.Spec
    
    	// NodeName is the identifier for the node that the volume is attached to.
    	NodeName types.NodeName
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// attached volumes, this is a no-op.
    	// If after deleting the pod, the specified volume contains no other child
    	// pods, the volume is also deleted.
    	DeletePodFromVolume(podName types.UniquePodName, volumeName v1.UniqueVolumeName)
    
    	// VolumeExists returns true if the given volume exists in the list of
    	// volumes that should be attached to this node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	// be unmounted are unmounted. If not, it will trigger mount/unmount
    	// operations to rectify.
    	// If attach/detach management is enabled, the manager will also check if
    	// volumes that should be attached are attached and volumes that should
    	// be detached are detached and trigger attach/detach operations as needed.
    	Run(stopCh <-chan struct{})
    
    	// StatesHasBeenSynced returns true only after syncStates process starts to sync
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

                    }
                }
            }
            """
        }
    
        def "task operations have a build operation as parent iff build listener is attached"() {
            given:
            goodCode()
    
            when: 'listening to task progress events and build operation listener is attached'
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager_test.go

    	podManager.SetPods([]*v1.Pod{pod})
    
    	err = manager.WaitForAttachAndMount(context.Background(), pod)
    	if err == nil {
    		t.Errorf("Expected error, got none")
    	}
    	if !strings.Contains(err.Error(),
    		"unattached volumes=[vol02 vol2], failed to process volumes=[vol03 vol3]") {
    		t.Errorf("Unexpected error info: %v", err)
    	}
    }
    
    func TestInitialPendingVolumesForPodAndGetVolumesInUse(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            publishArtifact.file == file
            publishArtifact == confState.prepareForArtifactResolution().artifactVariants.first().artifacts.first()
        }
    
        def "artifact is attached to child configurations"() {
            given:
            def artifact1 = artifactName()
            def artifact2 = artifactName()
            def artifact3 = artifactName()
            def file1 = new File("artifact-1.zip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/types.go

    // VolumeAttachmentStatus is the status of a VolumeAttachment request.
    type VolumeAttachmentStatus struct {
    	// attached indicates the volume is successfully attached.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	Attached bool `json:"attached" protobuf:"varint,1,opt,name=attached"`
    
    	// attachmentMetadata is populated with any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/attach_detach_controller.go

    				continue
    			}
    			attachState := adc.actualStateOfWorld.GetAttachState(volumeName, nodeName)
    			if attachState == cache.AttachStateAttached {
    				logger.V(10).Info("Volume is attached to node. Marking as attached in ActualStateOfWorld",
    					"node", klog.KRef("", string(nodeName)),
    					"volumeName", volumeName)
    				devicePath, err := adc.getNodeVolumeDevicePath(volumeName, nodeName)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top