Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for ucrcor (0.52 sec)

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

    type Terminal struct {
    	// AutoCompleteCallback, if non-null, is called for each keypress with
    	// the full input line and the current position of the cursor (in
    	// bytes, as an index into |line|). If it returns ok=false, the key
    	// press is processed normally. Otherwise it returns a replacement line
    	// and the new cursor position.
    	AutoCompleteCallback func(line string, pos int, key rune) (newLine string, newPos int, ok bool)
    
    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. platforms/documentation/docs/src/docs/css/release-notes.css

    }
    
    button.display-toggle {
      cursor: pointer;
    }
    
    a.incubating-marker {
      display: inline;
      color: white;
      font-style: italic;
      font-size: 0.6em;
      text-shadow: none;
      margin-left: 0.6em;
      border-radius: 6px;
      background-color: rgb(160, 160, 160);
      border: 1px solid rgb(150, 150, 150);
      padding: 1px 5px;
      box-shadow: none;
      cursor: pointer;
      vertical-align: 1px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. .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)
  4. 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)
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

        def "doesn't move the write cursor when progress area was never visible while out of bound"() {
            given:
            progressArea.visible = false
            progressArea.scrollDownBy(1)
    
            when:
            redraw()
    
            then:
            progressArea.writePosition.row < 0
            0 * ansi._
        }
    
        def "doesn't move the write cursor when progress area was never visible"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

            }
        }
        def writeCursor = Cursor.at(42, 0)
        def target = Stub(Appendable)
        def colorMap = new DefaultColorMap()
        def consoleMetaData = Mock(ConsoleMetaData)
        def listener = Mock(DefaultAnsiExecutor.NewLineListener)
        def ansiExecutor = new DefaultAnsiExecutor(target, colorMap, factory, consoleMetaData, writeCursor, listener)
        def label = new DefaultRedrawableLabel(Cursor.from(writeCursor))
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiExecutor.java

     */
    
    package org.gradle.internal.logging.console;
    
    import org.gradle.api.Action;
    
    public interface AnsiExecutor {
        void write(Action<? super AnsiContext> action);
        void writeAt(Cursor writePos, Action<? super AnsiContext> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 851 bytes
    - Viewed (0)
  8. 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() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. src/main/webapp/js/profile.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() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. 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)
Back to top