Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for I386 (0.93 sec)

  1. pom.xml

                  <goals>
                    <goal>cmp</goal>
                  </goals>
                  <phase>verify</phase>
                  <configuration>
                    <parameter>
                      <!-- baseline is 3.8.6 for Maven 4 -->
                      <oldVersionPattern>${maven.baseline}</oldVersionPattern>
                      <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
    
    		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
    		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    		$2 ~ /^ELF_.*$/ {next}# <asm/elf.h> contains ELF_ARCH, etc.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    	}
    }
    
    func prepareCgroupFD(t *testing.T) (int, string) {
    	t.Helper()
    
    	const O_PATH = 0x200000 // Same for all architectures, but for some reason not defined in syscall for 386||amd64.
    
    	// Requires cgroup v2.
    	const prefix = "/sys/fs/cgroup"
    	selfCg, err := os.ReadFile("/proc/self/cgroup")
    	if err != nil {
    		if os.IsNotExist(err) || os.IsPermission(err) {
    			t.Skip(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    000003f0  5b c0 e8 b4 42 eb ee 83  c2 ae 0d 28 99 48 46 a9  |[...B......(.HF.|
    00000400  64 38 60 59 c2 dc 5c 7b  16 03 03 00 14 78 72 cf  |d8`Y..\{.....xr.|
    00000410  ac 5d 53 7e 73 b1 6e e2  0a 8e 12 33 be 03 86 6a  |.]S~s.n....3...j|
    00000420  ce                                                |.|
    >>> Flow 9 (client to server)
    00000000  16 03 03 02 69 33 a1 bb  7d ff 23 ba ad dc a0 1e  |....i3..}.#.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    // one of darwin, freebsd, linux, and so on.
    // To view possible combinations of GOOS and GOARCH, run "go tool dist list".
    const GOOS string = goos.GOOS
    
    // GOARCH is the running program's architecture target:
    // one of 386, amd64, arm, s390x, and so on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/runtime/asm_386.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // _rt0_386 is common startup code for most 386 systems when using
    // internal linking. This is the entry point for the program from the
    // kernel for an ordinary -buildmode=exe program. The stack holds the
    // number of arguments and the C-style argv.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/runtime/os_linux.go

    	sigfillset(&sa.sa_mask)
    	// Although Linux manpage says "sa_restorer element is obsolete and
    	// should not be used". x86_64 kernel requires it. Only use it on
    	// x86.
    	if GOARCH == "386" || GOARCH == "amd64" {
    		sa.sa_restorer = abi.FuncPCABI0(sigreturn__sigaction)
    	}
    	if fn == abi.FuncPCABIInternal(sighandler) { // abi.FuncPCABIInternal(sighandler) matches the callers in signal_unix.go
    		if iscgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/runtime/crash_test.go

    		t.Errorf("output contains BAD:\n%s", output)
    	}
    	// Check that it's a signal traceback.
    	want := "PC="
    	// For systems that use a breakpoint, check specifically for that.
    	switch runtime.GOARCH {
    	case "386", "amd64":
    		switch runtime.GOOS {
    		case "plan9":
    			want = "sys: breakpoint"
    		case "windows":
    			want = "Exception 0x80000003"
    		default:
    			want = "SIGTRAP"
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. hack/lib/util.sh

          host_arch=x86
          ;;
        s390x*)
          host_arch=s390x
          ;;
        ppc64le*)
          host_arch=ppc64le
          ;;
        *)
          kube::log::error "Unsupported host arch. Must be x86_64, 386, arm, arm64, s390x or ppc64le."
          exit 1
          ;;
      esac
      echo "${host_arch}"
    }
    
    # This figures out the host platform without relying on golang.  We need this as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. pkg/features/kube_features.go

    	// that is independent of a Pod.
    	DynamicResourceAllocation featuregate.Feature = "DynamicResourceAllocation"
    
    	// owner: @harche
    	// kep: http://kep.k8s.io/3386
    	// alpha: v1.25
    	//
    	// Allows using event-driven PLEG (pod lifecycle event generator) through kubelet
    	// which avoids frequent relisting of containers which helps optimize performance.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top