Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for s390x (0.22 sec)

  1. manifests/charts/gateways/istio-egress/values.yaml

        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Specify pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
        arch: {}
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/values.yaml

        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Specify pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
        arch: {}
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  3. configure.py

      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
          answer = raw_input(question)
        except NameError:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/operand_test.go

    }
    
    func TestLOONG64OperandParser(t *testing.T) {
    	parser := newParser("loong64")
    	testOperandParser(t, parser, loong64OperandTests)
    }
    
    func TestS390XOperandParser(t *testing.T) {
    	parser := newParser("s390x")
    	testOperandParser(t, parser, s390xOperandTests)
    }
    
    func TestFuncAddress(t *testing.T) {
    	type subtest struct {
    		arch  string
    		tests []operandTest
    	}
    	for _, sub := range []subtest{
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  5. doc/asm.html

    <p>
    This assembler is used by GOARCH values ppc64 and ppc64le.
    </p>
    
    <p>
    Reference: <a href="/pkg/cmd/internal/obj/ppc64">Go PPC64 Assembly Instructions Reference Manual</a>
    </p>
    
    <h3 id="s390x">IBM z/Architecture, a.k.a. s390x</h3>
    
    <p>
    The registers <code>R10</code> and <code>R11</code> are reserved.
    The assembler uses them to hold temporary values when assembling some instructions.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    )
    
    config_setting(
        name = "linux_ppc64le",
        values = {"cpu": "ppc"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "linux_s390x",
        values = {"cpu": "s390x"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "linux_mips64",
        values = {"cpu": "mips64"},
        visibility = ["//visibility:public"],
    )
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  7. cmd/testdata/xl-meta-merge.zip

    nio/release/linux-amd64/minio> | | 64-bit ARM | <https://dl.min.io/server/minio/release/linux-arm64/minio> | | 64-bit PowerPC LE (ppc64le) | <https://dl.min.io/server/minio/release/linux-ppc64le/minio> | | IBM Z-Series (S390X) | <https://dl.min.io/server/minio/release/linux-s390x/minio> | The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web...
    ZIP Archive
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    		if goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "386":
    		return []string{"-m32"}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390":
    		return []string{"-m31"}
    	case "s390x":
    		return []string{"-m64"}
    	case "mips64", "mips64le":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  9. ChangeLog.md

    ### Tools. Gradle. JS
    
    #### New Features
    
    - [`KT-48791`](https://youtrack.jetbrains.com/issue/KT-48791) KJS: Support for Power(ppc64le) and Z(s390x)
    - [`KT-32209`](https://youtrack.jetbrains.com/issue/KT-32209) org.jetbrains.kotlin.js does not respect Gradle's archivesBaseName
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    private docker registry. imagePullSecrets: [] # - private-registry-key # To output all istio components logs in json format by adding --log_as_json argument to each container argument logAsJson: false # Specify pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows: # 0 - Never scheduled # 1 - Least preferred # 2 - No preference # 3 - Most preferred arch: {} # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level> # The...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top