Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 874 for installations (0.4 sec)

  1. docs/en/docs/deployment/versions.md

    fastapi>=0.45.0,<0.46.0
    ```
    
    that would mean that you would use the versions `0.45.0` or above, but less than `0.46.0`, for example, a version `0.45.2` would still be accepted.
    
    If you use any other tool to manage your installations, like Poetry, Pipenv, or others, they all have a way that you can use to define specific versions for your packages.
    
    ## Available versions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                    toolchain {
                        languageVersion = JavaLanguageVersion.of(14)
                    }
                }
            """
    
            propertiesFile << """
                org.gradle.java.installations.auto-download=false
            """
    
            file("src/main/java/Foo.java") << "public class Foo {}"
    
            when:
            failure = executer
                .withTasks("compileJava")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesExecutor.java

                .map(Jvm::getJavaHome)
                .map(File::getAbsolutePath)
                .collect(Collectors.joining(","));
            return "-Porg.gradle.java.installations.paths=" + allJdkPaths;
        }
    
        private static String capitalize(String s) {
            return s.substring(0, 1).toUpperCase() + s.substring(1);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Gradle ships with its own Kotlin and Groovy libraries, therefore they do not need to be installed.
    Existing installations are ignored by Gradle.
    
    <<compatibility.adoc#compatibility, See the full compatibility notes for Java, Groovy, Kotlin, and Android.>>
    
    == Linux installation
    
    .Installing with a package manager
    [%collapsible]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplier.java

    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    
    public class MavenToolchainsInstallationSupplier implements InstallationSupplier {
    
        private static final String PROPERTY_NAME = "org.gradle.java.installations.maven-toolchains-file";
        private static final String PARSE_EXPRESSION = "/toolchains/toolchain[type='jdk']/configuration/jdkHome//text()";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

            then:
            result.containsAll([
                new File("/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home"),
            ])
            result.size() == 1
        }
    
        def "can parse output with no installations"() {
            given:
            def output = """
    Unable to find any JVMs matching version "(null)".
    Matching Java Virtual Machines (0):
    
    Default Java Virtual Machines (0):
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            when:
            executer.withJavaHome(java8Home).withArguments("-Porg.gradle.java.installations.paths=$java8Home,$java11Home")
            succeeds("printFoo")
    
            then:
            outputContains("JAR = DEFAULT")
    
            when:
            executer.withJavaHome(java11Home).withArguments("-Porg.gradle.java.installations.paths=$java8Home,$java11Home")
            succeeds("printFoo")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. manifests/charts/gateway/README.md

    ```yaml
    networkGateway: network-1
    ```
    
    ### Migrating from other installation methods
    
    Installations from other installation methods (such as istioctl, Istio Operator, other helm charts, etc) can be migrated to use the new Helm charts
    following the guidance below.
    If you are able to, a clean installation is simpler. However, this often requires an external IP migration which can be challenging.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "assigned tool" | "when configured"                    | "other"  | null         | null           | "other"
        }
    
        def "uses toolchain from forkOptions #forkOption when it points outside of installations"() {
            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.differentVersion
    
            def path = TextUtil.normaliseFileSeparators(otherJdk.javaHome.absolutePath.toString() + appendPath)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

        }
    
        ProviderFactory createProviderFactory(String propertyValue) {
            return Mock(ProviderFactory) {
                gradleProperty("org.gradle.java.installations.auto-download") >> Providers.ofNullable(propertyValue)
            }
        }
    
        private JavaToolchainResolver mockResolver(Optional<JavaToolchainDownload> download) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top