Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for Cursor (0.23 sec)

  1. internal/logger/console.go

    	// message itself contains some colored text, we needed
    	// to use some ANSI control escapes to cursor color state
    	// and freely move in the screen.
    	for _, line := range strings.Split(errMsg, "\n") {
    		if len(line) == 0 {
    			// No more text to print, just quit.
    			break
    		}
    
    		for {
    			// Save the attributes of the current cursor helps
    			// us save the text color of the passed error message
    			ansiSaveAttributes()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/admin.js

            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        $(this)
          .css("cursor", "pointer")
          .hover(
            function() {
              $(this).addClass("active");
            },
            function() {
              $(this).removeClass("active");
            }
          )
          .click(function() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 06 20:44:47 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  3. src/internal/trace/reader.go

    		}
    		// Read the next generation.
    		var err error
    		r.gen, r.spill, err = readGeneration(r.r, r.spill)
    		if r.gen == nil {
    			return Event{}, err
    		}
    		r.spillErr = err
    
    		// Reset CPU samples cursor.
    		r.cpuSamples = r.gen.cpuSamples
    
    		// Reset frontier.
    		for m, batches := range r.gen.batches {
    			bc := &batchCursor{m: m}
    			ok, err := bc.nextEvent(batches, r.gen.freq)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            return ComponentUtil.getRankFusionProcessor().search(query, params, userBean);
        }
    
        public long scrollSearch(final SearchRequestParams params, final BooleanFunction<Map<String, Object>> cursor,
                final OptionalThing<FessUserBean> userBean) {
            LaRequestUtil.getOptionalRequest().ifPresent(request -> {
                request.setAttribute(Constants.REQUEST_LANGUAGES, params.getLanguages());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/database/sql/driver/driver.go

    //	float64
    //	bool
    //	[]byte
    //	string
    //	time.Time
    //
    // 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/html.go

        overflow: hidden;
        width: 400px;
        vertical-align: top;
        padding: 5px;
    }
    
    td > h2 {
        cursor: pointer;
        font-size: 120%;
        margin: 5px 0px 5px 0px;
    }
    
    td.collapsed {
        font-size: 12px;
        width: 12px;
        border: 1px solid white;
        padding: 2px;
        cursor: pointer;
        background: #fafafa;
    }
    
    td.collapsed div {
        text-align: right;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. src/runtime/mspanset.go

    }
    
    // push adds span s to buffer b. push is safe to call concurrently
    // with other push and pop operations.
    func (b *spanSet) push(s *mspan) {
    	// Obtain our slot.
    	cursor := uintptr(b.index.incTail().tail() - 1)
    	top, bottom := cursor/spanSetBlockEntries, cursor%spanSetBlockEntries
    
    	// Do we need to add a block?
    	spineLen := b.spineLen.Load()
    	var block *spanSetBlock
    retry:
    	if top < spineLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top