Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 326 for Positions (0.34 sec)

  1. android/guava/src/com/google/common/collect/AbstractIndexedListIterator.java

       */
      protected AbstractIndexedListIterator(int size, int position) {
        checkPositionIndex(position, size);
        this.size = size;
        this.position = position;
      }
    
      @Override
      public final boolean hasNext() {
        return position < size;
      }
    
      @Override
      @ParametricNullness
      public final E next() {
        if (!hasNext()) {
          throw new NoSuchElementException();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractIndexedListIterator.java

       */
      protected AbstractIndexedListIterator(int size, int position) {
        checkPositionIndex(position, size);
        this.size = size;
        this.position = position;
      }
    
      @Override
      public final boolean hasNext() {
        return position < size;
      }
    
      @Override
      @ParametricNullness
      public final E next() {
        if (!hasNext()) {
          throw new NoSuchElementException();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/write.go

    	// place the empty string at position 0 in the string table
    	e.stringTable = append(e.stringTable, 0)
    	e.strings[""] = 0
    
    	return e
    }
    
    func (e *encoder) Position(position token.Position) {
    	e.String(position.Filename)
    	e.Int(position.Offset)
    	e.Int(position.Line)
    	e.Int(position.Column)
    }
    
    type encoder struct {
    	b           []byte
    	stringTable []byte
    	strings     map[string]int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

            if (position == 0) {
                setPosition(1);
            }
            return (child == null) ? null : new Xpp3DomNodePointer(parent, child);
        }
    
        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
            filterChildren(position);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. docs/en/overrides/main.html

        </div>
      </div>
      <div id="announce-right" style="position: relative;">
        <div class="item">
          <a title="CryptAPI: Your easy to use, secure and privacy oriented payment gateway." style="display: block; position: relative;" href="https://cryptapi.io/" target="_blank">
            <span class="sponsor-badge">sponsor</span>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/internal/SymbolHider.java

            private byte[] dataBytes;
            private int position = 0;
    
            public DataReader(byte[] dataBytes) {
                this.dataBytes = dataBytes;
            }
    
            public int getPosition() {
                return position;
            }
    
            public void moveTo(int position) {
                this.position = position;
            }
    
            public int readByte() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultAnsiExecutor.java

        }
    
        private void positionCursorAt(Cursor position, Ansi ansi) {
            if (writeCursor.row == position.row) {
                if (writeCursor.col == position.col) {
                    return;
                }
                if (writeCursor.col < position.col) {
                    ansi.cursorRight(position.col - writeCursor.col);
                } else {
                    ansi.cursorLeft(writeCursor.col - position.col);
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    .boxbg {
      border-width: 0px;
      position: absolute;
      overflow: hidden;
      box-sizing: border-box;
      background: #d8d8d8;
    }
    .positive { position: absolute; background: #caa; }
    .negative { position: absolute; background: #aca; }
    /* Not-inlined frames are visually separated from their caller. */
    .not-inlined {
      border-top: 1px solid black;
    }
    /* Function name */
    .boxtext {
      position: absolute;
      width: 100%;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    var stringType = types.Universe.Lookup("string").Type()
    
    // A position describes what is expected to appear in an argument position.
    type position int
    
    const (
    	// key is an argument position that should hold a string key or an Attr.
    	key position = iota
    	// value is an argument position that should hold a value.
    	value
    	// unknown represents that we do not know if position should hold a key or a value.
    	unknown
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/legacy/source/kube/origin.go

    	return o.Cluster
    }
    
    // Position is a representation of the location of a source.
    type Position struct {
    	Filename string // filename, if any
    	Line     int    // line number, starting at 1
    }
    
    // String outputs the string representation of the position.
    func (p *Position) String() string {
    	s := p.Filename
    	// TODO: support json file position.
    	if p.isValid() && filepath.Ext(p.Filename) != ".json" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top