Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for minval (0.14 sec)

  1. src/runtime/mfinal.go

    Anuraag Agrawal <******@****.***> 1717647866 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

            # The purpose of the benchmark library is to support building an aot
            # binary with minimal dependencies, to demonstrate small binary sizes.
            #
            # KEEP THE DEPENDENCIES MINIMAL.
            "//tensorflow/core:framework_lite",
        ],
    )
    
    cc_library(
        name = "benchmark_extra_android",
        tags = [
            "manual",
        ],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/net/unixsock.go

    func (c *UnixConn) SyscallConn() (syscall.RawConn, error) {
    	if !c.ok() {
    		return nil, syscall.EINVAL
    	}
    	return newRawConn(c.fd), nil
    }
    
    // CloseRead shuts down the reading side of the Unix domain connection.
    // Most callers should just use Close.
    func (c *UnixConn) CloseRead() error {
    	if !c.ok() {
    		return syscall.EINVAL
    	}
    	if err := c.fd.closeRead(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/net/tcpsock.go

    func (c *TCPConn) SyscallConn() (syscall.RawConn, error) {
    	if !c.ok() {
    		return nil, syscall.EINVAL
    	}
    	return newRawConn(c.fd), nil
    }
    
    // ReadFrom implements the [io.ReaderFrom] ReadFrom method.
    func (c *TCPConn) ReadFrom(r io.Reader) (int64, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.readFrom(r)
    	if err != nil && err != io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/net/net_fake.go

    		return os.NewSyscallError("setReadBuffer", syscall.EINVAL)
    	}
    	ffd.queue.setReadBuffer(bytes)
    	return nil
    }
    
    func (ffd *fakeNetFD) setWriteBuffer(bytes int) error {
    	return os.NewSyscallError("setWriteBuffer", syscall.ENOTSUP)
    }
    
    func (ffd *fakeNetFD) setLinger(sec int) error {
    	if sec < 0 || ffd.peer == nil {
    		return os.NewSyscallError("setLinger", syscall.EINVAL)
    	}
    	ffd.peer.queue.setLinger(sec > 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/go/constant/value.go

    func (ratVal) implementsValue()     {}
    func (intVal) implementsValue()     {}
    func (floatVal) implementsValue()   {}
    func (complexVal) implementsValue() {}
    
    func newInt() *big.Int     { return new(big.Int) }
    func newRat() *big.Rat     { return new(big.Rat) }
    func newFloat() *big.Float { return new(big.Float).SetPrec(prec) }
    
    func i64toi(x int64Val) intVal   { return intVal{newInt().SetInt64(int64(x))} }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. src/net/udpsock.go

    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.writeToAddrPort(b, addr)
    	if err != nil {
    		err = &OpError{Op: "write", Net: c.fd.net, Source: c.fd.laddr, Addr: addrPortUDPAddr{addr}, Err: err}
    	}
    	return n, err
    }
    
    // WriteTo implements the PacketConn WriteTo method.
    func (c *UDPConn) WriteTo(b []byte, addr Addr) (int, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	a, ok := addr.(*UDPAddr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/syscall/syscall_bsd.go

    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL
    	sa.raw.Family = AF_UNIX
    	for i := 0; i < n; i++ {
    		sa.raw.Path[i] = int8(name[i])
    	}
    	return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
    }
    
    func (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	if sa.Index == 0 {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = sa.Len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL
    	sa.raw.Family = AF_UNIX
    	for i := 0; i < n; i++ {
    		sa.raw.Path[i] = int8(name[i])
    	}
    	return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
    }
    
    func (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	if sa.Index == 0 {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = sa.Len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. src/syscall/fs_wasip1.go

    func Stat(path string, st *Stat_t) error {
    	if path == "" {
    		return EINVAL
    	}
    	dirFd, pathPtr, pathLen := preparePath(path)
    	errno := path_filestat_get(dirFd, LOOKUP_SYMLINK_FOLLOW, pathPtr, pathLen, unsafe.Pointer(st))
    	setDefaultMode(st)
    	return errnoErr(errno)
    }
    
    func Lstat(path string, st *Stat_t) error {
    	if path == "" {
    		return EINVAL
    	}
    	dirFd, pathPtr, pathLen := preparePath(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top