Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,893 for platform1 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - static library 'hello:staticLibrary':
          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - executable 'main:executable':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. pkg/volume/util/hostutil/hostutil_unsupported.go

    // unsupported platforms
    type HostUtil struct{}
    
    // NewHostUtil returns a struct that implements the HostUtils interface on
    // unsupported platforms
    func NewHostUtil() *HostUtil {
    	return &HostUtil{}
    }
    
    var errUnsupported = errors.New("volume/util/hostutil on this platform is not supported")
    
    // DeviceOpened always returns an error on unsupported platforms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

            run "publishAllPublicationsToMavenRepo", "-Pver=1.1"
    
            then:
            ['1.0', '1.1'].each { v ->
                def platform = mavenRepo.module("com.acme.foo", "platform", v)
                platform.assertPublished()
                platform.hasGradleMetadataRedirectionMarker()
                platform.parsedModuleMetadata.variant("apiElements") {
                    constraint("com.acme.foo:core:$v") {
                        exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocator.java

            return new File(includeDir, "io.h").exists();
        }
    
        @Override
        boolean isValidComponentLibDir(File libDir) {
            for (String platform : PLATFORMS) {
                if (!new File(libDir, platform + "/libucrt.lib").exists()) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/internal/fuzz/counters_unsupported.go

    // license that can be found in the LICENSE file.
    
    // TODO: expand the set of supported platforms, with testing. Nothing about
    // the instrumentation is OS specific, but only amd64 and arm64 are
    // supported in the runtime. See src/runtime/libfuzzer*.
    //
    // If you update this constraint, also update internal/platform.FuzzInstrumented.
    //
    //go:build !((darwin || linux || windows || freebsd) && (amd64 || arm64))
    
    package fuzz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top