Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 223 for Sall (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

                    value.finalizeIfNotAlready();
                } finally {
                    // Don't leak the source implementation even if obtaining its value throws.
                    // This is mostly a theoretical possibility, but the call above is blocking, so it can be interrupted.
                    obtainedFrom = sourceRef.getAndSet(null);
                }
                Try<@org.jetbrains.annotations.Nullable T> obtained = value.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    config.clear()
                }
                testDirectory.file('initial-commit').createNewFile()
                git.add().addFilepattern("initial-commit").call()
                git.commit().setMessage("Initial commit").call()
            }
        }
    
        /**
         * Want syntax highlighting inside of IntelliJ? Consider using {@link AbstractIntegrationSpec#buildFile(String)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                    targetConfiguration.removeIncomingEdge(this);
                }
                targetNodes.clear();
            }
            targetNodeSelectionFailure = null;
        }
    
        /**
         * Call this method to attach a failure late in the process. This is typically
         * done when a failure is caused by graph validation. In that case we want to
         * perform as much resolution as possible, still have a valid graph, but in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            def resultHandler = new TestResultHandler()
    
            when:
            def connector = toolingApi.connector()
            ProjectConnection connection = connector.connect() // using withConnection would call close after the closure
    
            def build = connection.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
            sync.waitForAllPendingCalls(resultHandler)
            connector.disconnect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

            then:
            UnsupportedVersionException e = thrown()
            e.message == "The version of Gradle you are using (${version}) does not support the PhasedBuildActionExecuter API. Support for this is available in Gradle 4.8 and all later versions."
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                    doLast {
                        println 'do something'
                    }
                }
            """
    
            when:
            executeTaskViaTAPI(":other-build:tasks", "--all")
    
            then:
            assertHasBuildSuccessfulLogging()
            outputContains("doSomething - Prints the message 'do something'")
        }
    
        def "can run help from included build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        }
    
        public File getDownloadLocation() {
            return jdkDirectory;
        }
    
        private static String getNameWithoutExtension(File file) {
            //remove all extensions, for example for xxx.tar.gz files only xxx should be left
            String output = file.getName();
            String input;
            do {
                input = output;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            // and the results in the PR https://github.com/gradle/gradle/pull/12966
            // we're using "native platform" for all OSes if available.
            // If it isn't available, we fall back to using Java NIO and, if that fails, to using the old `File` APIs.
    
            if (useNativeIntegrations) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

    @NonExtensible
    @ServiceScope(Scope.Build.class)
    public interface ProviderFactory {
    
        /**
         * Creates a {@link Provider} whose value is calculated using the given {@link Callable}.
         *
         * <p>The provider is live and will call the {@link Callable} each time its value is queried. The {@link Callable} may return {@code null}, in which case the provider is considered to have no value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    4. **Annotations to define interception type**, like if this is an instance or static method, if we should intercept Groovy or just Java etc.
    5. **Return type **of original call
    6. **The receiver** of original call
    7. **Parameters** of original call
    8. **Logic** with call interception logic or logic that translates the new type to the old type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top