Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 0x070C2 (0.45 sec)

  1. okhttp-idna-mapping-table/src/test/kotlin/okhttp3/internal/idn/MappingTablesTest.kt

          mergeAdjacentRanges(
            listOf(
              Mapping(0x0041, 0x0041, TYPE_MAPPED, "a".encodeUtf8()),
              Mapping(0x0042, 0x0042, TYPE_MAPPED, "b".encodeUtf8()),
            ),
          ),
        ).containsExactly(
          Mapping(0x0041, 0x0041, TYPE_MAPPED, "a".encodeUtf8()),
          Mapping(0x0042, 0x0042, TYPE_MAPPED, "b".encodeUtf8()),
        )
      }
    
      @Test fun simplifyCanonicalizesType() {
        assertThat(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/getrandom_solaris.go

    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
    	GRND_RANDOM GetRandomFlag = 0x0002
    )
    
    // GetRandom calls the getrandom system call.
    func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) {
    	if len(p) == 0 {
    		return 0, nil
    	}
    	if getrandomUnsupported.Load() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:54:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/syscall/const_plan9.go

    )
    
    // Bind flags
    const (
    	MORDER  = 0x0003 // mask for bits defining order of mounting
    	MREPL   = 0x0000 // mount replaces object
    	MBEFORE = 0x0001 // mount goes before others in union directory
    	MAFTER  = 0x0002 // mount goes after others in union directory
    	MCREATE = 0x0004 // permit creation in mounted directory
    	MCACHE  = 0x0010 // cache some data
    	MMASK   = 0x0017 // all bits on
    )
    
    // Rfork flags
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/debug/pe/pe.go

    	IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14
    )
    
    // Values of IMAGE_FILE_HEADER.Characteristics. These can be combined together.
    const (
    	IMAGE_FILE_RELOCS_STRIPPED         = 0x0001
    	IMAGE_FILE_EXECUTABLE_IMAGE        = 0x0002
    	IMAGE_FILE_LINE_NUMS_STRIPPED      = 0x0004
    	IMAGE_FILE_LOCAL_SYMS_STRIPPED     = 0x0008
    	IMAGE_FILE_AGGRESIVE_WS_TRIM       = 0x0010
    	IMAGE_FILE_LARGE_ADDRESS_AWARE     = 0x0020
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 01:21:43 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/key.go

    	CREATE_SUB_KEY     = 0x00004
    	ENUMERATE_SUB_KEYS = 0x00008
    	EXECUTE            = 0x20019
    	NOTIFY             = 0x00010
    	QUERY_VALUE        = 0x00001
    	READ               = 0x20019
    	SET_VALUE          = 0x00002
    	WOW64_32KEY        = 0x00200
    	WOW64_64KEY        = 0x00100
    	WRITE              = 0x20006
    )
    
    // Key is a handle to an open Windows registry key.
    // Keys can be obtained by calling OpenKey; there are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/runtime/netpoll_aix.go

    }
    
    // pollfd represents the poll structure for AIX operating system.
    type pollfd struct {
    	fd      int32
    	events  int16
    	revents int16
    }
    
    const _POLLIN = 0x0001
    const _POLLOUT = 0x0002
    const _POLLHUP = 0x2000
    const _POLLERR = 0x4000
    
    var (
    	pfds           []pollfd
    	pds            []*pollDesc
    	mtxpoll        mutex
    	mtxset         mutex
    	rdwake         int32
    	wrwake         int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	0x0087, 0x0086, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0000,
    	0x00ef, 0x0000, 0x00f1, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f2,
    	0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f1, 0x00f2, 0x00f1, 0x00f1,
    	// Entry 100 - 13F
    	0x00f2, 0x00f2, 0x00f1, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f1,
    	0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x0000, 0x010e,
    	0x0000, 0x0110, 0x0000, 0x0112, 0x0000, 0x0114, 0x0114, 0x0000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/crypto/internal/hpke/hpke.go

    var SupportedAEADs = map[uint16]struct {
    	keySize   int
    	nonceSize int
    	aead      func([]byte) (cipher.AEAD, error)
    }{
    	// RFC 9180, Section 7.3
    	0x0001: {keySize: 16, nonceSize: 12, aead: aesGCMNew},
    	0x0002: {keySize: 32, nonceSize: 12, aead: aesGCMNew},
    	0x0003: {keySize: chacha20poly1305.KeySize, nonceSize: chacha20poly1305.NonceSize, aead: chacha20poly1305.New},
    }
    
    var SupportedKDFs = map[uint16]func() *hkdfKDF{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top