Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for Cursor (0.14 sec)

  1. 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)
  2. 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)
  3. src/main/webapp/css/bootstrap.min.css.map

    Safari.\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n}\n\n// Opinionated: add \"hand\" cursor to non-disabled button elements.\n@if $enable-pointer-cursor-for-buttons {\n  button,\n  [type=\"button\"],\n  [type=\"reset\"],\n  [type=\"submit\"] {\n    &:not(:disabled) {\n      cursor: pointer;\n    }\n  }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/bootstrap.min.css.map

    Safari.\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n}\n\n// Opinionated: add \"hand\" cursor to non-disabled button elements.\n@if $enable-pointer-cursor-for-buttons {\n  button,\n  [type=\"button\"],\n  [type=\"reset\"],\n  [type=\"submit\"] {\n    &:not(:disabled) {\n      cursor: pointer;\n    }\n  }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  5. src/text/template/parse/lex.go

    	// Keywords appear after all the rest.
    	itemKeyword  // used only to delimit the keywords
    	itemBlock    // block keyword
    	itemBreak    // break keyword
    	itemContinue // continue keyword
    	itemDot      // the cursor, spelled '.'
    	itemDefine   // define keyword
    	itemElse     // else keyword
    	itemEnd      // end keyword
    	itemIf       // if keyword
    	itemNil      // the untyped nil constant, easiest to treat as a keyword
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K 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. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

          monitor.enter();
          try {
            int i = lastRet;
            if (i == -1) throw new IllegalStateException();
            lastRet = -1;
    
            int ti = takeIndex;
            removeAt(i);
            // back up cursor (reset to front if was first element)
            nextIndex = (i == ti) ? takeIndex : i;
            checkNext();
          } finally {
            monitor.leave();
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top