Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,135 for produced (0.14 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/LibraryBinarySpec.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.LibrarySpec}`.
     */
    @Incubating
    public interface LibraryBinarySpec extends BinarySpec {
        /**
         * The library that this binary belongs to.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 935 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    link the result into a binary file. For an executable component, Gradle can produce executable binary files. For a library component, Gradle can produce both static and shared library binary files. For example, when you define a library called `helloworld` and build on Linux, Gradle will, by default, produce `libhelloworld.so` and `libhelloworld.a` binaries.
    
    In many cases, more than one binary can be produced for a component. These binaries may vary based on the tool chain used to build,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTask.java

     *
     * This is useful for listing what a project produces in terms of variants and
     * what artifacts are attached to each variant.
     *
     * Variants, in this context, must be understood as "things produced by a project
     * which can safely be consumed by another project".
     *
     * @since 6.0
     */
    @DisableCachingByDefault(because = "Produces only non-cacheable console output by examining configurations at execution time")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 20:17:34 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // The attribute that marks function calls produced by the encapsulate
    // subgraphs pass and that should in turn be compiled via XlaLaunch operators.
    extern const char* const kXlaCompiledKernelAttr;
    
    // Does `node` have the kXlaCompiledKernelAttr attribute?
    bool IsXlaCompiledKernel(const Node& node);
    
    // Functions produced by the EncapsulateSubgraphs pass have their arguments in
    // the order:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/ComponentWithOutputs.java

    import org.gradle.api.file.FileCollection;
    
    /**
     * Represents a component with output files.
     *
     * @since 4.5
     */
    public interface ComponentWithOutputs extends SoftwareComponent {
        /**
         * Returns the outputs produced for this component.
         */
        FileCollection getOutputs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 985 bytes
    - Viewed (0)
  6. 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: Mon Jun 26 20:33:25 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

     */
    public interface ClasspathElementTransformFactory {
        /**
         * Updates jar/directory content hash to account for the transform produced by this factory.
         *
         * @param hasher the hasher to modify
         */
        void applyConfigurationTo(Hasher hasher);
    
        /**
         * Returns the transformation to be applied to the given jar/directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    ----
    java {
        withJavadocJar()
    }
    ----
    
    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    java {
        withJavadocJar()
    }
    ----
    
    
    
    The additional JAR will be produced as part of the `assemble` or `build` lifecycle tasks and will be part of the publication.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradlePublication.java

    import org.gradle.tooling.model.GradleModuleVersion;
    import org.gradle.tooling.model.ProjectIdentifier;
    import org.gradle.tooling.model.ProjectModel;
    
    /**
     * Represents some publication produced by a Gradle project, typically to a Maven or Ivy repository.
     *
     * @since 1.12
     */
    public interface GradlePublication extends ProjectModel {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/testdata/tsan2.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
    
    extern void GoRun(void);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 940 bytes
    - Viewed (0)
Back to top