Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,102 for produced (0.13 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. subprojects/core/src/main/java/org/gradle/internal/model/ValueCalculator.java

    import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
    import org.gradle.api.internal.tasks.WorkNodeAction;
    
    import javax.annotation.Nullable;
    
    /**
     * Produces a value, potentially based on values produced by tasks or other work nodes.
     */
    public interface ValueCalculator<T> extends TaskDependencyContainer {
        /**
         * See {@link WorkNodeAction#usesMutableProjectState()}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 19 19:42:22 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

            when:
            signing {
                sign jar, sourcesJar
            }
    
            then:
            signJar.description == "Signs the archive produced by the 'jar' task."
            signSourcesJar.description == "Signs the archive produced by the 'sourcesJar' task."
        }
    
        private createJarTaskOutputFile(String... tasksToSimulate) {
            for (def task : tasksToSimulate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentProvider.java

    import org.gradle.internal.component.local.model.LocalComponentGraphResolveState;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A provider of dependency resolution metadata for locally produced components.
     *
     * <p>In general, you should be using {@link LocalComponentRegistry} instead of this type.</p>
     */
    @ThreadSafe
    public interface LocalComponentProvider {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvedVariant;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    /**
     * Represents a variant which is produced as the result of applying an artifact transform chain
     * to a root producer variant.
     */
    public class TransformedVariant implements HasAttributes {
        private final ResolvedVariant root;
        private final VariantDefinition chain;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    Tasks runnable from project ':app'
    ------------------------------------------------------------
    
    ...
    
    Publishing tasks
    ----------------
    publish - Publishes all publications produced by this project.
    publishToMavenLocal - Publishes all Maven publications produced by this project to the local Maven cache.
    ----
    
    A new set of publishing tasks are now available called `publish`, and `publishToMavenLocal`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/tsan.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This program produced false race reports when run under the C/C++
    // ThreadSanitizer, as it did not understand the synchronization in
    // the Go code.
    
    /*
    #cgo CFLAGS: -fsanitize=thread
    #cgo LDFLAGS: -fsanitize=thread
    
    int val;
    
    int getVal() {
    	return val;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 700 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java

       *   {@code List<ListenableFuture<T>> futures = (List) executor.invokeAll(tasks);}
       * </pre>
       *
       * @return A list of {@code ListenableFuture} instances representing the tasks, in the same
       *     sequential order as produced by the iterator for the given task list, each of which has
       *     completed.
       * @throws RejectedExecutionException {@inheritDoc}
       * @throws NullPointerException if any task is null
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

        }
    
        /**
         * Returns the compilation outputs produced by the sources that are generating Scaladoc.
         *
         * @return the compilation outputs produced from the sources
         * @since 7.3
         */
        @Internal
        public ConfigurableFileCollection getCompilationOutputs() {
            return compilationOutputs;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top