Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Namelen (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top