Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,729 for platform1 (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

            """
        }
    
        @Issue("https://github.com/gradle/gradle/issues/12728")
        def "the Java Platform plugin should apply the Java derivation strategy"() {
            def mod = mavenHttpRepo.module("org", "foo", "1.0").publish()
    
            buildFile << """
                apply plugin: 'java-platform'
    
                group = 'org.gradle.bugs'
                version = '1.9'
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/PlatformSupport.java

                        // default to library
                        details.closestMatch(library);
                    } else if (candidateValues.contains(platform)) {
                        // default to normal platform when only platforms are available and nothing has been requested
                        details.closestMatch(platform);
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/build.gradle.kts

        implementation(project(":ivy"))
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":maven"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":publish"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":dependency-management")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top