Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 525 for zarch (0.08 sec)

  1. tools/docker-builder/docker.go

    	// To workaround, we do a build per-arch, and suffix with the architecture
    	for _, arch := range args.Architectures {
    		args.Architectures = []string{arch}
    		args.suffix = ""
    		if arch != "linux/amd64" {
    			// For backwards compatibility, we do not suffix linux/amd64
    			_, arch, _ := strings.Cut(arch, "/")
    			args.suffix = "-" + arch
    		}
    		log.Infof("building for arch %v", arch)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. pkg/api/storage/util_test.go

    				},
    				NodeTopology: &metav1.LabelSelector{
    					MatchLabels: map[string]string{
    						"beta.kubernetes.io/arch": "amd64",
    						"beta.kubernetes.io/os":   "linux",
    					},
    				},
    			},
    			expected: []string{
    				`nodeTopology.matchLabels.beta.kubernetes.io/arch: deprecated since v1.14; use "kubernetes.io/arch" instead`,
    				`nodeTopology.matchLabels.beta.kubernetes.io/os: deprecated since v1.14; use "kubernetes.io/os" instead`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.ecovctrs", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.end", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.gcdata", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.gcbss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.types", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.etypes", 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    		}
    		gotype := loader.Sym(getattr(die, dwarf.DW_AT_type).Data.(dwSym))
    		keytype := decodetypeMapKey(d.ldr, d.arch, gotype)
    		valtype := decodetypeMapValue(d.ldr, d.arch, gotype)
    		keydata := d.ldr.Data(keytype)
    		valdata := d.ldr.Data(valtype)
    		keysize, valsize := decodetypeSize(d.arch, keydata), decodetypeSize(d.arch, valdata)
    		keytype, valtype = d.walksymtypedef(d.defgotype(keytype)), d.walksymtypedef(d.defgotype(valtype))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/internal/xcoff/ar.go

    // as an AIX big archive.
    func OpenArchive(name string) (*Archive, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	arch, err := NewArchive(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	arch.closer = f
    	return arch, nil
    }
    
    // Close closes the Archive.
    // If the Archive was created using NewArchive directly instead of OpenArchive,
    // Close has no effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. buildscripts/checkdeps.sh

    			return 1
    		fi
    	done
    
    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64)
    		return
    		;;
    	*)
    		echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64]"
    		exit 1
    		;;
    	esac
    }
    
    assert_is_supported_os() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tools/build-kind-image.sh

    kdir="${1:?Kubernetes directory}"
    registry="${2:?registry}"
    
    ARCHES="${ARCHES:-amd64 arm64}"
    IFS=" " read -r -a __arches__ <<< "$ARCHES"
    
    images=()
    for arch in "${__arches__[@]}"; do
        image="${registry}-${arch}"
        kind build node-image --image="${image}" --arch="${arch}" "${kdir}"
        images+=("${image}")
    done
    
    # combine to manifest list tagged with kubernetes version
    export DOCKER_CLI_EXPERIMENTAL=enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	}
    	return match, cond, result
    }
    
    func genRules(arch arch)          { genRulesSuffix(arch, "") }
    func genSplitLoadRules(arch arch) { genRulesSuffix(arch, "splitload") }
    func genLateLowerRules(arch arch) { genRulesSuffix(arch, "latelower") }
    
    func genRulesSuffix(arch arch, suff string) {
    	// Open input file.
    	text, err := os.Open(arch.name + suff + ".rules")
    	if err != nil {
    		if suff == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/_affinity.tpl

      {{- $nodeSelector := default .global.defaultNodeSelector .nodeSelector -}}
      {{- if or .global.arch $nodeSelector }}
          nodeSelectorTerms:
          - matchExpressions:
            {{- if .global.arch }}
            - key: kubernetes.io/arch
              operator: In
              values:
            {{- range $key, $val := .global.arch }}
              {{- if gt ($val | int) 0 }}
              - {{ $key | quote }}
              {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/export_test.go

    func testConfigARM64(tb testing.TB) *Conf { return testConfigArch(tb, "arm64") }
    
    func testConfigArch(tb testing.TB, arch string) *Conf {
    	ctxt, ok := testCtxts[arch]
    	if !ok {
    		tb.Fatalf("unknown arch %s", arch)
    	}
    	if ctxt.Arch.PtrSize != 8 {
    		tb.Fatal("testTypes is 64-bit only")
    	}
    	c := &Conf{
    		config: NewConfig(arch, testTypes, ctxt, true, false),
    		tb:     tb,
    	}
    	return c
    }
    
    type Conf struct {
    	config *Config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top