Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for sdk2 (0.05 sec)

  1. CONTRIBUTING.md

    If you did not have a Java 11 SDK installed before importing the project into IntelliJ and after adding a Java 11 SDK your IntelliJ still uses the wrong SDK version, you might need to invalidate IntelliJ's caches before reloading the project.
    
    ## Making your change
    
    ### Code change guidelines
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        }
    
        /**
         * The JDK to use for this module.
         * If {@code null}, the value of the existing or default ipr XML (inherited) is used.
         * If it is set to <code>inherited</code>, the project SDK is used.
         * Otherwise the SDK for the corresponding value of java version is used for this module.
         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public String getJdkName() {
            return jdkName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    link:http://sdkman.io[SDKMAN!] is a tool for managing parallel versions of multiple Software Development Kits on most Unix-like systems (macOS, Linux, Cygwin, Solaris and FreeBSD).
    Gradle is deployed and maintained by SDKMAN!:
    
    ----
    ❯ sdk install gradle
    ----
    
    Other package managers are available, but the version of Gradle distributed by them is not controlled by Gradle, Inc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                    File frameworkDir = new File(platformSdkPath, "Developer/Library/Frameworks");
                    // Since Xcode 11/12, the XCTest framework is being replaced by a different library that's available in the sdk root
                    File extraInclude = new File(platformSdkPath, "Developer/usr/lib");
                    return Arrays.asList("-parse-as-library", "-F" + frameworkDir.getAbsolutePath(), "-I", extraInclude.getAbsolutePath(), "-v");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. docs/bucket/versioning/README.md

    - Users with explicit permissions or the root credential can configure the versioning state of any bucket.
    
    ## Examples of enabling bucket versioning using MinIO Java SDK
    
    ### EnableVersioning() API
    
    ```
    import io.minio.EnableVersioningArgs;
    import io.minio.MinioClient;
    import io.minio.errors.MinioException;
    import java.io.IOException;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. go.mod

    	go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0
    	go.opentelemetry.io/otel/exporters/prometheus v0.49.0
    	go.opentelemetry.io/otel/metric v1.27.0
    	go.opentelemetry.io/otel/sdk v1.27.0
    	go.opentelemetry.io/otel/sdk/metric v1.27.0
    	go.opentelemetry.io/otel/trace v1.27.0
    	go.opentelemetry.io/proto/otlp v1.2.0
    	go.uber.org/atomic v1.11.0
    	go.uber.org/zap v1.27.0
    	golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            s3Client.put(stream, file.length(), uri)
            s3Client.getResource(new URI("s3://${bucketName}/maven/release/idontExist.txt"))
        }
    
        @Ignore
        def "should interact with real S3 using SDK delegation"() {
            String bucketName = System.getenv('G_S3_BUCKET')
    
            S3Client s3Client = new S3Client(new S3ConnectionProperties())
    
            def fileContents = 'This is only a test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            ipr.bytecodeTargetLevel.size() == 1
            ipr.bytecodeTargetLevel.@target == "1.6"
        }
    
        @ToBeFixedForConfigurationCache
        def "explicit project target level when module version differs from project java sdk"() {
            given:
            createDirs("subprojectA", "subprojectB", "subprojectC")
            settingsFile << """
    rootProject.name = "root"
    include 'subprojectA'
    include 'subprojectB'
    include 'subprojectC'
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            maybeAddClassTypesFromSignature(signature, types);
            if (superName != null) {
                // superName can be null if what we are analyzing is `java.lang.Object`
                // which can happen when a custom Java SDK is on classpath (typically, android.jar)
                Type type = Type.getObjectType(superName);
                maybeAddDependentType(types, type);
            }
            for (String s : interfaces) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top