Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,189 for library_3 (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-library.pbtxt

        key: "_disable_call_shape_inference"
        value {
          b: true
        }
      }
      experimental_debug_info {
      }
    }
    node {
      name: "unnamed1"
      op: "bar"
      experimental_debug_info {
      }
    }
    library {
      function {
        signature {
          name: "bar"
        }
      }
      function {
        signature {
          name: "foo"
        }
        node_def {
          name: "unnamed"
          op: "bar"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovylibrary/Library.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
        boolean someLibraryMethod() {
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 127 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalalibrary/Library.scala.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
      def someLibraryMethod(): Boolean = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 116 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javalibrary/Library.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    public class Library {
        public boolean someLibraryMethod() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 153 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties

    #Generated file, please do not edit - Version values used in build-init templates
    commons-math=3.6.1
    commons-text=1.12.0
    groovy=3.0.21
    guava=33.2.1-jre
    junit-jupiter=5.10.2
    junit=4.13.2
    kotlin=2.0.0
    scala-library=2.13.14
    scala-xml=1.2.0
    scala=2.13
    scalatest=3.2.18
    scalatestplus-junit=3.2.2.0
    slf4j=2.0.13
    spock=2.2-groovy-3.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 340 bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinlibrary/Library.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
        fun someLibraryMethod(): Boolean {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 139 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-library-summary.adoc.template

    * Check out the user manual chapter on link:{userManualPath}/building_${languageLC.raw}_projects.html[Building ${language.raw} projects]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    More information about the features the `java-library` plugin adds to any JVM library project, such as API and implementation separation, can be found in the link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation].
    
    == Assemble the library JAR
    
    To build the project, run the `build` task. You can use the regular `gradle` command, but when a project includes a wrapper script, it is considered good form to use it instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    == Next steps
    
    Building a library is just one aspect of reusing code across project boundaries.
    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.library-conventions.gradle

    // Define Java Library conventions for this organization.
    // Projects need to use the organization's Java conventions and publish using Maven Publish
    
    // tag::plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
        id 'myproject.java-conventions'
    }
    // end::plugins[]
    
    // Projects have the 'com.example' group by convention
    group = 'com.example'
    
    publishing {
        publications {
            library(MavenPublication) {
    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