Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for cursor (0.26 sec)

  1. 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() {
    JavaScript
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      internal const val CLOSE_NO_STATUS_CODE = 1005
    
      fun toggleMask(
        cursor: Buffer.UnsafeCursor,
        key: ByteArray,
      ) {
        var keyIndex = 0
        val keyLength = key.size
        do {
          val buffer = cursor.data
          var i = cursor.start
          val end = cursor.end
          if (buffer != null) {
            while (i < end) {
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. 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;
        }
    }
    
    CSS
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Sep 10 14:28:22 GMT 2021
    - 2.1K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    auto;
    L219:}
    L220:
    L221:.daterangepicker td.disabled, .daterangepicker option.disabled {
    L222:  color: #999;
    L223:  cursor: not-allowed;
    L224:  text-decoration: line-through;
    L225:}
    L226:
    L227:.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    L228:  font-size: 12px;
    L229:  padding: 1px;
    L230:  height: auto;
    L231:  margin: 0;
    L232:  cursor: default;
    L233:}
    L234:
    L235:.daterangepicker select.monthselect {
    L236:  margin-right: 2%;
    L237:  width: 56%;
    L238:}
    ...
    CSS
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 7.9K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    cycle Classes using : uses: true uses: Packages using : uses: true uses: Classes of cycle : Best fragmenter(s) of cycle : Center classes of cycle : Packages of cycle : Best fragmenter(s) of cycle : Center packages of cycle : cursor:pointer; javascript:showTable(" ",""," ; ") cursor:pointer; javascript:showTable(" ","Name,Maximum fragment size,Eccentricity"," , , ; ") <div class='link' onclick='javascript:window.opener.location.href=\"# \"'> </div> % # ( ) # ( ) # ( ) # ( ) images/interface.png images/abstract.png...
    ZIP Archive
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 23.4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/MessageDeflater.kt

        deflaterSink.flush()
    
        if (deflatedBytes.endsWith(EMPTY_DEFLATE_BLOCK)) {
          val newSize = deflatedBytes.size - LAST_OCTETS_COUNT_TO_REMOVE_AFTER_DEFLATION
          deflatedBytes.readAndWriteUnsafe().use { cursor ->
            cursor.resizeBuffer(newSize)
          }
        } else {
          // Same as adding EMPTY_DEFLATE_BLOCK and then removing 4 bytes.
          deflatedBytes.writeByte(0x00)
        }
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  7. 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) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
  8. .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) {
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  9. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

        @Override
        public E next() {
          if (cursor >= array.length) throw new NoSuchElementException();
          lastRet = cursor;
    
          // array comes from q.toArray() and so should have only E's in it
          @SuppressWarnings("unchecked")
          E e = (E) array[cursor++];
          return e;
        }
    
        @Override
        public void remove() {
          if (lastRet < 0) throw new IllegalStateException();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 19.5K bytes
    - Viewed (0)
  10. src/main/webapp/js/login.js

            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        $(this)
          .css("cursor", "pointer")
          .hover(
            function() {
              $(this).addClass("active");
            },
            function() {
              $(this).removeClass("active");
            }
          )
          .click(function() {
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Sep 12 06:47:49 GMT 2018
    - 1.3K bytes
    - Viewed (0)
Back to top