Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 786 for library_3 (0.14 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            def libraryTable = project.component.find { it.@name == "libraryTable" }
            assert libraryTable
    
            def library = libraryTable.library.find { it.@name == libraryName }
            assert library: "Can't find $libraryName in ${libraryTable.library******@****.***(', ')}"
    
            def classesRoots = library.CLASSES.root
            assert classesRoots.size() == classesLibs.size()
            classesLibs.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/plugins/pluginProject/groovy/buildSrc/src/main/groovy/my-java-library.gradle

    plugins {
        id 'java-library'
        id 'org.jetbrains.kotlin.jvm'
    }
    
    repositories {
        mavenCentral()
    }
    
    java {
        toolchain.languageVersion.set(JavaLanguageVersion.of(11))
    }
    
    tasks.test {
        useJUnitPlatform()
    }
    
    kotlin {
        jvmToolchain {
            languageVersion.set(JavaLanguageVersion.of(11))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 06:14:51 UTC 2024
    - 309 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/pluginProject/kotlin/buildSrc/src/main/kotlin/my-java-library.gradle.kts

    plugins {
        id("java-library")
        id("org.jetbrains.kotlin.jvm")
    }
    
    repositories {
        mavenCentral()
    }
    
    java {
        toolchain.languageVersion.set(JavaLanguageVersion.of(11))
    }
    
    tasks.test {
        useJUnitPlatform()
    }
    
    kotlin {
        jvmToolchain(11)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 06:14:51 UTC 2024
    - 251 bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-library/src/main/resources/META-INF/gradle-plugins/org.gradle.java-library.properties

    Tom Tresansky <******@****.***> 1708617374 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 663 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    func init() {
    	for i := range versions {
    		versions[i] = fmt.Sprintf("go1.%d", i)
    	}
    }
    
    // HasPackage reports whether the specified package path is part of
    // the standard library's public API.
    func HasPackage(path string) bool {
    	_, ok := PackageSymbols[path]
    	return ok
    }
    
    // SplitField splits the field symbol name into type and field
    // components. It must be called only on Field symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/main/resources/META-INF/gradle-plugins/org.gradle.java-library-distribution.properties

    Tom Tresansky <******@****.***> 1708617374 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 675 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    |<<#sec:groovy_library,groovy-library>>|A Groovy library
    |<<#sec:scala_application,scala-application>>|A Scala application
    |<<#sec:scala_library,scala-library>>|A Scala library
    |<<#sec:cpp_application,cpp-application>>|A command-line application implemented in C++
    |<<#sec:cpp_library,cpp-library>>|A C++ library
    |=================
    
    [[sec:build_init_tasks]]
    == Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      Binary(b, c, builder.opts().WithName("D"));
    
      GraphDef graphdef_in;
      FunctionDefLibrary library_in;
      TF_EXPECT_OK(builder.ToGraphDef(&graphdef_in));
      *library_in.add_function() = test::function::XTimesTwo();
    
      GraphDef graphdef_out = graphdef_in;
      FunctionDefLibrary library_out = library_in;
      TF_EXPECT_OK(Encapsulate(&graphdef_out, &library_out));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Gradle manages this distinction via the <<java_library_plugin.adoc#java_library_plugin,Java Library Plugin>>, which introduces an _api_ configuration in addition to the _implementation_ one covered in this chapter.
    If the types from a dependency appear in public fields or methods of your library's public classes, then that dependency is exposed via your library's public API and should therefore be added to the _api_ configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
Back to top