Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for puppies (0.18 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JabbaInstallationSupplierTest.groovy

            toolchainConfiguration.getJabbaHomeDirectory() >> candidates
        }
    
        def "supplies no installations for empty directory"() {
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies no installations for non-existing directory"() {
            given:
            assert candidates.deleteDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/OsXInstallationSupplierTest.groovy

        def "supplies no installations for absent output"() {
            given:
            def supplier = new OsXInstallationSupplier(OperatingSystem.MAC_OS, osxJavaHomeCommand)
            osxJavaHomeCommand.findJavaHomes() >> []
    
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
    
        def "supplies no installations for wrong os"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            expect:
            supplier.roots.length > 1
        }
    
        def "supplies no installations for non-existing directory"() {
            given:
            def supplier = new LinuxInstallationSupplier(OperatingSystem.LINUX, nonExistent)
    
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
    
        def "supplies no installations for empty directory"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LocationListInstallationSupplierTest.groovy

        def supplier = new LocationListInstallationSupplier(buildOptions, new IdentityFileResolver())
    
        def "supplies no installations for empty property"() {
            when:
            buildOptions.installationsFromPaths >> []
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies single installations for single path"() {
            when:
            def expectedFile = tmpDir.createDir("foo/bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/SdkmanInstallationSupplierTest.groovy

            toolchainConfiguration.getSdkmanCandidatesDirectory() >> candidates
    
        }
    
        def "supplies no installations for empty directory"() {
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies no installations for non-existing directory"() {
            given:
            assert candidates.deleteDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AsdfInstallationSupplierTest.groovy

            toolchainConfiguration.getAsdfDataDirectory() >> candidates
        }
    
        def "supplies no installations for empty directory"() {
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies no installations for non-existing directory"() {
            given:
            assert candidates.deleteDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/IntellijInstallationSupplierTest.groovy

            toolchainConfiguration.getIntelliJdkDirectory() >> candidates
        }
    
        def "supplies no installations for empty directory"() {
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies no installations for non-existing directory"() {
            given:
            assert candidates.deleteDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/EnvironmentVariableListInstallationSupplierTest.groovy

        def "supplies no installations for empty property"() {
            when:
            buildOptions.getJavaInstallationsFromEnvironment() >> []
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies single installations for single path"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AutoInstalledInstallationSupplierTest.groovy

        def "supplies no installations for absent property"() {
            given:
            def supplier = createSupplier([] as Set)
    
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "supplies single installations for single candidate"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. releasenotes/notes/46121.yaml

    area: installation
    releaseNotes:
      - |
        **Fixed** an issue preventing the gateway chart from being used with a custom HorizontalPodAutoscaler resource.
    
    upgradeNotes:
      - title: don't set spec.replicas unless user supplies a real number
        content: |
          When using the gateway chart, the user had to either pick between
          explicitly setting `spec.replicas`, or using the chart-supplied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 13:53:35 UTC 2023
    - 652 bytes
    - Viewed (0)
Back to top