Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for setlkw (0.14 sec)

  1. src/cmd/internal/obj/x86/anames.go

    	"SARXQ",
    	"SBBB",
    	"SBBL",
    	"SBBQ",
    	"SBBW",
    	"SCASB",
    	"SCASL",
    	"SCASQ",
    	"SCASW",
    	"SETCC",
    	"SETCS",
    	"SETEQ",
    	"SETGE",
    	"SETGT",
    	"SETHI",
    	"SETLE",
    	"SETLS",
    	"SETLT",
    	"SETMI",
    	"SETNE",
    	"SETOC",
    	"SETOS",
    	"SETPC",
    	"SETPL",
    	"SETPS",
    	"SFENCE",
    	"SGDT",
    	"SHA1MSG1",
    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_solaris.go

    	msg.Namelen = uint32(SizeofSockaddrAny)
    	var iov Iovec
    	if len(p) > 0 {
    		iov.Base = (*int8)(unsafe.Pointer(&p[0]))
    		iov.SetLen(len(p))
    	}
    	var dummy int8
    	if len(oob) > 0 {
    		// receive at least one normal byte
    		if len(p) == 0 {
    			iov.Base = &dummy
    			iov.SetLen(1)
    		}
    		msg.Accrights = (*int8)(unsafe.Pointer(&oob[0]))
    		msg.Accrightslen = int32(len(oob))
    	}
    	msg.Iov = &iov
    	msg.Iovlen = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                    if (StringUtil.isNotBlank(url) && (url.startsWith("http://") || url.startsWith("https://"))) {
                        final SitemapUrl sitemapUrl = new SitemapUrl();
                        sitemapUrl.setLoc(url);
                        sitemapSet.addSitemap(sitemapUrl);
                    }
                }
                return sitemapSet;
            } catch (final Exception e) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_aix.go

    }
    
    func (sa *RawSockaddrUnix) setLen(n int) {
    	sa.Len = uint8(3 + n) // 2 for Family, Len; 1 for NUL.
    }
    
    func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	name := sa.Name
    	n := len(name)
    	if n > len(sa.raw.Path) {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_UNIX
    	sa.raw.setLen(n)
    	for i := 0; i < n; i++ {
    		sa.raw.Path[i] = uint8(name[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/scanner.go

    func (s *scanner) errorAtf(offset int, format string, args ...interface{}) {
    	s.errh(s.line, s.col+uint(offset), fmt.Sprintf(format, args...))
    }
    
    // setLit sets the scanner state for a recognized _Literal token.
    func (s *scanner) setLit(kind LitKind, ok bool) {
    	s.nlsemi = true
    	s.tok = _Literal
    	s.lit = string(s.segment())
    	s.bad = !ok
    	s.kind = kind
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    	msg.Namelen = uint32(SizeofSockaddrAny)
    	var dummy byte
    	if len(oob) > 0 {
    		// receive at least one normal byte
    		if emptyIovecs(iov) {
    			var iova [1]Iovec
    			iova[0].Base = &dummy
    			iova[0].SetLen(1)
    			iov = iova[:]
    		}
    		msg.Control = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/syscall/syscall_bsd.go

    	msg.Namelen = uint32(SizeofSockaddrAny)
    	var iov Iovec
    	if len(p) > 0 {
    		iov.Base = &p[0]
    		iov.SetLen(len(p))
    	}
    	var dummy byte
    	if len(oob) > 0 {
    		// receive at least one normal byte
    		if len(p) == 0 {
    			iov.Base = &dummy
    			iov.SetLen(1)
    		}
    		msg.Control = &oob[0]
    		msg.SetControllen(len(oob))
    	}
    	msg.Iov = &iov
    	msg.Iovlen = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_386.s

    #define USEABLE 0x40
    
    // `-1` means the kernel will pick a TLS entry on the first setldt call,
    // which happens during runtime init, and that we'll store back the saved
    // entry and reuse that on subsequent calls when creating new threads.
    DATA  runtimeĀ·tls_entry_number+0(SB)/4, $-1
    GLOBL runtimeĀ·tls_entry_number(SB), NOPTR, $4
    
    // setldt(int entry, int address, int limit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {
    	var iov [1]Iovec
    	if len(p) > 0 {
    		iov[0].Base = &p[0]
    		iov[0].SetLen(len(p))
    	}
    	var rsa RawSockaddrAny
    	n, oobn, recvflags, err = recvmsgRaw(fd, iov[:], oob, flags, &rsa)
    	// source address is only specified if the socket is unconnected
    	if rsa.Addr.Family != AF_UNSPEC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. cmd/format-erasure.go

    		panic(err)
    	}
    	return &dst
    }
    
    // Returns formatErasure.Erasure.Version
    func newFormatErasureV3(numSets int, setLen int) *formatErasureV3 {
    	format := &formatErasureV3{}
    	format.Version = formatMetaVersionV1
    	format.Format = formatBackendErasure
    	if setLen == 1 {
    		format.Format = formatBackendErasureSingle
    	}
    	format.ID = mustGetUUID()
    	format.Erasure.Version = formatErasureVersionV3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top