Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,478 for Detached (0.29 sec)

  1. pkg/volume/fc/attacher.go

    	return plugin.NewDetacher()
    }
    
    func (detacher *fcDetacher) Detach(volumeName string, nodeName types.NodeName) error {
    	return nil
    }
    
    func (detacher *fcDetacher) UnmountDevice(deviceMountPath string) error {
    	// Specify device name for DetachDisk later
    	devName, _, err := mount.GetDeviceNameFromMount(detacher.mounter, deviceMountPath)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtraPropertiesExtension.java

         */
        void set(String name, @Nullable Object value);
    
        /**
         * Returns all of the registered properties and their current values as a map.
         *
         * The returned map is detached from the extension. That is, any changes made to the map do not
         * change the extension from which it originated.
         *
         * <pre class='autoTested'>
         * project.version = "1.0"
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:35:02 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            // When there may be no more than one configuration, don't cache the resolution state for reuse. Currently, this only applies to detached configurations, however
            // it might be better to skip caching when it's likely there is only one configuration defined, for example, for script class paths, as the meta-data is unlikely to be reused.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/discovery/token/token_test.go

    			}
    
    			// Generate signature of the insecure kubeconfig
    			sig, err := tokenjws.ComputeDetachedSignature(string(kubeconfigBytes), test.tokenID, test.tokenSecret)
    			if err != nil {
    				t.Fatalf("cannot compute detached JWS signature: %v", err)
    			}
    
    			// If the JWS signature is delayed, only add the kubeconfig
    			if test.delayedJWSSignaturePatch {
    				test.configMap.data = map[string]string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            def result = dependenciesProvider.provide(module)
    
            then:
            result.size() == 0
        }
    
        def "dependency is added from plus detached configuration"() {
            applyPluginToProjects()
            project.apply(plugin: 'java')
    
            def module = project.ideaModule.module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

         * test compiles a native executable that attempts to connect to the console of a given pid.  We use this to verify
         * that the daemon is not attached to any console.  Note that this is the only way to validate this in Windows since
         * there is no way to determine which console (if any) a process is attached to.  We really only have a system call
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectInternal.java

         * dependencies in isolation from the project itself. This is
         * particularly useful if the repositories or configurations
         * needed for resolution shouldn't leak to the project state.
         *
         * @return a detached resolver
         */
        DetachedResolver newDetachedResolver();
    
        /**
         * Returns the property that stored {@link Project#getStatus()}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                    LOGGER.debug("Gradle daemon process is starting. Waiting for the daemon to detach...");
                    handle.waitForFinish();
                    LOGGER.debug("Gradle daemon process is now detached.");
                } finally {
                    CompositeStoppable.stoppable(execActionFactory).stop();
                }
    
                return daemonGreeter.parseDaemonOutput(outputConsumer.getProcessOutput(), args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/volume/volume.go

    	// On success, returns the device path where the device was attached on the
    	// node.
    	Attach(spec *Spec, nodeName types.NodeName) (string, error)
    
    	// VolumesAreAttached checks whether the list of volumes still attached to the specified
    	// node. It returns a map which maps from the volume spec to the checking result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top