Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NaCl (0.12 sec)

  1. src/cmd/dist/build.go

    	"wasm",
    }
    
    // The known operating systems.
    var okgoos = []string{
    	"darwin",
    	"dragonfly",
    	"illumos",
    	"ios",
    	"js",
    	"wasip1",
    	"linux",
    	"android",
    	"solaris",
    	"freebsd",
    	"nacl", // keep;
    	"netbsd",
    	"openbsd",
    	"plan9",
    	"windows",
    	"aix",
    }
    
    // find reports the first index of p in l[0:n], or else -1.
    func find(p string, l []string) int {
    	for i, s := range l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //     GTEST_OS_LINUX_ANDROID - Google Android
    //   GTEST_OS_MAC      - macOS
    //     GTEST_OS_IOS    - iOS
    //       GTEST_OS_IOS_SIMULATOR - iOS simulator
    //   GTEST_OS_NACL     - Google Native Client (NaCl)
    //   GTEST_OS_OPENBSD  - OpenBSD
    //   GTEST_OS_QNX      - QNX
    //   GTEST_OS_SOLARIS  - Sun Solaris
    //   GTEST_OS_SYMBIAN  - Symbian
    //   GTEST_OS_WINDOWS  - Windows (Desktop, MinGW, or Mobile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //     GTEST_OS_LINUX_ANDROID - Google Android
    //   GTEST_OS_MAC      - macOS
    //     GTEST_OS_IOS    - iOS
    //       GTEST_OS_IOS_SIMULATOR - iOS simulator
    //   GTEST_OS_NACL     - Google Native Client (NaCl)
    //   GTEST_OS_OPENBSD  - OpenBSD
    //   GTEST_OS_QNX      - QNX
    //   GTEST_OS_SOLARIS  - Sun Solaris
    //   GTEST_OS_SYMBIAN  - Symbian
    //   GTEST_OS_WINDOWS  - Windows (Desktop, MinGW, or Mobile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    	case "buildrun":
    		// Build an executable from Go file, then run it, verify its output.
    		// Useful for timeout tests where failure mode is infinite loop.
    		// TODO: not supported on NaCl
    		cmd := []string{goTool, "build", t.goGcflags(), "-o", "a.exe"}
    		if *linkshared {
    			cmd = append(cmd, "-linkshared")
    		}
    		longDirGoFile := filepath.Join(filepath.Join(t.gorootTestDir, t.dir), t.goFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top