Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for ucrcor (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .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)
  5. 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)
  6. 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)
  7. pkg/api/testing/unstructured_test.go

    				buf.Reset()
    				if err := cborSerializer.Encode(item, &buf); err != nil {
    					t.Fatalf("error encoding native to cbor: %v", err)
    				}
    				var uCBOR runtime.Object = &metaunstruct.Unstructured{}
    				uCBOR, _, err = cborSerializer.Decode(buf.Bytes(), &gvk, uCBOR)
    				if err != nil {
    					diag, _ := cbor.Diagnose(buf.Bytes())
    					t.Fatalf("error decoding cbor to unstructured: %v, diag: %s", err, diag)
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/internal/trace/batchcursor.go

    		return false, err
    	}
    	// Complete the timestamp from the cursor's last timestamp.
    	b.ev.time = freq.mul(tsdiff) + b.lastTs
    
    	// Move the cursor's timestamp forward.
    	b.lastTs = b.ev.time
    
    	// Move the cursor forward.
    	b.dataOff += n
    	return true, nil
    }
    
    func (b *batchCursor) compare(a *batchCursor) int {
    	return cmp.Compare(b.ev.time, a.ev.time)
    }
    
    // readTimedBaseEvent reads out the raw event data from b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K 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/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

    font-family: sans-serif;
    }
    h1 {
      font-size: 1.5em;
    }
    .legend {
      font-size: 1.25em;
    }
    .line, .nop, .unimportant {
      color: #aaaaaa;
    }
    .inlinesrc {
      color: #000066;
    }
    .livesrc {
    cursor: pointer;
    }
    .livesrc:hover {
    background-color: #eeeeee;
    }
    .asm {
    color: #008800;
    display: none;
    }
    </style>`
    
    const weblistPageScript = `<script type="text/javascript">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top