Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Cursor (0.14 sec)

  1. src/cmd/vendor/golang.org/x/term/terminal.go

    	// Move cursor to column zero at the start of the line.
    	t.move(t.cursorY, 0, t.cursorX, 0)
    	t.cursorX, t.cursorY = 0, 0
    	t.clearLineToRight()
    	for t.cursorY < numPrevLines {
    		// Move down a line
    		t.move(0, 1, 0, 0)
    		t.cursorY++
    		t.clearLineToRight()
    	}
    	// Move back to beginning.
    	t.move(t.cursorY, 0, 0, 0)
    	t.cursorX, t.cursorY = 0, 0
    
    	t.queue(t.prompt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         *
         * @param y the number of lines to move up
         * @return this Ansi instance
         */
        public Ansi cursorUp(final int y) {
            return y > 0 ? appendEscapeSequence('A', y) : y < 0 ? cursorDown(-y) : this;
        }
    
        /**
         * Moves the cursor down. If the parameter y is negative it moves the cursor up.
         *
         * @param y the number of lines to move down
         * @return this Ansi instance
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	a.cursor.name = name
    	a.cursor.iter = iter
    	a.cursor.node = n
    
    	if a.pre != nil && !a.pre(&a.cursor) {
    		a.cursor = saved
    		return
    	}
    
    	// walk children
    	// (the order of the cases matches the order of the corresponding node types in go/ast)
    	switch n := n.(type) {
    	case nil:
    		// nothing to do
    
    	// Comments and fields
    	case *ast.Comment:
    		// nothing to do
    
    	case *ast.CommentGroup:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. .github/actions/people/app/main.py

    discussions_query = """
    query Q($after: String, $category_id: ID) {
      repository(name: "fastapi", owner: "tiangolo") {
        discussions(first: 100, after: $after, categoryId: $category_id) {
          edges {
            cursor
            node {
              number
              author {
                login
                avatarUrl
                url
              }
              title
              createdAt
              comments(first: 100) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/all.css

            padding-left: 1em
        }
    }
    
    .tree-toggle {
        cursor: pointer;
        margin-bottom: 0
    }
    
    .sidebar-toggler {
        position: absolute;
        top: 0;
        left: 10px;
        z-index: 99;
        outline: none;
        background-color: rgba(90, 90, 90, 0.7);
        color: rgba(0, 0, 0, 0.4);
        cursor: pointer;
        padding: 3px 5px;
        border-radius: 10px;
        font-size: 1rem;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. .github/actions/notify-translations/app/main.py

    query Q($after: String, $discussion_number: Int!) {
      repository(name: "fastapi", owner: "tiangolo") {
        discussion(number: $discussion_number) {
          comments(first: 100, after: $after) {
            edges {
              cursor
              node {
                id
                url
                body
              }
            }
          }
        }
      }
    }
    """
    
    add_comment_mutation = """
    mutation Q($discussion_id: ID!, $body: String!) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-position: 30px center;
        padding-left: 27px;
    }
    
    .multi-language-selector .language-option {
        background-color: white;
        border: 1px solid #f7f7f8;
        border-radius: 4px 4px 0 0;
        cursor: pointer;
        display: inline-block;
        font-weight: normal;
        font-family: 'Lato', Arial, sans-serif;
        margin: 0;
        padding: 4px 20px;
        min-width: 130px;
        max-width: 320px;
        text-align: center;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

          checkModCount();
          nextNotInSkipMe(cursor + 1);
          return (nextCursor < size()) || ((forgetMeNot != null) && !forgetMeNot.isEmpty());
        }
    
        @Override
        public E next() {
          checkModCount();
          nextNotInSkipMe(cursor + 1);
          if (nextCursor < size()) {
            cursor = nextCursor;
            canRemove = true;
            return elementData(cursor);
          } else if (forgetMeNot != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

          checkModCount();
          nextNotInSkipMe(cursor + 1);
          return (nextCursor < size()) || ((forgetMeNot != null) && !forgetMeNot.isEmpty());
        }
    
        @Override
        public E next() {
          checkModCount();
          nextNotInSkipMe(cursor + 1);
          if (nextCursor < size()) {
            cursor = nextCursor;
            canRemove = true;
            return elementData(cursor);
          } else if (forgetMeNot != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/database/sql/fakedb_test.go

    			case "table": // For testing cursor reads.
    				c.skipDirtySession = true
    				vparts := strings.Split(value, "!")
    
    				substmt, err := c.PrepareContext(ctx, fmt.Sprintf("SELECT|%s|%s|", vparts[0], strings.Join(vparts[1:], ",")))
    				if err != nil {
    					return nil, err
    				}
    				cursor, err := (substmt.(driver.StmtQueryContext)).QueryContext(ctx, []driver.NamedValue{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top