Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 93 of 93 for corerest (0.64 sec)

  1. cmd/kubeadm/app/util/version.go

    	// kubeReleaseLabelRegex matches labels such as: latest, latest-1, latest-1.10
    	if kubeReleaseLabelRegex.MatchString(versionLabel) {
    		// Try to obtain a client version.
    		// pkgversion.Get().String() should always return a correct version added by the golang
    		// linker and the build system. The version can still be missing when doing unit tests
    		// on individual packages.
    		clientVersion, clientVersionErr := kubeadmVersion(pkgversion.Get().String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. internal/grid/muxserver.go

    				gridLogIf(m.ctx, fmt.Errorf("canceling remote connection %s not seen for %v", m.parent, last))
    				m.close()
    				return
    			}
    		}
    	}
    }
    
    // checkSeq will check if sequence number is correct and increment it by 1.
    func (m *muxServer) checkSeq(seq uint32) (ok bool) {
    	if seq != m.RecvSeq {
    		if debugPrint {
    			fmt.Printf("expected sequence %d, got %d\n", m.RecvSeq, seq)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray.go

    			if len(result) == n {
    				break
    			}
    			m := r.FindIndex(x.data[i:]) // anchored search - will not run off
    			// ignore indices leading to overlapping matches
    			if m != nil && prev <= i {
    				m[0] = i // correct m
    				m[1] += i
    				result = append(result, m)
    				prev = m[1]
    			}
    		}
    		if len(result) >= n || len(indices) != n1 {
    			// found all matches or there's no chance to find more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top