Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for msgsys (0.11 sec)

  1. pkg/kubelet/kubelet_pods.go

    	clusterDomain := kl.dnsConfigurer.ClusterDomain
    
    	hostname := pod.Name
    	if len(pod.Spec.Hostname) > 0 {
    		if msgs := utilvalidation.IsDNS1123Label(pod.Spec.Hostname); len(msgs) != 0 {
    			return "", "", fmt.Errorf("pod Hostname %q is not a valid DNS label: %s", pod.Spec.Hostname, strings.Join(msgs, ";"))
    		}
    		hostname = pod.Spec.Hostname
    	}
    
    	hostname, err := truncatePodHostnameIfNeeded(pod.Name, hostname)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	if len(errMap) == 0 {
    		return nil
    	}
    
    	var success int
    	msgs := []string{}
    	for d, err := range errMap {
    		name := c.state.Peers[d].Name
    		if err == nil {
    			msgs = append(msgs, fmt.Sprintf("'%s' on site %s (%s): succeeded", actionName, name, d))
    			success++
    		} else {
    			msgs = append(msgs, fmt.Sprintf("'%s' on site %s (%s): failed(%v)", actionName, name, d, err))
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	allgadd(gp)
    
    	// gp is now on the allg list, but we don't want it to be
    	// counted by gcount. It would be more "proper" to increment
    	// sched.ngfree, but that requires locking. Incrementing ngsys
    	// has the same effect.
    	sched.ngsys.Add(1)
    
    	// Add m to the extra list.
    	addExtraM(mp)
    }
    
    // dropm puts the current m back onto the extra list.
    //
    // 1. On systems without pthreads, like Windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	MSG_OOB                                     = 0x1
    	MSG_PEEK                                    = 0x2
    	MSG_PROXY                                   = 0x10
    	MSG_RST                                     = 0x1000
    	MSG_SYN                                     = 0x400
    	MSG_TRUNC                                   = 0x20
    	MSG_TRYHARD                                 = 0x4
    	MSG_WAITALL                                 = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func FormatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid uint32, buf []uint16, args *byte) (n uint32, err error) {
    	var _p0 *uint16
    	if len(buf) > 0 {
    		_p0 = &buf[0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top