Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Detached (0.17 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		time.Duration(5*time.Millisecond),
    		func() (bool, error) {
    			for i, detacher := range fakePlugin.GetDetachers() {
    				actualCallCount := detacher.GetDetachCallCount()
    				if actualCallCount == expectedDetachCallCount {
    					return true, nil
    				}
    				t.Logf(
    					"Wrong detacher[%v].GetDetachCallCount(). Expected: <%v> Actual: <%v>. Will try next detacher.",
    					i,
    					expectedDetachCallCount,
    					actualCallCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Calls AddVolumeNode() once with attached set to false.
    // Verifies a single volume/node entry exists.
    // Then calls AddVolumeNode() with attached set to true
    // Verifies volume is attached to the node according to asw.
    func Test_AddVolumeNode_Positive_NewVolumeNewNodeWithFalseAttached(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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/testing/testing.go

    func VerifyZeroDetachCallCount(fakeVolumePlugin *FakeVolumePlugin) error {
    	for _, detacher := range fakeVolumePlugin.GetDetachers() {
    		actualCallCount := detacher.GetDetachCallCount()
    		if actualCallCount != 0 {
    			return fmt.Errorf(
    				"At least one detacher has non-zero DetachCallCount: <%v>.",
    				actualCallCount)
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top