Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for 0x4000 (0.18 sec)

  1. src/testing/match.go

    		}
    	}
    	return string(b)
    }
    
    func isSpace(r rune) bool {
    	if r < 0x2000 {
    		switch r {
    		// Note: not the same as Unicode Z class.
    		case '\t', '\n', '\v', '\f', '\r', ' ', 0x85, 0xA0, 0x1680:
    			return true
    		}
    	} else {
    		if r <= 0x200a {
    			return true
    		}
    		switch r {
    		case 0x2028, 0x2029, 0x202f, 0x205f, 0x3000:
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/defs_linux.go

    package syscall
    
    const (
    	EPOLLIN       = 0x1
    	EPOLLOUT      = 0x4
    	EPOLLERR      = 0x8
    	EPOLLHUP      = 0x10
    	EPOLLRDHUP    = 0x2000
    	EPOLLET       = 0x80000000
    	EPOLL_CLOEXEC = 0x80000
    	EPOLL_CTL_ADD = 0x1
    	EPOLL_CTL_DEL = 0x2
    	EPOLL_CTL_MOD = 0x3
    	EFD_CLOEXEC   = 0x80000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 437 bytes
    - Viewed (0)
  3. src/internal/syscall/unix/at_solaris.go

    //go:cgo_import_dynamic libc_openat openat "libc.so"
    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.so"
    //go:cgo_import_dynamic libc_uname uname "libc.so"
    
    const (
    	AT_REMOVEDIR        = 0x1
    	AT_SYMLINK_NOFOLLOW = 0x1000
    
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 814 bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/OptimizerSlotVariableModule/variables/variables.data-00000-of-00001

    Katherine Wu <******@****.***> 1665621632 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 00:45:05 UTC 2022
    - 810 bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_freebsd.c

    #include <machine/sysarch.h>
    #include <pthread.h>
    #include <signal.h>
    #include <string.h>
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    #ifdef ARM_TP_ADDRESS
    // ARM_TP_ADDRESS is (ARM_VECTORS_HIGH + 0x1000) or 0xffff1000
    // and is known to runtime.read_tls_fallback. Verify it with
    // cpp.
    #if ARM_TP_ADDRESS != 0xffff1000
    #error Wrong ARM_TP_ADDRESS!
    #endif
    #endif
    
    static void* threadentry(void*);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:40:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/div_test.c

    		}
    		if(n == 0)
    			break;
    	}
    	if(rp)
    		*rp = x;
    	return q;
    }
    
    u32 tests[] = {
    	0,
    	1,
    	2,
    	3,
    	4,
    	5,
    	6,
    	7,
    	8,
    	9,
    	10,
    	11,
    	31,
    	0xFFF,
    	0x1000,
    	0x1001,
    	0xF0F0F0,
    	0xFFFFFF,
    	0x1000000,
    	0xF0F0F0F0,
    	0xFFFFFFFF,
    };
    
    int
    main(void)
    {
    	for(int i=0; i<nelem(tests); i++)
    	for(int j=0; j<nelem(tests); j++) {
    		u32 n = tests[i];
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/literals.go

    	assert(0X.deadcafep4 == 1.0*0xdeadcafe/0x10000000)
    	assert(0x.1234P+12 == 1.0*0x1234/0x10)
    
    	assert(0x0p0 == 0.)
    	assert(0Xdeadcafep+1 == 0x1bd5b95fc)
    	assert(0x1234P-10 == 0x1234/1024.0)
    
    	assert(0x0.0p0 == 0.)
    	assert(0Xdead.cafep+1 == 1.0*0x1bd5b95fc/0x10000)
    	assert(0x12.34P-10 == 1.0*0x1234/0x40000)
    
    	assert(0Xdead_cafep+1 == 0xdeadcafep+1)
    	assert(0x_1234P-10 == 0x1234p-10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.data-00000-of-00001

    Adam Cogdell <******@****.***> 1684357973 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 120 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    }
    
    const (
    	AT_FDCWD            = -0x64
    	AT_EACCESS          = 0x100
    	AT_SYMLINK_NOFOLLOW = 0x200
    	AT_SYMLINK_FOLLOW   = 0x400
    	AT_REMOVEDIR        = 0x800
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR      = 0x8
    	POLLHUP      = 0x10
    	POLLIN       = 0x1
    	POLLINIGNEOF = 0x2000
    	POLLNVAL     = 0x20
    	POLLOUT      = 0x4
    	POLLPRI      = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    }
    
    const (
    	AT_FDCWD            = -0x64
    	AT_EACCESS          = 0x100
    	AT_SYMLINK_NOFOLLOW = 0x200
    	AT_SYMLINK_FOLLOW   = 0x400
    	AT_REMOVEDIR        = 0x800
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR      = 0x8
    	POLLHUP      = 0x10
    	POLLIN       = 0x1
    	POLLINIGNEOF = 0x2000
    	POLLNVAL     = 0x20
    	POLLOUT      = 0x4
    	POLLPRI      = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top