Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for I386 (0.04 sec)

  1. src/make.bash

    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    # system, so the only common reason to set this is to set
    # GOHOSTARCH=386 on an amd64 machine.
    #
    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/security/simple-oauth2.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="82-85"
        {!> ../../../docs_src/security/tutorial003_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="83-86"
        {!> ../../../docs_src/security/tutorial003_an.py!}
        ```
    
    === "Python 3.10+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/generic.go

    	// Evented PLEG after the event has been received by the Kubelet.
    	// For more details refer to:
    	// https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/3386-kubelet-evented-pleg#timestamp-of-the-pod-status
    	if utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) && isEventedPLEGInUse() && status != nil {
    		timestamp = status.TimeStamp
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/simple-oauth2.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="82-85"
        {!> ../../../docs_src/security/tutorial003_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="83-86"
        {!> ../../../docs_src/security/tutorial003_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="78-81"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	}
    
    	var arch macho.Cpu
    	// Use the host architecture.
    	// TODO: This is not ideal because the host architecture may not be the one
    	// that was profiled. E.g. an amd64 host can profile a 386 program.
    	switch runtime.GOARCH {
    	case "386":
    		arch = macho.Cpu386
    	case "amd64", "amd64p32":
    		arch = macho.CpuAmd64
    	case "arm", "armbe", "arm64", "arm64be":
    		arch = macho.CpuArm
    	case "ppc":
    		arch = macho.CpuPpc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/link/link_test.go

    	// Test that PE rsrc section is handled correctly (issue 39658).
    	testenv.MustHaveGoBuild(t)
    
    	if (runtime.GOARCH != "386" && runtime.GOARCH != "amd64") || runtime.GOOS != "windows" {
    		// This test is limited to amd64 and 386, because binutils is limited as such
    		t.Skipf("this is only for windows/amd64 and windows/386")
    	}
    
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	pkgdir := filepath.Join("testdata", "pe-binutils")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/syscall_windows.go

    	ChangedTime    int64
    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X370,
        X371,
        X372,
        X373,
        X374,
        X375,
        X376,
        X377,
        X378,
        X379,
        X380,
        X381,
        X382,
        X383,
        X384,
        X385,
        X386,
        X387,
        X388,
        X389,
        X390,
        X391,
        X392,
        X393,
        X394,
        X395,
        X396,
        X397,
        X398,
        X399,
        X400,
        X401,
        X402,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

    # library is precompiled for in build/build-image/cross/Dockerfile
    readonly KUBE_SUPPORTED_CLIENT_PLATFORMS=(
      linux/amd64
      linux/386
      linux/arm
      linux/arm64
      linux/s390x
      linux/ppc64le
      darwin/amd64
      darwin/arm64
      windows/amd64
      windows/386
      windows/arm64
    )
    
    # Which platforms we should compile test targets for.
    # Not all client platforms need these tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    // st [slot], ptr          st [slotmark], 1
    //
    // ld r1, [slotmark]       ld r2, [slot]
    //
    // Without an expensive memory barrier between the st and the ld, the final
    // result on most HW (including 386/amd64) can be r1==r2==0. This is a classic
    // example of what can happen when loads are allowed to be reordered with older
    // stores (avoiding such reorderings lies at the heart of the classic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top