Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for 80386 (0.03 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/FileArchOnlyBinaryInfo.groovy

            String header = Iterables.getFirst(lines, "")
            if (header.contains("x86-64")) {
                return Architectures.forInput("x86_64")
            } else if (header.contains("80386")) {
                return Architectures.forInput("x86")
            } else {
                throw new RuntimeException("Cannot determine architecture for ${header}\nfile output:\n${lines}")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     OS/ABI:                            UNIX - System V
     ABI Version:                       0
     Type:                              EXEC (Executable file)
     Machine:                           Intel 80386
     Version:                           0x1
     Entry point address:               0x8048310
     Start of program headers:          52 (bytes into file)
     Start of section headers:          4400 (bytes into file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

        }
    
        static ArchitectureInternal readArch(List<String> lines) {
            def archString = readFirstHeaderValue(lines, "Machine:", "Maschine:")
            switch (archString) {
                case "Intel 80386":
                    return Architectures.forInput("x86")
                case "Advanced Micro Devices X86-64":
                    return Architectures.forInput("x86_64")
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. test/codegen/mapaccess.go

    	// amd64:-".*mapaccess"
    	// arm:-".*mapaccess"
    	// arm64:-".*mapaccess"
    	m[k] ^= 89
    
    	// 386:-".*mapaccess"
    	// amd64:-".*mapaccess"
    	// arm:-".*mapaccess"
    	// arm64:-".*mapaccess"
    	m[k] <<= 9
    
    	// 386:-".*mapaccess"
    	// amd64:-".*mapaccess"
    	// arm:-".*mapaccess"
    	// arm64:-".*mapaccess"
    	m[k] >>= 10
    
    	// 386:-".*mapaccess"
    	// amd64:-".*mapaccess"
    	// arm:-".*mapaccess"
    	// arm64:-".*mapaccess"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:36:38 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    	//   OS/ABI:                            UNIX - System V
    	//   ABI Version:                       0
    	//   Type:                              REL (Relocatable file)
    	//   Machine:                           Intel 80386
    	//   Version:                           0x1
    	//   Entry point address:               0x0
    	//   Start of program headers:          0 (bytes into file)
    	//   Start of section headers:          3003468 (bytes into file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. cluster/gce/manifests/glbc.manifest

      terminationGracePeriodSeconds: 600
      hostNetwork: true
      containers:
      - image: gcr.io/k8s-ingress-image-push/ingress-gce-glbc-amd64:v1.23.1
        livenessProbe:
          httpGet:
            path: /healthz
            port: 8086
            scheme: HTTP
          initialDelaySeconds: 30
          # healthz reaches out to GCE
          periodSeconds: 30
          timeoutSeconds: 15
          successThreshold: 1
          failureThreshold: 5
        name: l7-lb-controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv13-ECDHE-ECDSA-AES

    000000e0  ef f5 18 eb ba 49 2d 86  a6 d1 f7 c1 9e 67 10 9f  |.....I-......g..|
    000000f0  a1 d2 62 bd 4c 6c 5e a4  41 f6 1e fa fd e7 55 bc  |..b.Ll^.A.....U.|
    00000100  16 ad 91 91 de 03 86 d7  e1 88 87 ab 0e f4 f5 bb  |................|
    00000110  16 da 37 bb a4 ce 4e 6c  5f 88 41 f9 a2 90 9a 2d  |..7...Nl_.A....-|
    00000120  5c 14 d5 01 28 06 a9 20  a4 ae 92 17 c5 95 b1 dc  |\...(.. ........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue8036.go

    // run
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8036. Stores necessary for stack scan being eliminated as redundant by optimizer.
    
    package main
    
    import "runtime"
    
    type T struct {
    	X *int
    	Y *int
    	Z *int
    }
    
    type TI [3]uintptr
    
    //go:noinline
    func G() (t TI) {
    	t[0] = 1
    	t[1] = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 633 bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolverTest.java

            assertEquals(expected, resolver.toAscii(host));
    
            host = "xn--zckzah.org";
            expected = "xn--zckzah.org";
            assertEquals(expected, resolver.toAscii(host));
    
            host = "%E3%83%86%E3%82%B9%E3%83%88.org";
            expected = "xn--zckzah.org";
            assertEquals(expected, resolver.toAscii(host));
    
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java

            value = "file://テスト.txt";
            result = "file://%E3%83%86%E3%82%B9%E3%83%88.txt";
            assertEquals(result, fsClient.preprocessUri(value));
    
            value = "test.txt";
            result = "file://test.txt";
            assertEquals(result, fsClient.preprocessUri(value));
    
            value = "テスト.txt";
            result = "file://%E3%83%86%E3%82%B9%E3%83%88.txt";
            assertEquals(result, fsClient.preprocessUri(value));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top