Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,085 for Detached (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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/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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top