Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 433 for Detached (0.37 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DomainObjectContext.java

        boolean isRootScript();
    
        /**
         * Indicates if the context is plugin resolution
         */
        boolean isPluginContext();
    
        /**
         * Returns true if the context represents a detached state, for
         * example detached dependency resolution
         */
        default boolean isDetachedState() {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     */
    
    package org.gradle.process.internal;
    
    public enum ExecHandleState {
        INIT(false),
        STARTING(false),
        STARTED(false),
        ABORTED(true),
        FAILED(true),
        DETACHED(true),
        SUCCEEDED(true);
    
        private final boolean terminal;
    
        ExecHandleState(boolean terminal) {
            this.terminal = terminal;
        }
    
        public boolean isTerminal() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
Back to top