Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for 1library (0.13 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/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. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

    import org.jetbrains.kotlin.analysis.test.framework.project.structure.ktTestModuleStructure
    import org.jetbrains.kotlin.library.ToolingSingleFileKlibResolveStrategy
    import org.jetbrains.kotlin.library.metadata.KlibMetadataProtoBuf
    import org.jetbrains.kotlin.library.metadata.parseModuleHeader
    import org.jetbrains.kotlin.library.metadata.parsePackageFragment
    import org.jetbrains.kotlin.metadata.deserialization.NameResolverImpl
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    							"libraries, introduce a new version of the library as the same "+
    							"kubernetes version that the old version of the library is removed.", name, versionTracking.removed, vop.IntroducedVersion)
    					} else if vop.IntroducedVersion.LessThan(versionTracking.removed) {
    						t.Errorf("Did not expect overlap in presence of %s library. It was "+
    							"added again at version %v while scheduled to be removed at %v. When versioning "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    			ext.Sets(),
    		},
    	},
    	{
    		IntroducedVersion: version.MajorMinor(1, 30),
    		EnvOptions: []cel.EnvOption{
    			library.IP(),
    			library.CIDR(),
    		},
    	},
    	// Format Library
    	{
    		IntroducedVersion: version.MajorMinor(1, 31),
    		EnvOptions: []cel.EnvOption{
    			library.Format(),
    		},
    	},
    }
    
    var StrictCostOpt = VersionedOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyLibraryInitIntegrationTest.groovy

        public static final String SAMPLE_LIBRARY_CLASS = "org/example/Library.groovy"
        public static final String SAMPLE_LIBRARY_TEST_CLASS = "org/example/LibraryTest.groovy"
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'groovy-library', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaLibraryInitIntegrationTest.groovy

        public static final String SAMPLE_LIBRARY_CLASS = "org/example/Library.scala"
        public static final String SAMPLE_LIBRARY_TEST_CLASS = "org/example/LibrarySuite.scala"
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'scala-library', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinLibraryInitIntegrationTest.groovy

        public static final String SAMPLE_LIBRARY_CLASS = "org/example/Library.kt"
        public static final String SAMPLE_LIBRARY_TEST_CLASS = "org/example/LibraryTest.kt"
    
        def "defaults to kotlin build scripts"() {
            when:
            run ('init', '--type', 'kotlin-library')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsJavaIntegrationTest.groovy

        def "can build library with dependency on another library"() {
            settingsFile << """
                include("a")
                include("b")
            """
            file("a/build.gradle") << """
                plugins { id('java-library') }
            """
            file("b/build.gradle") << """
                plugins { id('java-library') }
                dependencies { implementation project(':a') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

         * source module structure and source code should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top