Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for bstart (0.11 sec)

  1. src/regexp/syntax/parse.go

    		// sub[i] is not a char or char class;
    		// emit char class for sub[start:i]...
    		if i == start {
    			// Nothing to do - run of length 0.
    		} else if i == start+1 {
    			out = append(out, sub[start])
    		} else {
    			// Make new char class.
    			// Start with most complex regexp in sub[start].
    			max := start
    			for j := start + 1; j < i; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    		}
    	}
    
    	// We recorded the LMS-substring starts but really want the ends.
    	// Luckily, with two differences, the start indexes and the end indexes are the same.
    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    	// so the caller must pretend that sa[-1] == len(text), as noted above.
    	// The second difference is that the first leftmost LMS-substring start index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    $LOGGINGEXPORTER_HASH = 'c808c9645d84b06b89932bd707d51a9d1d0b451b5a702a5f9b2b4462c8be6502'
    
    # Restart Logging agent or starts it if it is not currently running
    function Restart-LoggingAgent {
      if (IsStackdriverAgentInstalled) {
          Restart-StackdriverAgent
          return
      }
    
       Restart-LogService $LOGGINGEXPORTER_SERVICE $LOGGINGEXPORTER_CMDLINE
       Restart-LogService $LOGGINGAGENT_SERVICE $LOGGINGAGENT_CMDLINE
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	if s.scavenge == nil {
    		s.scavenge = func(n uintptr) (uintptr, int64) {
    			start := nanotime()
    			r := mheap_.pages.scavenge(n, nil, false)
    			end := nanotime()
    			if start >= end {
    				return r, 0
    			}
    			scavenge.backgroundTime.Add(end - start)
    			return r, end - start
    		}
    	}
    	if s.shouldStop == nil {
    		s.shouldStop = func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		var message string
    		var reason containerKillReason
    		restart := shouldRestartOnFailure(pod)
    		if _, _, changed := containerChanged(&container, containerStatus); changed {
    			message = fmt.Sprintf("Container %s definition changed", container.Name)
    			// Restart regardless of the restart policy because the container
    			// spec changed.
    			restart = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	off             int
    	index           int
    	resHeaderValid  bool
    	resHeaderOffset int
    	resHeaderType   Type
    	resHeaderLength uint16
    }
    
    // Start parses the header and enables the parsing of Questions.
    func (p *Parser) Start(msg []byte) (Header, error) {
    	if p.msg != nil {
    		*p = Parser{}
    	}
    	p.msg = msg
    	var err error
    	if p.off, err = p.header.unpack(msg, 0); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    		if start := update.Options.StartTime; !start.IsZero() {
    			metrics.PodWorkerDuration.WithLabelValues("terminated").Observe(metrics.SinceInSeconds(start))
    		}
    		klog.V(4).InfoS("Pod cannot start ever", "pod", klog.KObj(update.Options.Pod), "podUID", podUID, "updateType", update.WorkType)
    		return ctx, update, canStart, canEverStart, true
    	case !canStart:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

       *     sequence.length()}
       */
      public int indexIn(CharSequence sequence, int start) {
        int length = sequence.length();
        checkPositionIndex(start, length);
        for (int i = start; i < length; i++) {
          if (matches(sequence.charAt(i))) {
            return i;
          }
        }
        return -1;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

       *     sequence.length()}
       */
      public int indexIn(CharSequence sequence, int start) {
        int length = sequence.length();
        checkPositionIndex(start, length);
        for (int i = start; i < length; i++) {
          if (matches(sequence.charAt(i))) {
            return i;
          }
        }
        return -1;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    		// while the original form keeps ind then nxt and end alive
    		start, end := v.min, v.max
    		if v.flags&indVarCountDown != 0 {
    			start, end = end, start
    		}
    
    		if !(start.Op == OpConst8 || start.Op == OpConst16 || start.Op == OpConst32 || start.Op == OpConst64) {
    			// if start is not a constant we would be winning nothing from inverting the loop
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top