Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,085 for Detached (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

                        services.get(FileCollectionFactory.class),
                        services.get(DependencyMetaDataProvider.class),
                        new UnknownProjectFinder("Detached resolvers do not support resolving projects"),
                        new DetachedDependencyResolutionDomainObjectContext(services.get(DomainObjectContext.class))
                    );
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager.go

    	// like volumes are reconciled by a subsystem in the Kubelet and will converge if a new
    	// pod reuses an exclusive resource (unmount -> free -> mount), which means we do not
    	// need wait for those resources to be detached by the Kubelet. In general, resources
    	// the Kubelet exclusively owns must be released prior to a pod being reported terminal,
    	// while resources that have participanting components above the API use the pod's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		func() (bool, error) {
    			if asw.VolumeExists(volumeName) {
    				return false, nil
    			}
    
    			return true, nil
    		},
    	)
    
    	if err != nil {
    		t.Fatalf("Timed out waiting for volume %q to be detached.", volumeName)
    	}
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    					klog.V(1).Infof("VerifyVolumesAreAttached determined volume %q (spec.Name: %q) is no longer attached to node %q, therefore it was marked as detached.",
    						volumeSpecMap[spec], spec.Name(), nodeName)
    				}
    			}
    		}
    
    		// It is hard to differentiate migrated status for all volumes for verify_volumes_are_attached_per_node
    		return volumetypes.NewOperationContext(nil, nil, false)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            attachment 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. \n Support: Core"
                          maxLength: 253
                          minLength: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	for uid, val := range cgroupPods {
    		// if the pod is in the running set, its not a candidate for cleanup
    		if _, ok := possiblyRunningPods[uid]; ok {
    			continue
    		}
    
    		// If volumes have not been unmounted/detached, do not delete the cgroup
    		// so any memory backed volumes don't have their charges propagated to the
    		// parent croup.  If the volumes still exist, reduce the cpu shares for any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    	}
    	return nil
    }
    
    // Detacher
    type testPluginDetacher struct {
    	detachedVolumeMap map[string][]string
    	pluginLock        *sync.RWMutex
    }
    
    func (detacher *testPluginDetacher) Detach(volumeName string, nodeName types.NodeName) error {
    	detacher.pluginLock.Lock()
    	defer detacher.pluginLock.Unlock()
    	detacher.detachedVolumeMap[string(nodeName)] = append(detacher.detachedVolumeMap[string(nodeName)], volumeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - Fix incorrect calculation for ResourceQuota with PriorityClass as its scope. ([#117828](https://github.com/kubernetes/kubernetes/pull/117828), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG API Machinery]
    - Fix: the volume is not detached after the pod and PVC objects are deleted ([#117339](https://github.com/kubernetes/kubernetes/pull/117339), [@cvvz](https://github.com/cvvz)) [SIG Storage]
    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. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
         *
         * @param variableName The name of the environment variable.
         * @return The provider. Never returns null.
         * @since 6.1
         */
        Provider<String> environmentVariable(String variableName);
    
        /**
         * Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pkg/volume/portworx/portworx.go

    }
    
    var _ volume.Unmounter = &portworxVolumeUnmounter{}
    
    // Unmounts the bind mount, and detaches the disk only if the PD
    // resource was the last reference to that disk on the kubelet.
    func (c *portworxVolumeUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    // Unmounts the bind mount, and detaches the disk only if the PD
    // resource was the last reference to that disk on the kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top