Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for puppies (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/fieldpath/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package fieldpath supplies methods for extracting fields from objects
    // given a path to a field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 734 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/version/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // +k8s:openapi-gen=true
    
    // Package version supplies the type for version information collected at build time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 14 03:27:32 UTC 2018
    - 743 bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/CurrentInstallationSupplierTest.groovy

     */
    
    package org.gradle.jvm.toolchain.internal
    
    import org.gradle.internal.jvm.Jvm
    import spock.lang.Specification
    
    class CurrentInstallationSupplierTest extends Specification {
    
        def "supplies java home as installation"() {
            given:
            def supplier = new CurrentInstallationSupplier()
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. pkg/credentialprovider/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package credentialprovider supplies interfaces and implementations for
    // docker registry providers to expose their authentication scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 793 bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractTestFixturesIntegrationTest.groovy

    package org.gradle.java.fixtures
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.file.TestFile
    
    /**
     * Base class for integration tests of the Java test fixtures plugin that supplies some utility methods
     * for creating classes to test, tests for the them, and fixtures using them.
     */
    abstract class AbstractTestFixturesIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            selected = toolChain.select(platform2)
    
            then:
            selected.isAvailable()
            assert platformActionApplied == 2
        }
    
        @Requires(UnitTestPreconditions.NotMacOs)
        def "supplies no additional arguments to target native binary for tool chain default"() {
            def action = Mock(Action)
    
            given:
            toolSearchPath.locate(_, _) >> tool
            platform.getOperatingSystem() >> dummyOs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top