Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for ucrcor (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            fir: FirResolvable,
            expression: KtSimpleNameExpression,
            session: FirSession,
            symbolBuilder: KaSymbolByFirBuilder,
        ): Collection<KaSymbol> {
            // If the cursor position is on the label of `super`, we want to resolve to the current class. FIR represents `super` as
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  9. src/text/template/parse/node.go

    	NodeBool                       // A boolean constant.
    	NodeChain                      // A sequence of field accesses.
    	NodeCommand                    // An element of a pipeline.
    	NodeDot                        // The cursor, dot.
    	nodeElse                       // An else action. Not added to tree.
    	nodeEnd                        // An end action. Not added to tree.
    	NodeField                      // A field or method name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top