Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 719 for produced (0.55 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    | Value is the name of the Suite.
    | No default, no compatibility
    
    | link:{javadocPath}/org/gradle/api/attributes/TestSuiteTargetName.html#TEST_SUITE_TARGET_NAME_ATTRIBUTE[`org.gradle.testsuite.target.name`]
    | Indicates the name of the link:{javadocPath}/org/gradle/testing/base/TestSuiteTarget.html[TestSuiteTarget] that produced this output.
    | Value is the name of the Target.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

            final TaskContainer tasks = project.getTasks();
            tasks.register(PUBLISH_LOCAL_LIFECYCLE_TASK_NAME, publish -> {
                publish.setDescription("Publishes all Maven publications produced by this project to the local Maven cache.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            });
    
            project.getExtensions().configure(PublishingExtension.class, extension -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        @Nullable
        private volatile Try<T> result;
    
        /**
         * Creates a container for a value that is yet to be produced.
         *
         * Note: this is package protected. Use {@link CalculatedValueContainerFactory} instead.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

                return true;
            }
        }
    
        enum WorkResult {
            DID_WORK,
            DID_NO_WORK
        }
    
        /**
         * Loads output not produced during the current execution.
         * This can be output produced during a previous execution when the work is up-to-date,
         * or loaded from cache.
         */
        @Nullable
        Object loadAlreadyProducedOutput(File workspace);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         */
        void disableAutoTargetJvm();
    
        /**
         * Adds a task {@code javadocJar} that will package the output of the {@code javadoc} task in a JAR with classifier {@code javadoc}.
         * <P>
         * The produced artifact is registered as a documentation variant on the {@code java} component and added as a dependency on the {@code assemble} task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                            + "This can lead to incorrect results being produced, depending on what order the tasks are executed",
                        consumer,
                        producer
                    ))
                    .solution("Declare task '" + producer + "' as an input of '" + consumer + "'")
                    .solution("Declare an explicit dependency on '" + producer + "' from '" + consumer + "' using Task#dependsOn")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        by a `tf_executor.yield` operation. The operands of the terminator
        correspond to the result values of the `tf_executor.island` operation. An
        extra result of type `!tf_executor.control` is always produced by every
        `tf_executor.island`.
        Within an island, execution semantics follow standard sequential behavior as
        expected by TF2 and by compiler analyses and transformations, and values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                return determineBuildOutputDirectoryForArtifact(project, artifact);
            }
    
            // The fall-through indicates that the artifact cannot be found;
            // for instance if package produced nothing or classifier problems.
            return null;
        }
    
        private File determineBuildOutputDirectoryForArtifact(final MavenProject project, final Artifact artifact) {
            if (isTestArtifact(artifact)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_delta.go

    	con := &ProxyConnection{
    		conID:             connectionNumber.Inc(),
    		upstreamError:     make(chan error), // can be produced by recv and send
    		downstreamError:   make(chan error), // can be produced by recv and send
    		deltaRequestsChan: channels.NewUnbounded[*discovery.DeltaDiscoveryRequest](),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json.go

    	if !ok {
    		// Lookup the name of the test which produced the output using the
    		// indentation of the output as an index into the stack of the current
    		// subtests.
    		// If the indentation is greater than the number of current subtests
    		// then the output must have included extra indentation. We can't
    		// determine which subtest produced this output, so we default to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top