Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,053 for platform1 (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/LenientPlatformGraphResolveState.java

        }
    
        /**
         * @param platformId The consuming platform.
         */
        public VariantGraphResolveState getDefaultVariant(NodeState from, @Nullable ComponentIdentifier platformId) {
            return newResolveStateFor(new LenientPlatformConfigurationMetadata(getMetadata().getPlatformState(), getMetadata().getId(), from, platformId));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/EnforcedPlatformPublicationValidator.java

    public class EnforcedPlatformPublicationValidator implements DependencyAttributesValidator {
        private final static String SUPPRESSION = "enforced-platform";
        private final static String LONG_EXPLANATION = "In general publishing dependencies to enforced platforms is a mistake: " +
            "enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. settings.gradle.kts

                if (element is Platform) {
                    writer.platform(element)
                } else {
                    writer.element(element)
                }
            }
            println(endDiagram)
        }
    
        private fun NodeWriter.platform(platform: Platform) {
            println()
            node("subgraph ${platform.id}[\"${platform.name} platform\"]") {
                for (child in platform.children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

    }
    
    def findGoogleTestCoreLibForPlatform(Platform platform) {
        if (platform.operatingSystem.windows) {
    //        return "vs2013/gtest.lib"
            return "vs2015/gtest.lib"
    //        return "vs2013/gtest-core.lib"
    //        return "cygwin/gtest-core.lib"
    //        return "mingw/gtest-core.lib"
        } else if (platform.operatingSystem.macOsX) {
            return "osx/libgtest.a"
        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. README.md

    with HTTPS clients is an important defense against potential security problems. [We
    track][tls_history] the dynamic TLS ecosystem and adjust OkHttp to improve connectivity and
    security.
    
    OkHttp uses your platform's built-in TLS implementation. On Java platforms OkHttp also supports
    [Conscrypt][conscrypt], which integrates [BoringSSL](https://github.com/google/boringssl) with Java. OkHttp will use Conscrypt if it is
    the first security provider:
    
    ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'compatible platforms, but additional attributes unmatched' | [platform: JavaVersion.JAVA8]                 | [platform: JavaVersion.JAVA6, flavor: 'free'] | [platform: JavaVersion.JAVA6, flavor: 'paid'] | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.platform;
    
    import org.gradle.api.Describable;
    import org.gradle.api.tasks.Nested;
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.platform.base.Platform;
    
    /**
     * A target platform for building native binaries. Each target platform is given a name, and may optionally be given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Package atomic provides atomic operations, independent of sync/atomic,
    to the runtime.
    
    On most platforms, the compiler is aware of the functions defined
    in this package, and they're replaced with platform-specific intrinsics.
    On other platforms, generic implementations are made available.
    
    Unless otherwise noted, operations defined in this package are sequentially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 771 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/NativePlatforms.java

            platforms.add(createPlatform(freebsd, ppc));
            platforms.add(createPlatform(freebsd, ppc64));
    
            platforms.add(createPlatform(unix, x86));
            platforms.add(createPlatform(unix, x64));
            platforms.add(createPlatform(unix, armv7));
            platforms.add(createPlatform(unix, aarch64));
            platforms.add(createPlatform(unix, ppc));
            platforms.add(createPlatform(unix, ppc64));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * An **engine service** as defined by the Platform Interface (see the README).
     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top