Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for ucrcor (0.15 sec)

  1. 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)
  2. src/debug/dwarf/line.go

    		}
    		name = pathJoin(r.directories[dirIndex], name)
    	}
    	mtime := r.buf.uint()
    	length := int(r.buf.uint())
    
    	// If this is a dynamically added path and the cursor was
    	// backed up, we may have already added this entry. Avoid
    	// updating existing line table entries in this case. This
    	// avoids an allocation and potential racy access to the slice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/mmu.go

            position: relative;
            width: 1em;
            height: 1em;
            border-radius: 50%;
            color: #fff;
            background: #555;
            text-align: center;
            cursor: help;
          }
          .help > span {
            display: none;
          }
          .help:hover > span {
            display: block;
            position: absolute;
            left: 1.1em;
            top: 1.1em;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. src/internal/trace/generation.go

    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // generation contains all the trace data for a single
    // trace generation. It is purely data: it does not
    // track any parse state nor does it contain a cursor
    // into the generation.
    type generation struct {
    	gen        uint64
    	batches    map[ThreadID][]batch
    	cpuSamples []cpuSample
    	*evTable
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/trace/regions.go

    	},
    }).Parse(`
    <!DOCTYPE html>
    <title>Regions: {{.Name}}</title>
    <style>` + traceviewer.CommonStyle + `
    th {
      background-color: #050505;
      color: #fff;
    }
    th.link {
      cursor: pointer;
    }
    table {
      border-collapse: collapse;
    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .details tr:hover {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // string inputs parseable by [strconv.ParseBool].
    //
    // Scan can also convert a cursor returned from a query, such as
    // "select cursor(select * from my_table) from dual", into a
    // [*Rows] value that can itself be scanned from. The parent
    // select query will close any cursor [*Rows] if the parent [*Rows] is closed.
    //
    // If any of the first arguments implementing [Scanner] returns an error,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * href="https://developer.android.com/sdk/api_diff/16/">API Level 16</a> is the first version
         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    template refer to elements of the data structure (typically a field of a struct
    or a key in a map) to control execution and derive values to be displayed.
    Execution of the template walks the structure and sets the cursor, represented
    by a period '.' and called "dot", to the value at the current location in the
    structure as execution proceeds.
    
    The input text for a template is UTF-8-encoded text in any format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	if !rows.Next() {
    		t.Fatal("no rows")
    	}
    	var cursor = &Rows{}
    	err = rows.Scan(cursor)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer cursor.Close()
    
    	const expectedRows = 3
    	var currentRow int64
    
    	var n int64
    	var s string
    	for cursor.Next() {
    		currentRow++
    		err = cursor.Scan(&s, &n)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * href="https://developer.android.com/sdk/api_diff/16/">API Level 16</a> is the first version
         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top