Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,855 for platform1 (0.19 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/EnforcedPlatformIntegrationTest.groovy

            settingsFile << """
                include 'platform'
                include 'lib'
            """
    
            buildFile << """
                allprojects {
                    ${mavenCentralRepository()}
                }
    
                apply plugin: 'java-library'
    
                dependencies {
                    implementation enforcedPlatform(project(":platform"))
                    implementation project(':lib')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. cluster/get-kube-binaries.sh

      if [[ "${trace_on}" == "on" ]]; then
        set -x
      fi
    }
    
    function extract_arch_tarball() {
      local -r tarfile="$1"
      local -r platform="$2"
      local -r arch="$3"
    
      platforms_dir="${KUBE_ROOT}/platforms/${platform}/${arch}"
      echo "Extracting ${tarfile} into ${platforms_dir}"
      mkdir -p "${platforms_dir}"
      # Tarball looks like kubernetes/{client,server,test}/bin/BINARY"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top