Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for attaching (0.18 sec)

  1. pkg/volume/csi/csi_plugin.go

    	node := string(p.host.GetNodeName())
    	attachID := getAttachmentName(pvSource.VolumeHandle, pvSource.Driver, node)
    	volData := map[string]string{
    		volDataKey.specVolID:    spec.Name(),
    		volDataKey.volHandle:    pvSource.VolumeHandle,
    		volDataKey.driverName:   pvSource.Driver,
    		volDataKey.nodeName:     node,
    		volDataKey.attachmentID: attachID,
    	}
    
    	err = saveVolumeData(dataDir, volDataFileName, volData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    	loopPath, err := v.GetLoopDevice(path)
    	if err != nil {
    		if err.Error() == ErrDeviceNotFound {
    			klog.Warningf("couldn't find loopback device which takes file descriptor lock. Skip detaching device. device path: %q", path)
    		} else {
    			return fmt.Errorf("GetLoopDevice failed for path %s: %v", path, err)
    		}
    	} else {
    		if len(loopPath) != 0 {
    			err = removeLoopDevice(loopPath)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            execHandle.abort()
            def result = execHandle.waitForFinish()
    
            then:
            execHandle.state == ExecHandleState.ABORTED
            result.exitValue != 0
        }
    
        void "detaching does not trigger 'finished' notification"() {
            def out = new ByteArrayOutputStream()
            ExecHandleListener listener = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand12 = moduleId('toys', 'plant')
            def operand13 = moduleId('trail', 'wing')
            def operand14 = moduleId('ring', 'desk')
            def operand15 = moduleId('yak', 'teaching')
            def operand16 = moduleId('street', 'cattle')
            def operand17 = group('sun')
            def operand18 = moduleId('crib', 'wealth')
            def operand19 = moduleId('cabbage', 'playground')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.16.md

     - Reduced frequency of DescribeVolumes calls of AWS API when attaching/detaching a volume.
      Fixed "requested device X but found Y" attach error on AWS. ([#89894](https://github.com/kubernetes/kubernetes/pull/89894), [@johanneswuerbach](https://github.com/johanneswuerbach)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

            .certificatePinner(certificatePinner)
            .build()
    
        // Add a bad intermediate CA and have that issue a rogue certificate for localhost. Prepare
        // an SSL context for an attacking webserver. It includes both these rogue certificates plus the
        // trusted good certificate above. The attack is that by including the good certificate in the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.11.md

    * Fix a bug that headless service without ports fails to have endpoint created. ([#62497](https://github.com/kubernetes/kubernetes/pull/62497), [@MrHohn](https://github.com/MrHohn))
    * Fix panic for attaching AzureDisk to vmss nodes ([#63275](https://github.com/kubernetes/kubernetes/pull/63275), [@feiskyer](https://github.com/feiskyer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - Improved `kubectl run` and `kubectl debug` error messages upon attaching failures. ([#110764](https://github.com/kubernetes/kubernetes/pull/110764), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@js...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@js...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top