Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,478 for Detached (0.14 sec)

  1. pkg/kubelet/kubelet_test.go

    		time.Duration(50*time.Millisecond),
    		func() (bool, error) {
    			// Verify volumes detached
    			volumeAttached := volumeManager.VolumeIsAttached(volumeName)
    			return !volumeAttached, nil
    		},
    	)
    
    	if err != nil {
    		return fmt.Errorf(
    			"Expected volumes to be detached. But some volumes are still attached: %#v", attachedVolumes)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

    This can indicate that a dependency has been compromised. Please carefully verify the checksums."""))
            assertConfigCacheDiscarded()
        }
    
        def "can disable verification of a detached configuration (terse output=#terse)"() {
            createMetadataFile {
                addChecksum("org:foo:1.0", 'sha1', "invalid")
            }
    
            given:
            terseConsoleOutput(terse)
            javaLibrary()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Reserved configuration names
    
    Configuration names "detachedConfiguration" and "detachedConfigurationX" (where X is any integer) are reserved for internal use when creating detached configurations.
    
    The ability to create non-detached configurations with these names will be removed in Gradle 9.0.
    
    [[java_extension_without_java_component]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_attacher_test.go

    			}
    
    			// compare attachment status for each spec
    			for _, attached := range tc.attachedSpecs {
    				stat, ok := stats[attached.spec]
    				if attached.attached && !ok {
    					t.Error("failed to retrieve attached status for:", attached.spec)
    				}
    				if attached.attached != stat {
    					t.Errorf("expecting volume attachment %t, got %t", attached.attached, stat)
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

         * an I/O error, or if the target entry is evicted while this editor is active. In either case
         * we delete the editor's created files and prevent new files from being created. Note that once
         * an editor has been detached it is possible for another editor to edit the entry.
         */
        internal fun detach() {
          if (entry.currentEditor == this) {
            if (civilizedFileSystem) {
              completeEdit(this, false) // Delete it now.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/volume/flexvolume/detacher.go

    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type flexVolumeDetacher struct {
    	plugin *flexVolumeAttachablePlugin
    }
    
    var _ volume.Detacher = &flexVolumeDetacher{}
    
    var _ volume.DeviceUnmounter = &flexVolumeDetacher{}
    
    // Detach is part of the volume.Detacher interface.
    func (d *flexVolumeDetacher) Detach(volumeName string, hostName types.NodeName) error {
    
    	call := d.plugin.NewDriverCall(detachCmd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/volume/flexvolume/detacher-defaults.go

    )
    
    type detacherDefaults flexVolumeDetacher
    
    // Detach is part of the volume.Detacher interface.
    func (d *detacherDefaults) Detach(volumeName string, hostName types.NodeName) error {
    	klog.Warning(logPrefix(d.plugin.flexVolumePlugin), "using default Detach for volume ", volumeName, ", host ", hostName)
    	return nil
    }
    
    // WaitForDetach is part of the volume.Detacher interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top