Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Advance (0.4 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			q = append([]AST{qual}, q...)
    			st.advance(1)
    		} else if len(st.str) > 1 && st.str[0] == 'D' {
    			var qual AST
    			switch st.str[1] {
    			case 'x':
    				qual = &Qualifier{Name: "transaction_safe"}
    				st.advance(2)
    			case 'o':
    				qual = &Qualifier{Name: "noexcept"}
    				st.advance(2)
    			case 'O':
    				st.advance(2)
    				expr := st.expression()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	1<<_Switch |
    	1<<_Type |
    	1<<_Var
    
    // advance consumes tokens until it finds a token of the stopset or followlist.
    // The stopset is only considered if we are inside a function (p.fnest > 0).
    // The followlist is the list of valid tokens that can follow a production;
    // if it is empty, exactly one (non-EOF) token is consumed to ensure progress.
    func (p *parser) advance(followlist ...token) {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	"internal/trace/version"
    )
    
    // ordering emulates Go scheduler state for both validation and
    // for putting events in the right order.
    //
    // The interface to ordering consists of two methods: Advance
    // and Next. Advance is called to try and advance an event and
    // add completed events to the ordering. Next is used to pick
    // off events in the ordering.
    type ordering struct {
    	gStates     map[GoID]*gState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	mbits = markBitsForAddr(base)
    	if mbits.mask != 1 {
    		throw("markBitsForSpan: unaligned start")
    	}
    	return mbits
    }
    
    // advance advances the markBits to the next object in the span.
    func (m *markBits) advance() {
    	if m.mask == 1<<7 {
    		m.bytep = (*uint8)(unsafe.Pointer(uintptr(unsafe.Pointer(m.bytep)) + 1))
    		m.mask = 1
    	} else {
    		m.mask = m.mask << 1
    	}
    	m.index++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

        @CheckForNull WriteThroughEntry lastReturned;
    
        HashIterator() {
          nextSegmentIndex = segments.length - 1;
          nextTableIndex = -1;
          advance();
        }
    
        @Override
        public abstract T next();
    
        final void advance() {
          nextExternal = null;
    
          if (nextInChain()) {
            return;
          }
    
          if (nextInTable()) {
            return;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        @CheckForNull WriteThroughEntry lastReturned;
    
        HashIterator() {
          nextSegmentIndex = segments.length - 1;
          nextTableIndex = -1;
          advance();
        }
    
        @Override
        public abstract T next();
    
        final void advance() {
          nextExternal = null;
    
          if (nextInChain()) {
            return;
          }
    
          if (nextInTable()) {
            return;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        ): Boolean {
            /**
             * Avoid shortening reference to enum companion used in enum entry initialization there is no guarantee that the companion object
             * was initialized in advance.
             * For example, When we shorten the following code:
             *     enum class C(val i: Int) {
             *         ONE(<expr>C.K</expr>)  // shorten C.K to K
             *         ;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                   "$0.cast<DenseElementsAttr>().getValues<bool>().end(), "
                   "[](bool v){ return v == " #val# ";}))">>;
    
    // Remove select operators when the result is known in advance.
    foreach SelectOp = [TFL_SelectOp, TFL_SelectV2Op] in {
      // select(true_tensor, A, B) -> A
      def Optimize#SelectOp#True : Pat<
        (SelectOp:$result (Arith_ConstantOp $constant),
                          $input1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 304 {
    		t.Fatalf("Code after If-Modified-Since request = %v; want 304", res.StatusCode)
    	}
    	res.Body.Close()
    
    	// Advance the index.html file's modtime, but not the directory's.
    	indexFile.modtime = indexFile.modtime.Add(1 * time.Hour)
    
    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 200 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	// packetsSent counts packets.
    	bytesSent   int64
    	packetsSent int64
    
    	// retryCount counts the number of consecutive non-advancing records
    	// received by Conn.readRecord. That is, records that neither advance the
    	// handshake, nor deliver application data. Protected by in.Mutex.
    	retryCount int
    
    	// activeCall indicates whether Close has been call in the low bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top