Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Namelen (0.28 sec)

  1. src/syscall/zsyscall_windows.go

    	}
    	return
    }
    
    func LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    // subkey plus a null terminating character. nameLen is its
    // length. On return, nameLen will contain the actual length of the
    // subkey.
    //
    // Should name not be large enough to hold the subkey, this function
    // will return ERROR_MORE_DATA, and must be called again with an
    // appropriately sized buffer.
    //
    // reserved must be nil. class and classLen behave like name and nameLen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	ppa1 := (entrypoint - eyecatcherOffset) + uintptr(ppaoff)
    
    	nameLen, err := safeload(ppa1 + nameLenOffset)
    	if err != 0 {
    		return 1
    	}
    
    	nameLen >>= 48
    	if nameLen > 128 {
    		return 1
    	}
    
    	// no function name input to argument end here
    	if funcName == "" {
    		return 0
    	}
    
    	var funcname [128]byte
    	for i := 0; i < int(nameLen); i += 8 {
    		v, err := safeload(ppa1 + nameOffset + uintptr(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	Getsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) [failretval==socket_error] = ws2_32.getsockopt
    //sys	bind(s Handle, name unsafe.Pointer, namelen int32) (err error) [failretval==socket_error] = ws2_32.bind
    //sys	connect(s Handle, name unsafe.Pointer, namelen int32) (err error) [failretval==socket_error] = ws2_32.connect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func recvmsgRaw(fd int, iov []Iovec, oob []byte, flags int, rsa *RawSockaddrAny) (n, oobn int, recvflags int, err error) {
    	var msg Msghdr
    	msg.Name = (*byte)(unsafe.Pointer(rsa))
    	msg.Namelen = uint32(SizeofSockaddrAny)
    	var dummy byte
    	if len(oob) > 0 {
    		if emptyIovecs(iov) {
    			var sockType int
    			sockType, err = GetsockoptInt(fd, SOL_SOCKET, SO_TYPE)
    			if err != nil {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP        = 0x23d
    	DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP      = 0x23e
    )
    
    //sys	LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountSidW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    		// *.example.org, *.hello.example.org. The *.google.com VS is missing from virtualHosts because
    		// it is not attached to a service
    		g.Expect(vhosts).To(HaveLen(2))
    		for _, vhost := range vhosts {
    			g.Expect(vhost.Services).To(HaveLen(1))
    			g.Expect(vhost.Routes).To(HaveLen(1))
    		}
    	})
    
    	t.Run("for virtualservices with with wildcard hosts outside of the serviceregistry (on port 80)", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    		t.Fatal(err)
    	}
    	si := pc.ServiceIndex
    
    	// Should have all 5 services
    	g.Expect(si.instancesByPort).To(HaveLen(5))
    	g.Expect(si.HostnameAndNamespace).To(HaveLen(5))
    
    	// Should just have "namespace"
    	g.Expect(si.exportedToNamespace).To(HaveLen(1))
    	g.Expect(serviceNames(si.exportedToNamespace["namespace"])).To(Equal([]string{"svc-namespace"}))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    // named `name`.
    TF_CAPI_EXPORT extern TF_Buffer* TF_ApiDefMapGet(TF_ApiDefMap* api_def_map,
                                                     const char* name,
                                                     size_t name_len,
                                                     TF_Status* status);
    
    // --------------------------------------------------------------------------
    // Kernel definition information.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top