Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for positioner (0.12 sec)

  1. src/go/types/expr.go

    		return
    	}
    
    	if !Identical(x.typ, y.typ) {
    		// only report an error if we have valid types
    		// (otherwise we had an error reported elsewhere already)
    		if isValid(x.typ) && isValid(y.typ) {
    			var posn positioner = x
    			if e != nil {
    				posn = e
    			}
    			if e != nil {
    				check.errorf(posn, MismatchedTypes, invalidOp+"%s (mismatched types %s and %s)", e, x.typ, y.typ)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// By scanning backward, we can keep track of whether the current
    	// position is type-S or type-L according to the usual definition:
    	//
    	//	- position len(text) is type S with text[len(text)] == -1 (the sentinel)
    	//	- position i is type S if text[i] < text[i+1], or if text[i] == text[i+1] && i+1 is type S.
    	//	- position i is type L if text[i] > text[i+1], or if text[i] == text[i+1] && i+1 is type L.
    	//
    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. src/go/parser/parser.go

    	token.RBRACE:    true,
    }
    
    // safePos returns a valid file position for a given position: If pos
    // is valid to begin with, safePos returns pos. If pos is out-of-range,
    // safePos returns the EOF position.
    //
    // This is hack to work around "artificial" end positions in the AST which
    // are computed by adding 1 to (presumably valid) token positions. If the
    // token positions are invalid due to parse errors, the resulting end position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

          }
        };
      }
    
      /**
       * Advances {@code iterator} {@code position + 1} times, returning the element at the {@code
       * position}th position.
       *
       * @param position position of the element to return
       * @return the element at the specified position in {@code iterator}
       * @throws IndexOutOfBoundsException if {@code position} is negative or greater than or equal to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

          }
        };
      }
    
      /**
       * Advances {@code iterator} {@code position + 1} times, returning the element at the {@code
       * position}th position.
       *
       * @param position position of the element to return
       * @return the element at the specified position in {@code iterator}
       * @throws IndexOutOfBoundsException if {@code position} is negative or greater than or equal to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	padding: 0.2em 0.5em;
    	vertical-align: middle;
    	position: relative;
    	top: -0.1em;
    	white-space: nowrap;
    }
    
    .keyseq kbd:first-child {
    	margin-left: 0;
    }
    
    .keyseq kbd:last-child {
    	margin-right: 0;
    }
    
    .menuseq,
    .menu {
    	color: var(--num-color);
    }
    
    b.button:before,
    b.button:after {
    	position: relative;
    	top: -1px;
    	font-weight: normal;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Preconditions.java

       * Ensures that {@code start} and {@code end} specify valid <i>positions</i> in an array, list or
       * string of size {@code size}, and are in order. A position index may range from zero to {@code
       * size}, inclusive.
       *
       * @param start a user-supplied index identifying a starting position in an array, list or string
       * @param end a user-supplied index identifying an ending position in an array, list or string
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    		p.print(blank) // always use blank
    	}
    	p.block(b, 1)
    }
    
    // distanceFrom returns the column difference between p.out (the current output
    // position) and startOutCol. If the start position is on a different line from
    // the current position (or either is unknown), the result is infinity.
    func (p *printer) distanceFrom(startPos token.Pos, startOutCol int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	var firstFile, firstCommentFile string
    	embedPos := make(map[string][]token.Position)
    	testEmbedPos := make(map[string][]token.Position)
    	xTestEmbedPos := make(map[string][]token.Position)
    	importPos := make(map[string][]token.Position)
    	testImportPos := make(map[string][]token.Position)
    	xTestImportPos := make(map[string][]token.Position)
    	allTags := make(map[string]bool)
    	fset := token.NewFileSet()
    	for _, d := range dirs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/javadoc.css

        border: none;
        border-radius: 3px;
        position: relative;
        background:none;
        transition: opacity 0.3s;
        cursor: pointer;
    }
    :hover > button.copy {
        opacity: 80%;
    }
    button.copy:hover,
    button.copy:active,
    button.copy:focus-visible,
    button.copy.visible {
        opacity: 100%;
    }
    button.copy img {
        position: relative;
        background: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
Back to top