Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,861 for nextB (0.04 sec)

  1. src/compress/flate/deflatefast.go

    		skip := int32(32)
    
    		nextS := s
    		var candidate tableEntry
    		for {
    			s = nextS
    			bytesBetweenHashLookups := skip >> 5
    			nextS = s + bytesBetweenHashLookups
    			skip += bytesBetweenHashLookups
    			if nextS > sLimit {
    				goto emitRemainder
    			}
    			candidate = e.table[nextHash&tableMask]
    			now := load32(src, nextS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                            int nexts = str.indexOf('[', si + 1);
                            int nexte = str.indexOf(']', si);
                            if ( nexts >= 0 && nexte >= 0 && nexte == nexts - 1 ) {
                                server = str.substring(si, nexte + 1);
                                si = nexts;
                            }
                            else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    // is simultaneously being destroyed.
    func (tl traceLocker) GoSwitch(nextg *g, destroy bool) {
    	// Emit a GoWaiting status if necessary for the unblocked goroutine.
    	w := tl.eventWriter(traceGoRunning, traceProcRunning)
    	// Careful: don't use the event writer. We never want status or in-progress events
    	// to trigger more in-progress events.
    	w.w = emitUnblockStatus(w.w, nextg, tl.gen)
    	ev := traceEvGoSwitch
    	if destroy {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/runtime/select.go

    	x := sgp.prev
    	y := sgp.next
    	if x != nil {
    		if y != nil {
    			// middle of queue
    			x.next = y
    			y.prev = x
    			sgp.next = nil
    			sgp.prev = nil
    			return
    		}
    		// end of queue
    		x.next = nil
    		q.last = x
    		sgp.prev = nil
    		return
    	}
    	if y != nil {
    		// start of queue
    		y.prev = nil
    		q.first = y
    		sgp.next = nil
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.RANGE:
    		pos, op := p.pos, p.tok
    		p.next()
    		x := p.parseUnaryExpr(false)
    		return &ast.UnaryExpr{pos, op, p.checkExpr(x)}
    
    	case token.ARROW:
    		// channel type or receive expression
    		pos := p.pos
    		p.next()
    		if p.tok == token.CHAN {
    			p.next()
    			value := p.parseType()
    			return &ast.ChanType{pos, ast.RECV, value}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    	}
    	// Update the state of the next goroutine.
    	nextGState.status = go122.GoRunning
    	nextGState.seq = seq
    	newCtx := curCtx
    	newCtx.G = nextg
    
    	// Queue an event for the next goroutine starting to run.
    	startCtx := curCtx
    	startCtx.G = NoGoroutine
    	o.queue.push(makeEvent(evt, startCtx, go122.EvGoStart, ev.time, uint64(nextg), ev.args[1]))
    	return newCtx, true, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    				typ = p.parseType()
    			}
    		}
    	case token.MUL:
    		star := p.pos
    		p.next()
    		if p.tok == token.LPAREN {
    			// *(T)
    			p.error(p.pos, "cannot parenthesize embedded type")
    			p.next()
    			typ = p.parseQualifiedIdent(nil)
    			// expect closing ')' but no need to complain if missing
    			if p.tok == token.RPAREN {
    				p.next()
    			}
    		} else {
    			// *T
    			typ = p.parseQualifiedIdent(nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. src/internal/bytealg/index_ppc64x.s

    index2to16loop:
    
    #ifdef GOPPC64_power10
    	LXVLL  R7, R14, V8          // Load next 16 bytes of string  from Base
    	LXVLL  R10, R14, V9         // Load next 16 bytes of string from Base+1
    	LXVLL  R8, R14, V11         // Load next 16 bytes of string from Base+2
    	LXVLL  R17,R14, V12         // Load next 16 bytes of string  from Base+3
    #else
    	LXVB16X  (R7)(R0), V1       // Load next 16 bytes of string into V1 from R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    			bytes, err := cmd.CombinedOutput()
    			if err != nil && len(bytes) == 0 {
    				t.Fatalf("step/next histories differ, diff command %s failed with error=%v", line, err)
    			}
    			t.Fatalf("step/next histories differ, diff=\n%s", string(bytes))
    		}
    	}
    }
    
    type dbgr interface {
    	start()
    	stepnext(s string) bool // step or next, possible with parameter, gets line etc.  returns true for success, false for unsure response
    	quit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_quantized.mlir

    // CHECK-NEXT:       quantization: {
    // CHECK-NEXT:         scale: [ 0.037248 ],
    // CHECK-NEXT:         zero_point: [ -19 ]
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       shape: [ 2048, 528 ],
    // CHECK-NEXT:       type: INT8,
    // CHECK-NEXT:       buffer: 2,
    // CHECK-NEXT:       name: "arg1",
    // CHECK-NEXT:       quantization: {
    // CHECK-NEXT:         scale: [ 0.059802 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 15.4K bytes
    - Viewed (0)
Back to top