Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for ibm (0.02 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

            then:
            failureDescriptionContains("Option toolchainVendor doesn't accept value 'unexpectedVendor'. Possible values are " +
                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
        def "Given unexpected toolchain implementation When execute any task Then fails with expected exception message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            def jvm = Jvm.forHome(new File(System.getProperty("java.home")))
    
            jvm.is(current)
        }
    
        def "uses system property to determine if IBM JVM"() {
            when:
            System.properties[vendorProperty] = 'IBM Corporation'
            def jvm = Jvm.current()
    
            then:
            jvm.isIbmJvm()
    
            where:
            vendorProperty << ['java.vendor', 'java.vm.vendor']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	IsPOWER8 bool // ISA v2.07 (POWER8)
    	IsPOWER9 bool // ISA v3.00 (POWER9), implies IsPOWER8
    	_        CacheLinePad
    }
    
    // S390X contains the supported CPU features of the current IBM Z
    // (s390x) platform. If the current platform is not IBM Z then all
    // feature flags are false.
    //
    // S390X is padded to avoid false sharing. Further HasVX is only set
    // if the OS supports vector registers in addition to the STFLE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    //go:build gc && !purego
    
    package sha3
    
    // This file contains code for using the 'compute intermediate
    // message digest' (KIMD) and 'compute last message digest' (KLMD)
    // instructions to compute SHA-3 and SHAKE hashes on IBM Z.
    
    import (
    	"hash"
    
    	"golang.org/x/sys/cpu"
    )
    
    // codes represent 7-bit KIMD/KLMD function codes as defined in
    // the Principles of Operation.
    type code uint64
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    `VENDOR_SPECIFIC`::
    Acts as a placeholder and matches any implementation from any vendor (e.g. hotspot, zulu, ...)
    `J9`::
    Matches only virtual machine implementations using the OpenJ9/IBM J9 runtime engine.
    
    For example, to use an https://www.eclipse.org/openj9/[IBM] JVM, distributed via https://adoptopenjdk.net/[AdoptOpenJDK],
    you can specify the filter as shown in the example below.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_ppc64le.s

    // The vectorized implementation found below is a derived work
    // from code written by Anton Blanchard <anton@au.ibm.com> found
    // at https://github.com/antonblanchard/crc32-vpmsum.  The original
    // is dual licensed under GPL and Apache 2.  As the copyright holder
    // for the work, IBM has contributed this new work under
    // the golang license.
    
    // Changes include porting to Go assembler with modifications for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            return new NoDaemonGradleExecuter(this, testDirectoryProvider, version, buildContext).withWarningMode(null);
        }
    
        @Override
        boolean worksWith(Jvm jvm) {
            // Milestone 4 was broken on the IBM jvm
            if (jvm.isIbmJvm() && isVersion("1.0-milestone-4")) {
                return false;
            }
    
            JavaVersion javaVersion = jvm.getJavaVersion();
            if (javaVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            for (String vendorProperty : VENDOR_PROPERTIES) {
                if (System.getProperties().containsKey(vendorProperty)
                    && System.getProperty(vendorProperty).toLowerCase(Locale.ROOT).startsWith("ibm corporation")) {
                    return true;
                }
            }
            return false;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

            "//tensorflow:android_x86": "i686-none-android",
            "//tensorflow:ios": "arm64-none-ios",
            "//tensorflow:ios_x86_64": "x86_64-apple-ios",
            "//tensorflow:linux_ppc64le": "ppc64le-ibm-linux-gnu",
            "//tensorflow:linux_aarch64": "aarch64-none-linux-gnu",
            "//tensorflow:macos_x86_64": "x86_64-none-darwin",
            "//tensorflow:macos_arm64": "aarch64-none-darwin",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. go.mod

    go 1.21
    
    require (
    	cloud.google.com/go/storage v1.42.0
    	github.com/Azure/azure-storage-blob-go v0.15.0
    	github.com/Azure/go-autorest/autorest v0.11.29
    	github.com/Azure/go-autorest/autorest/adal v0.9.24
    	github.com/IBM/sarama v1.43.2
    	github.com/alecthomas/participle v0.7.1
    	github.com/bcicen/jstream v1.0.1
    	github.com/beevik/ntp v1.4.3
    	github.com/buger/jsonparser v1.1.1
    	github.com/cespare/xxhash/v2 v2.3.0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top