Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,478 for Detached (0.17 sec)

  1. pkg/volume/util/operationexecutor/operation_executor.go

    	// If any volume is not attached right now, it will update the actual state of the world to reflect that.
    	// Note that this operation could be operated concurrently with other attach/detach operations.
    	// In theory (but very unlikely in practise), race condition among these operations might mark volume as detached
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            } else if (!jvmComponents.isEmpty()) {
                return jvmComponents.iterator().next();
            }
    
            // TODO: This case should be deprecated.
            // Users should not be able to create detached features with `registerFeature`
            return null;
        }
    
        @Override
        public void withJavadocJar() {
            maybeEmitMissingJavaComponentDeprecation("withJavadocJar()");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    			if len(pids) <= 30 {
    				message += fmt.Sprintf("%s\n", strings.Join(pids, "\n"))
    			}
    			message += "If you proceed with the uninstall, these proxies will become detached from any control plane" +
    				" and will not function correctly.\n"
    		} else if rev != "" && err != nil {
    			needConfirmation = true
    			message += fmt.Sprintf("Unable to find any proxies pointing to the %s control plane. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet_volumes.go

    	var totalPods, errorPods int
    
    	for _, uid := range found {
    		if allPods.Has(string(uid)) {
    			continue
    		}
    
    		totalPods++
    
    		// If volumes have not been unmounted/detached, do not delete directory.
    		// Doing so may result in corruption of data.
    		// TODO: getMountedVolumePathListFromDisk() call may be redundant with
    		// kl.getPodVolumePathListFromDisk(). Can this be cleaned up?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// If a volume with the name volumeName does not exist in the list of
    	// attached volumes, an error is returned.
    	DeletePodFromVolume(podName volumetypes.UniquePodName, volumeName v1.UniqueVolumeName) error
    
    	// DeleteVolume removes the given volume from the list of attached volumes
    	// in the cache indicating the volume has been successfully detached from
    	// this node.
    	// If a volume with the name volumeName does not exist in the list of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

      internal fun <E : IOException?> messageDone(
        exchange: Exchange,
        requestDone: Boolean,
        responseDone: Boolean,
        e: E,
      ): E {
        if (exchange != this.exchange) return e // This exchange was detached violently!
    
        var bothStreamsDone = false
        var callDone = false
        this.withLock {
          if (requestDone && requestBodyOpen || responseDone && responseBodyOpen) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        editor.setString(1, "a")
        cache.evictAll()
    
        // Create a new value in its place.
        set("k1", "bb", "bb")
        assertThat(cache.size()).isEqualTo(4)
    
        // Committing the detached editor should not change the cache's size.
        editor.commit()
        assertThat(cache.size()).isEqualTo(4)
        assertValue("k1", "bb", "bb")
      }
    
      @ParameterizedTest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                from the referencing Route, the Route MUST be considered successfully
                                attached. If no Gateway listeners accept attachment from this Route,
                                the Route MUST be considered detached from the Gateway.
    
    
                                Support: Extended
                              format: int32
                              maximum: 65535
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/volume_manager.go

    	waitForAttachTimeout = 10 * time.Minute
    )
    
    // VolumeManager runs a set of asynchronous loops that figure out which volumes
    // need to be attached/mounted/unmounted/detached based on the pods scheduled on
    // this node and makes it so.
    type VolumeManager interface {
    	// Starts the volume manager and all the asynchronous loops that it controls
    	Run(sourcesReady config.SourcesReady, stopCh <-chan struct{})
    
    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