Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Cursor (0.26 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. platforms/documentation/docs/src/docs/css/javadoc.css

        border: none;
        height:16px;
    }
    div.table-tabs {
        padding:10px 0 0 1px;
        margin:10px 0 0 0;
    }
    div.table-tabs > button {
        border: none;
        cursor: pointer;
        padding: 5px 12px 7px 12px;
        font-weight: bold;
        margin-right: 8px;
    }
    div.table-tabs > .active-table-tab {
        background: var(--selected-background-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    // It also returns an offset to start searching in the highest chunk.
    func (s *scavengeIndex) find(force bool) (chunkIdx, uint) {
    	cursor := &s.searchAddrBg
    	if force {
    		cursor = &s.searchAddrForce
    	}
    	searchAddr, marked := cursor.Load()
    	if searchAddr == minOffAddr.addr() {
    		// We got a cleared search addr.
    		return 0, 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                final BooleanFunction<Map<String, Object>> cursor) {
            return scrollSearch(index, condition, getDefaultEntityCreator(), cursor);
        }
    
        public <T> long scrollSearch(final String index, final SearchCondition<SearchRequestBuilder> condition,
                final EntityCreator<T, SearchResponse, SearchHit> creator, final BooleanFunction<T> cursor) {
            long count = 0;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top