Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for ucrcor (0.28 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
    	-webkit-appearance: button;
    	/* 2 */
    	cursor: pointer;
    	/* 3 */
    }
    
    /** Re-set default cursor for disabled elements. */
    button[disabled],
    html input[disabled] {
    	cursor: default;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    .not-inlined {
      border-top: 1px solid black;
    }
    /* Function name */
    .boxtext {
      position: absolute;
      width: 100%;
      padding-left: 2px;
      line-height: 18px;
      cursor: default;
      font-family: "Google Sans", Arial, sans-serif;
      font-size: 12pt;
      z-index: 2;
    }
    /* Box highlighting via shadows to avoid size changes */
    .hilite { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

    import java.util.function.IntConsumer;
    import java.util.function.IntSupplier;
    
    import org.apache.maven.api.services.MavenException;
    import org.jline.terminal.Attributes;
    import org.jline.terminal.Cursor;
    import org.jline.terminal.MouseEvent;
    import org.jline.terminal.Size;
    import org.jline.terminal.Terminal;
    import org.jline.terminal.spi.SystemStream;
    import org.jline.terminal.spi.TerminalExt;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

    }
    
    .details {
        padding-top: 5px;
        font-size: 10pt;
    }
    
    #controls {
        float: right;
        text-align: right;
        font-size: 10pt;
    }
    
    #controls label {
        font-weight: bold;
        cursor: pointer;
    }
    
    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #f1f1f1;;
    }
    
    nav li {
        float: left;
    }
    
    nav li a {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

        public List<StyledTextOutputEvent.Span> format() {
            return IDLE_SPANS;
        }
    
        private String trim(StringBuilder formattedString) {
            // Don't write to the right-most column, as on some consoles the cursor will wrap to the next line and currently wrapping causes
            // layout weirdness
            int maxWidth;
            int cols = consoleMetaData.getCols();
            if (cols > 0) {
                maxWidth = cols - 1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/database/sql/fakedb_test.go

    			case "table": // For testing cursor reads.
    				c.skipDirtySession = true
    				vparts := strings.Split(value, "!")
    
    				substmt, err := c.PrepareContext(ctx, fmt.Sprintf("SELECT|%s|%s|", vparts[0], strings.Join(vparts[1:], ",")))
    				if err != nil {
    					return nil, err
    				}
    				cursor, err := (substmt.(driver.StmtQueryContext)).QueryContext(ctx, []driver.NamedValue{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. internal/logger/console.go

    	// message itself contains some colored text, we needed
    	// to use some ANSI control escapes to cursor color state
    	// and freely move in the screen.
    	for _, line := range strings.Split(errMsg, "\n") {
    		if len(line) == 0 {
    			// No more text to print, just quit.
    			break
    		}
    
    		for {
    			// Save the attributes of the current cursor helps
    			// us save the text color of the passed error message
    			ansiSaveAttributes()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/internal/trace/reader.go

    		}
    		// Read the next generation.
    		var err error
    		r.gen, r.spill, err = readGeneration(r.r, r.spill)
    		if r.gen == nil {
    			return Event{}, err
    		}
    		r.spillErr = err
    
    		// Reset CPU samples cursor.
    		r.cpuSamples = r.gen.cpuSamples
    
    		// Reset frontier.
    		for m, batches := range r.gen.batches {
    			bc := &batchCursor{m: m}
    			ok, err := bc.nextEvent(batches, r.gen.freq)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            return ComponentUtil.getRankFusionProcessor().search(query, params, userBean);
        }
    
        public long scrollSearch(final SearchRequestParams params, final BooleanFunction<Map<String, Object>> cursor,
                final OptionalThing<FessUserBean> userBean) {
            LaRequestUtil.getOptionalRequest().ifPresent(request -> {
                request.setAttribute(Constants.REQUEST_LANGUAGES, params.getLanguages());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/html.go

        overflow: hidden;
        width: 400px;
        vertical-align: top;
        padding: 5px;
    }
    
    td > h2 {
        cursor: pointer;
        font-size: 120%;
        margin: 5px 0px 5px 0px;
    }
    
    td.collapsed {
        font-size: 12px;
        width: 12px;
        border: 1px solid white;
        padding: 2px;
        cursor: pointer;
        background: #fafafa;
    }
    
    td.collapsed div {
        text-align: right;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top