Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for ucrcor (0.2 sec)

  1. 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:}
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultTextArea.java

        };
        private static final int CHARS_PER_TAB_STOP = 8;
        private final Cursor writePos = new Cursor();
        private final AnsiExecutor ansiExecutor;
    
        public DefaultTextArea(AnsiExecutor ansiExecutor) {
            this.ansiExecutor = ansiExecutor;
        }
    
        /**
         * Returns the bottom right position of this text area.
         */
        public Cursor getWritePosition() {
            return writePos;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/style.css

    }
    #dismissInsight {
        float: right;
        background:url("../images/d.png") -18px -53px no-repeat !important;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }
    .insightTree {
        height: 450px;
        overflow: auto;
    }
    .insightTree a {
        cursor: default;
    }
    .configurationDescription {
        font-size: small;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:31 UTC 2014
    - 2K bytes
    - Viewed (0)
  4. 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) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. 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;
        }
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/a.out.go

    	ABDNZ // Decrement CTR, and branch if CTR != 0
    	ABDZ  // Decrement CTR, and branch if CTR == 0
    	ACMP
    	ACMPU
    	ACMPEQB
    	ACNTLZW
    	ACNTLZWCC
    	ACRAND
    	ACRANDN
    	ACREQV
    	ACRNAND
    	ACRNOR
    	ACROR
    	ACRORN
    	ACRXOR
    	ADIVW
    	ADIVWCC
    	ADIVWVCC
    	ADIVWV
    	ADIVWU
    	ADIVWUCC
    	ADIVWUVCC
    	ADIVWUV
    	AMODUD
    	AMODUW
    	AMODSD
    	AMODSW
    	AEQV
    	AEQVCC
    	AEXTSB
    	AEXTSBCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/graph.css

    #graph {
        cursor: grab;
    }
    
    #graph:active {
        cursor: grabbing;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 70 bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiConsole.java

                }
            }
    
            @Override
            public void beforeLineWrap(AnsiContext ansi, Cursor writeCursor) {
                if (writeCursor.row == 0) {
                    buildStatusArea.newLineAdjustment();
                }
            }
    
            @Override
            public void afterLineWrap(AnsiContext ansi, Cursor writeCursor) {
                if (buildStatusArea.isOverlappingWith(writeCursor)) {
    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. 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() {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

         */
        AnsiContext eraseAll();
    
        /**
         * @return the current context moved to the specified position.
         */
        AnsiContext cursorAt(Cursor cursor);
    
        /**
         * @return a new context at the specified write position.
         */
        AnsiContext writeAt(Cursor writePos);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top