Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,202 for produce1 (0.14 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildAction.java

    package org.gradle.tooling;
    
    import java.io.Serializable;
    
    /**
     * An action that executes against a Gradle build and produces a result of type {@code T}.
     *
     * <p>You can execute a {@code BuildAction} using the {@link ProjectConnection#action(BuildAction)} method.</p>
     *
     * @param <T> The type of result produced by this action.
     * @since 1.8
     */
    public interface BuildAction<T> extends Serializable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Success.java

    /**
     * Signifies that the command completed successfully.
     * <p>
     * The value of the result is whatever the command produced on the server.
     * Its meaning depends on the original command.
     * <p>
     * This result type does permit {@code null} values. If it is an error for a certain
     * command to produce a {@code null} value that must be handled externally to this class.
     */
    public class Success extends Result<Object> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

            Try<T> getResult();
    
            /**
             * The origin metadata of the result.
             *
             * If a previously produced output was reused in some way, the reused output's origin metadata is returned.
             * If the output was produced in this request, then the current execution's origin metadata is returned.
             */
            Optional<OriginMetadata> getOriginMetadata();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/VerificationException.java

     *
     * A task can depend upon another task's outcome (PASS vs. FAIL), outputs (the files they produce) or both. A verification
     * failure represents the case where a task has a failed outcome, but has still produced valid output files for consumption.
     * Tasks that only depend on the other task's outputs are allowed to execute. Tasks that depend on both the outcome and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 18:24:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

            provider.getProducer().visitContentProducerTasks(producer -> {
                if (!producer.getState().getExecuted()) {
                    throw new InvalidUserCodeException(
                        String.format("Querying the mapped value of %s before %s has completed is not supported", provider, producer)
                    );
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

     * added to the task graph.  For example "clean build" on the command line implies that the user wants
     * to run the clean tasks of each project before the build tasks of each project.  Ordinal nodes ensure
     * this order by tracking the dependencies of destroyers and producers in each group of tasks added to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerExportIntegrationTest.groovy

        def "can exclude certain products from the generated file"() {
            given:
            createDirs("lib1", "lib2", "app")
            settingsFile << "include 'lib1', 'lib2', 'app'"
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                }
    
                afterEvaluate {
                    generateSwiftPmManifest.package.get().products.removeAll { p -> p.name == 'app' }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner.go

    			// by 2 or more characters. We consider nm names that are longer by 1
    			// character insignificant to avoid replacing foo with _foo on MacOS (for
    			// unknown reasons read2line produces the former and nm produces the
    			// latter on MacOS even though both tools are asked to produce mangled
    			// names).
    			nmName := nm[len(nm)-1].Func
    			a2lName := stack[len(stack)-1].Func
    			if len(nmName) > len(a2lName)+1 {
    				stack[len(stack)-1].Func = nmName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

                #include HEADER
            """
    
            expect:
            resolve() == [header]
        }
    
        def "resolves macro with value that is token concatenation that produces another macro"() {
            given:
            sourceFile << """
                #define HEADER_NAME "hello.h"
                #define _NAME do not use this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            render implicitDependency {
                consumer('consumer')
                producer('producer')
                at(location)
                includeLink()
            }
    
            then:
            outputEquals """
    Gradle detected a problem with the following location: '${location}'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top