Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,413 for 1library (0.83 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

        def "fails if a project doesn't follow convention"() {
            given:
            createDirs("1library")
            settingsFile << """
                include '1library'
            """
    
            when:
            fails 'help'
    
            then:
            failureDescriptionContains "Cannot generate project dependency accessors because project '1library' doesn't follow the naming convention: [a-zA-Z]([A-Za-z0-9\\-_])*"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

    /**
     * A classpath entry representing a library.
     */
    public class Library extends AbstractLibrary {
        public Library(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromPath((String) node.attribute("sourcepath")));
        }
    
        public Library(FileReference library) {
            super(library);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Library.java

     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.component.Component;
    
    /**
     * A library that can be linked into or depended on by another software element.
     */
    @Incubating
    public interface Library extends Component {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 878 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/groovy/library/src/main/groovy/Library.groovy

    class Library {
        void function() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/kotlin/library/src/main/groovy/Library.groovy

    class Library {
        void function() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top