Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for cursorUp (0.04 sec)

  1. src/main/java/org/codelibs/core/sql/ResultSetUtil.java

                throw new SQLRuntimeException(ex);
            }
        }
    
        /**
         * Moves the cursor to the specified position.
         *
         * @param resultSet
         *            The result set. Must not be {@literal null}.
         * @param index
         *            The position.
         * @return Whether the cursor successfully moved to the specified position.
         * @throws SQLRuntimeException
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. docs/en/docs/js/termynal.js

    		this.progressPercent = options.progressPercent
                || parseFloat(this.container.getAttribute(`${this.pfx}-progressPercent`)) || 100;
            this.cursor = options.cursor
                || this.container.getAttribute(`${this.pfx}-cursor`) || '▋';
            this.lineData = this.lineDataToElements(options.lineData || []);
            this.loadLines()
            if (!options.noInit) this.init()
        }
    
        loadLines() {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 10:32:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. scripts/sponsors.py

    github_graphql_url = "https://api.github.com/graphql"
    
    
    sponsors_query = """
    query Q($after: String) {
      user(login: "tiangolo") {
        sponsorshipsAsMaintainer(first: 100, after: $after) {
          edges {
            cursor
            node {
              sponsorEntity {
                ... on Organization {
                  login
                  avatarUrl
                  url
                }
                ... on User {
                  login
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. docs/en/docs/css/termynal.css

        content: '$';
    }
    
    [data-ty][data-ty-prompt]:before {
        content: attr(data-ty-prompt);
    }
    
    [data-ty-cursor]:after {
        content: attr(data-ty-cursor);
        font-family: monospace;
        margin-left: 0.5em;
        -webkit-animation: blink 1s infinite;
                animation: blink 1s infinite;
    }
    
    
    /* Cursor animation */
    
    @-webkit-keyframes blink {
        50% {
            opacity: 0;
        }
    }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Nov 23 09:27:40 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. scripts/contributors.py

    github_graphql_url = "https://api.github.com/graphql"
    
    
    prs_query = """
    query Q($after: String) {
      repository(name: "fastapi", owner: "fastapi") {
        pullRequests(first: 100, after: $after) {
          edges {
            cursor
            node {
              number
              labels(first: 100) {
                nodes {
                  name
                }
              }
              author {
                login
                avatarUrl
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. 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: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 33.9K bytes
    - Viewed (0)
  7. scripts/notify_translations.py

    query Q($after: String, $discussion_number: Int!) {
      repository(name: "fastapi", owner: "fastapi") {
        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: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. scripts/people.py

    discussions_query = """
    query Q($after: String, $category_id: ID) {
      repository(name: "fastapi", owner: "fastapi") {
        discussions(first: 100, after: $after, categoryId: $category_id) {
          edges {
            cursor
            node {
              number
              author {
                login
                avatarUrl
                url
              }
              createdAt
              comments(first: 50) {
                totalCount
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  9. internal/logger/console.go

    	// message itself contains some colored text, we needed
    	// to use some ANSI control escapes to cursor color state
    	// and freely move in the screen.
    	for line := range strings.SplitSeq(errMsg, "\n") {
    		if len(line) == 0 {
    			// No more text to print, just quit.
    			break
    		}
    
    		// Save the attributes of the current cursor helps
    		// us save the text color of the passed error message
    		ansiSaveAttributes()
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         *
         * @param params The search request parameters
         * @param cursor Function to process each document in the result set
         * @param userBean Optional user information for permission checking
         * @return Total number of documents processed
         */
        public long scrollSearch(final SearchRequestParams params, final BooleanFunction<Map<String, Object>> cursor,
                final OptionalThing<FessUserBean> userBean) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
Back to top