Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 324 for startm (0.27 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/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)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	}
    
    	// Step 5: start ephemeral containers
    	// These are started "prior" to init containers to allow running ephemeral containers even when there
    	// are errors starting an init container. In practice init containers will start first since ephemeral
    	// containers cannot be specified on pod creation.
    	for _, idx := range podContainerChanges.EphemeralContainersToStart {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	section section
    
    	// header keeps track of what should go in the header when Finish is
    	// called.
    	header header
    
    	// start is the starting index of the bytes allocated in msg for header.
    	start int
    
    	// compression is a mapping from name suffixes to their starting index
    	// in msg.
    	compression map[string]uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    		oldSched = append(oldSched[:0], b.Values[nphi:]...)
    		b.Values = b.Values[:0]
    
    		// Initialize start state of block.
    		if b == f.Entry {
    			// Regalloc state is empty to start.
    			if nphi > 0 {
    				f.Fatalf("phis in entry block")
    			}
    		} else if len(b.Preds) == 1 {
    			// Start regalloc state with the end state of the previous block.
    			s.setState(s.endRegs[b.Preds[0].b.ID])
    			if nphi > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

         * `input` does not have a scheme that starts at `pos`.
         */
        private fun schemeDelimiterOffset(
          input: String,
          pos: Int,
          limit: Int,
        ): Int {
          if (limit - pos < 2) return -1
    
          val c0 = input[pos]
          if ((c0 < 'a' || c0 > 'z') && (c0 < 'A' || c0 > 'Z')) return -1 // Not a scheme start char.
    
          characters@ for (i in pos + 1 until limit) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    	Lnimpid  int32  // Number of import file IDs
    	Lstlen   uint32 // Length of string table
    	Limpoff  uint64 // Offset to start of import file IDs
    	Lstoff   uint64 // Offset to start of string table
    	Lsymoff  uint64 // Offset to start of symbol table
    	Lrldoff  uint64 // Offset to start of relocation entries
    }
    
    // Loader Symbol
    type XcoffLdSym64 struct {
    	Lvalue  uint64 // Address field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    //
    // For larger objects, if t is the type for the object starting at "start",
    // within some span whose mspan is s, then the bitmap at t.GCData is "tiled"
    // from "start" through "start+s.elemsize".
    // Specifically, the first bit of t.GCData corresponds to the word at "start",
    // the second to the word after "start", and so on up to t.PtrBytes. At t.PtrBytes,
    // we skip to "start+t.Size_" and begin again from there. This process is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

      echo
      echo "No kubelet was started because you set START_MODE=nokubelet"
      echo "Run this script again with START_MODE=kubeletonly to run a kubelet"
    fi
    
    if [[ "${START_MODE}" != "kubeletonly" ]]; then
      echo
      if [[ "${ENABLE_DAEMON}" = false ]]; then
        echo "To start using your cluster, you can open up another terminal/tab and run:"
      else
        echo "To start using your cluster, run:"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. 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)
Back to top