Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,135 for produced (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/vcs/VersionControlRepository.java

    /**
     * Represents the details about a particular VCS repository that contains a build that produces zero or more components that can be used during dependency resolution.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ApplicationBinarySpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A binary produced from a `{@link org.gradle.platform.base.ApplicationSpec}`.
     * */
    @Incubating
    public interface ApplicationBinarySpec extends BinarySpec {
        /**
         * The application that this binary belongs to.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 957 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/component/SoftwareComponentContainer.java

     * limitations under the License.
     */
    
    package org.gradle.api.component;
    
    import org.gradle.api.ExtensiblePolymorphicDomainObjectContainer;
    
    /**
     * A Container that contains all of the Software Components produced by a Project.
     */
    public interface SoftwareComponentContainer extends ExtensiblePolymorphicDomainObjectContainer<SoftwareComponent> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 14 06:10:47 UTC 2023
    - 928 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/SourceFile.java

     *
     * @since 4.10
     */
    public interface SourceFile {
        /**
         * Returns the source file.
         */
        File getSourceFile();
    
        /**
         * Returns the object file produced for the source file.
         */
        File getObjectFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 966 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_weight_only.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-quantize | FileCheck %s
    
    // Test that hybrid quantized dot_general is produced when q/dq pair only exists
    // for weight.
    
    module attributes {tf_saved_model.semantics} {
      func.func private @quantize_dot_general_fn(%arg0: tensor<1x2xf32>) -> tensor<1x3xf32> attributes {tf._original_func_name = "main_0"} {
        %cst = stablehlo.constant dense<3.000000e-01> : tensor<2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

            def block2 = server.expectAndBlock("block2")
    
            when:
            // Block until first build has produced red things
            def build1 = executer.withTasks("redThings", "block1", "blueThings").start()
            block1.waitForAllPendingCalls()
    
            // Block until second build has produced blue things
            def build2 = executer.withTasks("redThings", "blueThings", "block2").start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             */
            @Nullable
            String getSkipMessage();
    
            /**
             * If work was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the work executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue43190.go

    // Copyright 2020 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.
    
    // The errors below are produced by the parser, but we check
    // them here for consistency with the types2 tests.
    
    package p
    
    import ; // ERROR "missing import path"
    import "" // ERROR "invalid import path (empty string)"
    import
    var /* ERROR "missing import path" */ _ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 997 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/component/SoftwareComponent.java

     * limitations under the License.
     */
    
    package org.gradle.api.component;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A software component produced by a Gradle software project.
     * <p>
     * An implementation of this interface may also implement {@link ComponentWithVariants} to provide
     * information about the variants that the component provides.
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 13 20:25:43 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    If you run a full build as shown above, Gradle will have produced the archive in two formats for you:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top