Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 426 for Positions (0.17 sec)

  1. src/go/types/issues_test.go

    	}
    
    	var facts []string
    	for id, obj := range defs {
    		if obj != nil {
    			fact := fmt.Sprintf("L%d defs %s", fset.Position(id.Pos()).Line, obj)
    			facts = append(facts, fact)
    		}
    	}
    	for id, obj := range uses {
    		fact := fmt.Sprintf("L%d uses %s", fset.Position(id.Pos()).Line, obj)
    		facts = append(facts, fact)
    	}
    	slices.Sort(facts)
    
    	got := strings.Join(facts, "\n")
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/decl.go

    	var x operand
    	if init != nil {
    		if inherited {
    			// The initialization expression is inherited from a previous
    			// constant declaration, and (error) positions refer to that
    			// expression and not the current constant declaration. Use
    			// the constant identifier position for any errors during
    			// init expression evaluation since that is all we have
    			// (see issues go.dev/issue/42991, go.dev/issue/42992).
    			check.errpos = obj.pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/bufio/bufio.go

    // Buffered input.
    
    // Reader implements buffering for an io.Reader object.
    type Reader struct {
    	buf          []byte
    	rd           io.Reader // reader provided by the client
    	r, w         int       // buf read and write positions
    	err          error
    	lastByte     int // last byte read for UnreadByte; -1 means invalid
    	lastRuneSize int // size of last rune read for UnreadRune; -1 means invalid
    }
    
    const minReadBufferSize = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  4. src/go/types/builtins.go

    			check.errorf(call, Test, "%v failed", call)
    			// compile-time assertion failure - safe to continue
    		}
    		// result is constant - no need to record signature
    
    	case _Trace:
    		// trace(x, y, z, ...) dumps the positions, expressions, and
    		// values of its arguments. The result of trace is the value
    		// of the first argument.
    		// Note: trace is only available in self-test mode.
    		// (no argument evaluated yet)
    		if nargs == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. src/go/types/infer.go

    // of the type parameters in tparams occurred in the type.
    // If typ is a generic function, type parameters held with typ are not changed and
    // must be updated separately if desired.
    // The positions is only used for debug traces.
    func (check *Checker) renameTParams(pos token.Pos, tparams []*TypeParam, typ Type) ([]*TypeParam, Type) {
    	// For the purpose of type inference we must differentiate type parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       * If {@code k} is the size of the returned {@code ImmutableSortedSet}, then the sorted unique
       * elements are in the first {@code k} positions of {@code contents}, and {@code contents[i] ==
       * null} for {@code k <= i < n}.
       *
       * <p>This method takes ownership of {@code contents}; do not modify {@code contents} after this
       * returns.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      RequantizeState::RequantizePosition pos = states.front().pos;
      if (pos == RequantizeState::NO_REQUANTIZE) {
        return;
      }
      for (const RequantizeState& state : states) {
        // Check that all requantization positions are the same for each state.
        // Unsure if this check is required.
        if (state.pos != pos) {
          return;
        }
      }
      if (pos == RequantizeState::ON_OUTPUT) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/core.go

    // character directionality (odd or even levels) over a line. Generating
    // identical level arrays over a line is not required. Bidi explicit format
    // codes (LRE, RLE, LRO, RLO, PDF) and BN can be assigned arbitrary levels and
    // positions as long as the rest of the input is properly reordered.
    //
    // As the algorithm is defined to operate on a single paragraph at a time, this
    // implementation is written to handle single paragraphs. Thus rule P1 is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    	var x operand
    	if init != nil {
    		if inherited {
    			// The initialization expression is inherited from a previous
    			// constant declaration, and (error) positions refer to that
    			// expression and not the current constant declaration. Use
    			// the constant identifier position for any errors during
    			// init expression evaluation since that is all we have
    			// (see issues go.dev/issue/42991, go.dev/issue/42992).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedSet.java

       * If {@code k} is the size of the returned {@code ImmutableSortedSet}, then the sorted unique
       * elements are in the first {@code k} positions of {@code contents}, and {@code contents[i] ==
       * null} for {@code k <= i < n}.
       *
       * <p>This method takes ownership of {@code contents}; do not modify {@code contents} after this
       * returns.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top