Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for ucrcor (0.16 sec)

  1. src/database/sql/driver/driver.go

    //
    // If the driver supports cursors, a returned Value may also implement the [Rows] interface
    // in this package. This is used, for example, when a user selects a cursor
    // such as "select cursor(select * from my_table) from dual". If the [Rows]
    // from the select is closed, the cursor [Rows] will also be closed.
    type Value any
    
    // NamedValue holds both the value name and value.
    type NamedValue struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/database/sql/convert.go

    				return errNilPtr
    			}
    			*d = nil
    			return nil
    		}
    	// The driver is returning a cursor the client may iterate over.
    	case driver.Rows:
    		switch d := dest.(type) {
    		case *Rows:
    			if d == nil {
    				return errNilPtr
    			}
    			if rows == nil {
    				return errors.New("invalid context to convert cursor rows, missing parent *Rows")
    			}
    			rows.closemu.Lock()
    			*d = Rows{
    				dc:          rows.dc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

    caption {
        background: #eee;
    }
    
    abbr, acronym {
        font-size: 85%;
        font-weight: bold;
        color: #555;
        text-transform: uppercase;
    }
    
    abbr[title], acronym[title] {
        cursor: help;
        border-bottom: 1px dotted #e5e5e5;
    }
    
    b, strong, dfn {
        font-weight: 700;
    }
    
    em, dfn {
        font-style: italic;
    }
    
    sup, sub {
        line-height: 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    		c.nextSlice += Abi1RO(w)
    	}
    	return rc
    }
    
    // plus returns a register cursor offset from the original, without modifying the original.
    func (c *registerCursor) plus(regWidth Abi1RO) registerCursor {
    	rc := *c
    	rc.nextSlice += regWidth
    	return rc
    }
    
    // at returns the register cursor for component i of t, where the first
    // component is numbered 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #    }
        #}
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o cursorSelectFetchSize: (NotRequired - Default null)
        #  The fetch size of JDBC parameter for cursor select.
        #  For example, specify Integer.MIN_VALUE to enable fetch of MySQL.
        #
        #; cursorSelectFetchSize = Integer.MIN_VALUE
        # - - - - - - - - - -/
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      text-align: left;
    }
    #top table tr td:nth-child(6) {
      width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
    }
    #flathdr1, #flathdr2, #cumhdr1, #cumhdr2, #namehdr {
      cursor: ns-resize;
    }
    .hilite {
      background-color: #ebf5fb;
      font-weight: bold;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/trace/goroutines.go

    	},
    }).Parse(`
    <!DOCTYPE html>
    <title>Goroutines: {{.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
    - 10.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                        end();
                        div().classAttr("col text-right mt-1");
                            i().classAttr("fa fa-filter").attr("data-toggle", "popover", "data-placement", "bottom").title("Filter by tag").style("cursor: pointer").text(" ").end();
                        end();
                        div().classAttr("col p-0")
                            .attr("data-toggle", "tooltip")
                            .style("font-size: smaller")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top