Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,478 for Detached (0.3 sec)

  1. pkg/volume/fc/fc.go

    	if err = os.RemoveAll(mapPath); err != nil {
    		return fmt.Errorf("fc: failed to delete the directory: %s\nError: %v", mapPath, err)
    	}
    	klog.V(4).Infof("fc: successfully detached disk: %s", mapPath)
    	return nil
    }
    
    func (c *fcDiskUnmapper) UnmapPodDevice() error {
    	return nil
    }
    
    // GetGlobalMapPath returns global map path and error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. 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)
  3. CHANGELOG/CHANGELOG-1.3.md

        * Specifically the new controller watches the API server for scheduled pods. It processes each pod and ensures that any volumes that implement the volume Attacher interface are attached to the node their pod is scheduled to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/DuplexTest.kt

            Request.Builder()
              .url(server.url("/"))
              .post(AsyncRequestBody())
              .build(),
          )
        val response2 = call.execute()
    
        // First duplex request is detached with violence.
        val requestBody1 = (call.request().body as AsyncRequestBody?)!!.takeSink()
        assertFailsWith<IOException> {
          requestBody1.writeUtf8("not authenticated\n")
          requestBody1.flush()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ====
    
    It's also possible to disable verification on detached configurations like in the following example:
    
    .Disabling dependency verification
    ====
    include::sample[dir="snippets/dependencyManagement/dependencyVerification-disablingVerification/kotlin",files="build.gradle.kts[tags=disabling-detached-configuration]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            op.details.configurationVisible == false
            op.details.configurationTransitive == true
    
            op.result.resolvedDependenciesCount == 4
        }
    
        def "resolved detached configurations are exposed"() {
            setup:
            buildFile << """
            repositories {
                maven { url '${mavenHttpRepo.uri}' }
            }
    
            task resolve(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.2.md

      * If a node or kubelet crashes with a volume attached, the volume will remain
    attached to that node. If that volume can only be attached to one node at a
    time (GCE PDs attached in RW mode, for example), then the volume must be
    manually detached before Kubernetes can attach it to other nodes.
      * If a volume is already attached to a node any subsequent attempts to attach it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    	err = os.RemoveAll(mapPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to delete the directory: %s\nError: %v", mapPath, err)
    	}
    	klog.V(4).Infof("iscsi: successfully detached disk: %s", mapPath)
    	return nil
    }
    
    func (c *iscsiDiskUnmapper) UnmapPodDevice() error {
    	return nil
    }
    
    // GetGlobalMapPath returns global map path and error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * to avoid spamming users with these warnings, as popular third-party plugins continue to
         * violate these conditions.
         * </p>
         * <ul>
         *     <li>The configuration is detached and the new value is false.</li>
         *     <li>The current value and the new value are the same</li>
         * </ul>
         *
         * The eventual goal is that all configuration usage be specified upon creation and immutable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top