Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for ucrcor (0.13 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Cursor.java

        }
    
        public static Cursor at(int row, int col) {
            Cursor result = new Cursor();
            result.row = row;
            result.col = col;
            return result;
        }
    
        public static Cursor newBottomLeft() {
            Cursor result = new Cursor();
            result.bottomLeft();
            return result;
        }
    
        public static Cursor from(Cursor position) {
            Cursor result = new Cursor();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/anames.go

    	"BLE",
    	"BLT",
    	"BNE",
    	"BVC",
    	"BVS",
    	"BDNZ",
    	"BDZ",
    	"CMP",
    	"CMPU",
    	"CMPEQB",
    	"CNTLZW",
    	"CNTLZWCC",
    	"CRAND",
    	"CRANDN",
    	"CREQV",
    	"CRNAND",
    	"CRNOR",
    	"CROR",
    	"CRORN",
    	"CRXOR",
    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    	"MODUW",
    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultAnsiExecutorTest.groovy

            Cursor writePos = Cursor.at(3, 0)
            int startRow = writePos.row
            String text = "A" * TERMINAL_WIDTH +
                "B" * TERMINAL_WIDTH +
                "C" * TERMINAL_WIDTH +
                "D" * 3
    
            when:
            ansiExecutor.writeAt(writePos) {
                it.a(text)
            }
    
            then:
            writeCursor == Cursor.at(0, text.length())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultAnsiExecutor.java

            writeCursor.col = 0;
    
            // On any line except the bottom most one, a new line simply move the cursor to the next row.
            // Note: the next row has a lower index.
            if (writeCursor.row > 0) {
                writeCursor.row--;
            } else {
                writeCursor.row = 0;
            }
            cursor.copyFrom(writeCursor);
        }
    
        private void positionCursorAt(Cursor position, Ansi ansi) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/CursorTest.groovy

        def "create a cursor at (0,0) when using factory method 'newBottomLeft'"() {
            when:
            Cursor cursor = Cursor.newBottomLeft()
    
            then:
            cursor.row == 0
            cursor.col == 0
        }
    
        def "create a cursor at (#row, #col) when using factory method 'at'"() {
            when:
            Cursor cursor = Cursor.at(row, col)
    
            then:
            cursor.row == row
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"sotav":    0x4e,
    	"spanglis": 0x4f,
    	"surmiran": 0x50,
    	"sursilv":  0x51,
    	"sutsilv":  0x52,
    	"synnejyl": 0x53,
    	"tarask":   0x54,
    	"tongyong": 0x55,
    	"tunumiit": 0x56,
    	"uccor":    0x57,
    	"ucrcor":   0x58,
    	"ulster":   0x59,
    	"unifon":   0x5a,
    	"vaidika":  0x5b,
    	"valencia": 0x5c,
    	"vallader": 0x5d,
    	"vecdruka": 0x5e,
    	"vivaraup": 0x5f,
    	"wadegile": 0x60,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

        // 2 lines: 1 for BuildStatus and 1 for Cursor parking space
        private final List<DefaultRedrawableLabel> entries = new ArrayList<DefaultRedrawableLabel>(2);
        private final DefaultRedrawableLabel progressBarLabel;
    
        private final List<StyledLabel> buildProgressLabels = new ArrayList<StyledLabel>();
        private final DefaultRedrawableLabel parkingLabel;
        private final Cursor statusAreaPos = new Cursor();
        private boolean isVisible;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultRedrawableLabel.java

            this.spans = spans;
        }
    
        public Cursor getWritePosition() {
            return writePos;
        }
    
        public void setVisible(boolean isVisible) {
            this.isVisible = isVisible;
        }
    
        public boolean isOverlappingWith(Cursor cursor) {
            return cursor.row == writePos.row && writePos.col > cursor.col;
        }
    
        @Override
        public void redraw(AnsiContext ansi) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         *
         * @param y the number of lines to move up
         * @return this Ansi instance
         */
        public Ansi cursorUp(final int y) {
            return y > 0 ? appendEscapeSequence('A', y) : y < 0 ? cursorDown(-y) : this;
        }
    
        /**
         * Moves the cursor down. If the parameter y is negative it moves the cursor up.
         *
         * @param y the number of lines to move down
         * @return this Ansi instance
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	a.cursor.name = name
    	a.cursor.iter = iter
    	a.cursor.node = n
    
    	if a.pre != nil && !a.pre(&a.cursor) {
    		a.cursor = saved
    		return
    	}
    
    	// walk children
    	// (the order of the cases matches the order of the corresponding node types in go/ast)
    	switch n := n.(type) {
    	case nil:
    		// nothing to do
    
    	// Comments and fields
    	case *ast.Comment:
    		// nothing to do
    
    	case *ast.CommentGroup:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top