Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 539 for isattached (0.2 sec)

  1. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	// If no volume with the name volumeName exists in the list of volumes that
    	// should be attached to the specified node, the volume is implicitly added.
    	// If no node with the name nodeName exists in list of nodes managed by the
    	// attach/detach attached controller, an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/volume/csi/csi_attacher.go

    		if err != nil {
    			attached[spec] = false
    			klog.Error(log("attacher.VolumesAreAttached failed for attach.ID=%v: %v", attachID, err))
    			continue
    		}
    		klog.V(4).Info(log("attacher.VolumesAreAttached attachment [%v] has status.attached=%t", attachID, attach.Status.Attached))
    		attached[spec] = attach.Status.Attached
    	}
    
    	return attached, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            module.artifact.expectGet()
    
            then:
            succeeds "resolve"
        }
    
        @ToBeFixedForConfigurationCache
        def "sources and javadoc jars from maven repositories are resolved, attached and cached"() {
            def repo = mavenHttpRepo
            def module = repo.module("some", "module", "1.0")
            module.artifact(classifier: "api")
            module.artifact(classifier: "sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // source represents the volume that should be attached.
      optional VolumeAttachmentSource source = 2;
    
      // nodeName represents the node that the volume should be attached to.
      optional string nodeName = 3;
    }
    
    // VolumeAttachmentStatus is the status of a VolumeAttachment request.
    message VolumeAttachmentStatus {
      // attached indicates the volume is successfully attached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"nodeName": "nodeName represents the node that the volume should be attached to.",
    }
    
    func (VolumeAttachmentSpec) SwaggerDoc() map[string]string {
    	return map_VolumeAttachmentSpec
    }
    
    var map_VolumeAttachmentStatus = map[string]string{
    	"":                   "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/api/storage/v1beta1/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: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
Back to top