Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for scrollTo (0.15 sec)

  1. src/cmd/cover/html.go

    			if (!visible)
    				return;
    			files.value = part;
    			visible.style.display = 'block';
    			location.hash = part;
    		}
    		function onChange() {
    			select(files.value);
    			window.scrollTo(0, 0);
    		}
    		if (location.hash != "") {
    			select(location.hash.substr(1));
    		}
    		if (!visible) {
    			select("file0");
    		}
    	})();
    	</script>
    </html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultRedrawableLabel.java

        // According to absolute positioning
        public void scrollBy(int rows) {
            writePos.row -= rows;
            absolutePositionRow += rows;
        }
    
        // According to absolute positioning
        public void scrollUpBy(int rows) {
            scrollBy(-rows);
        }
    
        // According to absolute positioning
        public void scrollDownBy(int rows) {
            scrollBy(rows);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

        }
    
        // According to absolute positioning
        private void scrollBy(int rows) {
            statusAreaPos.row -= rows;
            for (DefaultRedrawableLabel label : entries) {
                label.scrollBy(rows);
            }
        }
    
        // According to absolute positioning
        public void scrollUpBy(int rows) {
            scrollBy(-rows);
        }
    
        // According to absolute positioning
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

                2 * ansi.newline()
                1 * ansi.cursorUp(5)
    
                expectAreaRedraw()
                0 * ansi._
            }
        }
    
        def "clears the end of the line when the area is scrolled and a label is updated with a smaller text between redraw"() {
            given:
            fillArea()
    
            when:
            redraw()
            progressArea.scrollDownBy(2)
            int i = 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

                  var beforeOffset = evt.target.offsetTop;
    
                  switchSampleLanguage(preferredLanguageId);
    
                  // Scroll the window to account for content height differences between different sample languages
                  window.scrollBy(0, evt.target.offsetTop - beforeOffset);
                }
              );
              multiLanguageSelectorElement.appendChild(optionEl);
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsDataService.java

                    }
    
                    final String sid = scrollId;
                    response = getClient().get(c -> c.prepareSearchScroll(sid).setScroll(new TimeValue(scrollTimeout)).execute());
                    if (!scrollId.equals(response.getScrollId())) {
                        getClient().clearScroll(scrollId);
                    }
                    scrollId = response.getScrollId();
                }
            } finally {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

                        response = client.prepareSearchScroll(scrollId).setScroll(settings.getScrollTimeout()).execute()
                                .actionGet(settings.getSearchTimeout());
                        if (!scrollId.equals(response.getScrollId())) {
                            SuggestUtil.deleteScrollContext(client, scrollId);
                        }
                    }
                    scrollId = response.getScrollId();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

        def "scrolling the label by non-zero number of rows between redraw will rewrite the text to ansi to the new location"() {
            given:
            label.text = "text"
    
            when:
            redraw()
            label.scrollBy(rows)
            redraw()
    
            then:
            2 * ansi.a('text')
            1 * ansi.cursorLeft(4)
            if (rows < 0) {
                1 * ansi.cursorUp(Math.abs(rows))
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/bug_report.md

    **Describe the bug**
    A clear and concise description of what the bug is.
    
    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    **Expected behavior**
    A clear and concise description of what you expected to happen.
    
    **Screenshots**
    If applicable, add screenshots to help explain your problem.
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Feb 10 22:19:06 UTC 2020
    - 749 bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/bug_report.md

    **Describe the bug**
    A clear and concise description of what the bug is.
    
    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    **Expected behavior**
    A clear and concise description of what you expected to happen.
    
    **Screenshots**
    If applicable, add screenshots to help explain your problem.
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Mon Feb 10 22:18:26 UTC 2020
    - 748 bytes
    - Viewed (0)
Back to top