Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,977 for detached (0.31 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                    }
                }
    
                def detached = project.configurations.detachedConfiguration()
                detached.dependencies.add(project.dependencies.create(project(':other')))
    
                task checkDependencies(type: CheckDependencies) {
                    result = detached.incoming.resolutionResult.rootComponent
                    artifacts = detached.incoming.artifacts
                }
    
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            when:
            def detached = configurationContainer.detachedConfiguration(dependency1, dependency2)
    
            then:
            detached.name == "detachedConfiguration1"
            detached.getAll() == [detached] as Set
            detached.getHierarchy() == [detached] as Set
            [dependency1, dependency2].each { detached.getDependencies().contains(it) }
            detached.getDependencies().size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyVerification-disablingVerification/groovy/build.gradle

        }
    }
    
    // tag::disabling-detached-configuration[]
    tasks.register("checkDetachedDependencies") {
        def detachedConf = configurations.detachedConfiguration(dependencies.create("org.apache.commons:commons-lang3:3.3.1"))
        detachedConf.resolutionStrategy.disableDependencyVerification()
        doLast {
            println(detachedConf.files)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyVerification-disablingVerification/kotlin/build.gradle.kts

    tasks.register("checkDependencies") {
        val classpath: FileCollection = myPluginClasspath
        inputs.files(classpath)
        doLast {
            println(classpath.files)
        }
    }
    
    // tag::disabling-detached-configuration[]
    tasks.register("checkDetachedDependencies") {
        val detachedConf: FileCollection = configurations.detachedConfiguration(dependencies.create("org.apache.commons:commons-lang3:3.3.1")).apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

     *
     * <ul>
     *   <li>INIT -&gt; STARTED -&gt; [SUCCEEDED|FAILED|ABORTED|DETACHED]</li>
     *   <li>INIT -&gt; FAILED</li>
     *   <li>INIT -&gt; STARTED -&gt; DETACHED -&gt; ABORTED</li>
     * </ul>
     *
     * State is controlled on all control methods:
     * <ul>
     * <li>{@link #start()} allowed when state is INIT</li>
     * <li>{@link #abort()} allowed when state is STARTED or DETACHED</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

        }
    
        def "changing usage on detached configurations does not warn"() {
            given:
            buildFile << """
                def detached = project.configurations.detachedConfiguration()
    
                assert detached.canBeConsumed
                assert detached.canBeResolved
                assert detached.canBeDeclared
    
                detached.canBeResolved = false
                detached.canBeConsumed = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleRunner.java

            if (aborted) {
                execHandle.aborted(exitValue);
            } else {
                execHandle.finished(exitValue);
            }
        }
    
        private void detached() {
            execHandle.detached();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

         */
        Long maybeGetPid();
    
        /**
         * Detaches the current process from its terminal/console to properly put it in the background, if possible.
         *
         * @return true if the process was successfully detached.
         */
        boolean maybeDetachProcess();
    
        /**
         * Detaches the current process from its terminal/console to properly put it in the background.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. releasenotes/notes/gateway-status.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:29 UTC 2023
    - 201 bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// Unmount volumes only when DSW and ASW are fully populated to prevent unmounting a volume
    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top