Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dlen (0.3 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	)
    	if podVolumes != nil {
    		bindings = podVolumes.StaticBindings
    		provisionedClaims = podVolumes.DynamicProvisions
    	}
    	if aLen, eLen := len(bindings), len(expectedBindings); aLen != eLen {
    		t.Errorf("expected %v bindings, got %v", eLen, aLen)
    	} else if expectedBindings == nil && bindings != nil {
    		// nil and empty are different
    		t.Error("expected nil bindings, got empty")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	sa.raw.Scope_id = sa.ZoneId
    	for i := 0; i < len(sa.Addr); i++ {
    		sa.raw.Addr[i] = sa.Addr[i]
    	}
    	return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
    }
    
    func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	name := sa.Name
    	n := len(name)
    	if n >= len(sa.raw.Path) || n == 0 {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL
    	sa.raw.Family = AF_UNIX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	hostobjs(ctxt)
    	hostlinksetup(ctxt)
    
    	if ctxt.LinkMode == LinkInternal && len(hostobj) != 0 {
    		// If we have any undefined symbols in external
    		// objects, try to read them from the libgcc file.
    		any := false
    		undefs, froms := ctxt.loader.UndefinedRelocTargets(1)
    		if len(undefs) > 0 {
    			any = true
    			if ctxt.Debugvlog > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top