Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Sequence (0.96 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <ol>
    <li>
    <i>Line comments</i> start with the character sequence <code>//</code>
    and stop at the end of the line.
    </li>
    <li>
    <i>General comments</i> start with the character sequence <code>/*</code>
    and stop with the first subsequent character sequence <code>*/</code>.
    </li>
    </ol>
    
    <p>
    A comment cannot start inside a <a href="#Rune_literals">rune</a> or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	}
    	return int(-pc & (alignedValue - 1))
    }
    
    // size returns the size of the sequence of machine instructions when p is encoded with o.
    // Usually it just returns o.size directly, in some cases it checks whether the optimization
    // conditions are met, and if so returns the size of the optimized instruction sequence.
    // These optimizations need to be synchronized with the asmout function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    To run all benchmarks, use '-bench .' or '-bench=.'.
    //	    The regular expression is split by unbracketed slash (/)
    //	    characters into a sequence of regular expressions, and each
    //	    part of a benchmark's identifier must match the corresponding
    //	    element in the sequence, if any. Possible parents of matches
    //	    are run with b.N=1 to identify sub-benchmarks. For example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    // a more efficient sequence of instructions if a prefixed version exists (ex. paddi instead of oris/ori/add).
    //
    // This table is meant to transform all sequences which might be TOC-relative into an equivalent PC-relative
    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    // separated and applied to AIX and other non-ELF targets. Likewise, the prefixed forms do not have encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    func (s *ImportStack) Top() string {
    	if len(*s) == 0 {
    		return ""
    	}
    	return (*s)[len(*s)-1]
    }
    
    // shorterThan reports whether sp is shorter than t.
    // We use this to record the shortest import sequence
    // that leads to a particular package.
    func (sp *ImportStack) shorterThan(t []string) bool {
    	s := *sp
    	if len(s) != len(t) {
    		return len(s) < len(t)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		c.cursym.Size += funcAlign - (c.cursym.Size % funcAlign)
    	}
    	c.cursym.Grow(c.cursym.Size)
    	copy(c.cursym.P, buffer)
    
    	// Mark nonpreemptible instruction sequences.
    	// We use REGTMP as a scratch register during call injection,
    	// so instruction sequences that use REGTMP are unsafe to
    	// preempt asynchronously.
    	obj.MarkUnsafePoints(c.ctxt, c.cursym.Func().Text, c.newprog, c.isUnsafePoint, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    		for i := 0; i < len(s.R); i++ {
    			r := &s.R[i]
    			fmt.Printf(" rel %#.4x/%d %s%+d\n", uint32(r.Off), r.Siz, r.Sym.Name, r.Add)
    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// The 2-instruction TLS access sequence
    	//	MOVQ TLS, BX
    	//	MOVQ 0(BX)(TLS*1), BX
    	// is not async preemptible, as if it is preempted and resumed on
    	// a different thread, the TLS address may become invalid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

              // Single node on list
              if (next == null) {
                newTable.set(headIndex, head);
              } else {
                // Reuse the consecutive sequence of nodes with the same target
                // index from the end of the list. tail points to the first
                // entry in the reusable list.
                ReferenceEntry<K, V> tail = head;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

              // Single node on list
              if (next == null) {
                newTable.set(headIndex, head);
              } else {
                // Reuse the consecutive sequence of nodes with the same target
                // index from the end of the list. tail points to the first
                // entry in the reusable list.
                ReferenceEntry<K, V> tail = head;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top