Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for NaCl (0.03 sec)

  1. src/cmd/go/internal/imports/build.go

    	"android":   true,
    	"darwin":    true,
    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    	"illumos":   true,
    	"ios":       true,
    	"js":        true,
    	"linux":     true,
    	"nacl":      true, // legacy; don't remove
    	"netbsd":    true,
    	"openbsd":   true,
    	"plan9":     true,
    	"solaris":   true,
    	"wasip1":    true,
    	"windows":   true,
    	"zos":       true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    )
    
    var (
    	// See https://golang.org/pkg/crypto/aes/#NewCipher for details on supported key sizes for AES.
    	aesKeySizes = []int{16, 24, 32}
    
    	// See https://godoc.org/golang.org/x/crypto/nacl/secretbox#Open for details on the supported key sizes for Secretbox.
    	secretBoxKeySizes = []int{32}
    )
    
    // ValidateEncryptionConfiguration validates a v1.EncryptionConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

      /**
       * NaCl applications. For more information see <a
       * href="https://developer.chrome.com/native-client/devguide/coding/application-structure">the
       * Developer Guide for Native Client Application Structure</a>.
       *
       * @since 20.0
       */
      public static final MediaType NACL_APPLICATION = createConstant(APPLICATION_TYPE, "x-nacl");
    
      /**
       * NaCl portable applications. For more information see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. test/nosplit.go

    // run
    
    //go:build !nacl && !js && !aix && !wasip1 && !gcflags_noopt && gc
    
    // 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.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    )
    
    const debug = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/syscall/tables_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package syscall
    
    import "runtime"
    
    // These were originally used by Nacl, then later also used by
    // js/wasm. Now that they're only used by js/wasm, these numbers are
    // just arbitrary.
    //
    // TODO: delete? replace with something meaningful?
    const (
    	sys_null                 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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