Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for nextB (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      func.return %4: tensor<2x4xf32>
    
    // CHECK-NEXT: %[[q:.*]] = "tfl.quantize"(%arg0)
    // CHECK-NEXT: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK-NEXT: %[[q_0:.*]] = "tfl.quantize"(%arg1)
    // CHECK-NEXT: %[[dq_0:.*]] = "tfl.dequantize"(%[[q_0]])
    // CHECK-NEXT: %[[c:.*]] = "tfl.concatenation"(%[[dq]], %[[dq_0]])
    // CHECK-NEXT: %[[q_1:.*]] = "tfl.quantize"(%[[c]])
    // CHECK-NEXT: %[[dq_1:.*]] = "tfl.dequantize"(%[[q_1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

    // CHECK-NEXT: tf.Const
    // CHECK-NEXT: tf.Const
    // CHECK-NEXT: tf.Const
    // CHECK-NEXT: tf.AddV2
    // CHECK-NEXT: tf.AddV2
    // CHECK-NEXT: tf.TensorArrayReadV3
    // CHECK-NEXT: tf.DecodeJpeg
    // CHECK-NEXT: tf.ExpandDims
    // CHECK-NEXT: tf.ResizeBilinear
    // CHECK-NEXT: tf.Squeeze
    // CHECK-NEXT: tf.Cast
    // CHECK-NEXT: tf_mlrt.tf_await
    // CHECK-NEXT: tf.TensorArrayWriteV3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK:      %[[CLUSTER:[0-9]*]]:3 = "tf_device.cluster"() ({
    // CHECK-NEXT:   %[[OP_A:[0-9]*]] = "tf.opA"(%[[ARG_0]])
    // CHECK-NEXT:   %[[OP_C:[0-9]*]] = "tf.opC"(%[[OP_A]])
    // CHECK-NEXT:   %[[OP_D:[0-9]*]] = "tf.opD"(%[[OP_C]])
    // CHECK-NEXT:   %[[OP_F:[0-9]*]] = "tf.opF"(%[[ARG_0]])
    // CHECK-NEXT:   tf_device.return %[[OP_C]], %[[OP_D]], %[[OP_F]]
    // CHECK-NEXT: _replication_info = "replicate"
    // CHECK-SAME: device = "/device:TPU:0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    //	(e.g., pass list via a channel over which to range).
    func (p *printer) exprList(prev0 token.Pos, list []ast.Expr, depth int, mode exprListMode, next0 token.Pos, isIncomplete bool) {
    	if len(list) == 0 {
    		if isIncomplete {
    			prev := p.posFor(prev0)
    			next := p.posFor(next0)
    			if prev.IsValid() && prev.Line == next.Line {
    				p.print("/* " + filteredMsg + " */")
    			} else {
    				p.print(newline)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    		}
    		prev = p.tok
    
    		switch p.tok {
    		case _Import:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.importDecl)
    
    		case _Const:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.constDecl)
    
    		case _Type:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.typeDecl)
    
    		case _Var:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.varDecl)
    
    		case _Func:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

          private final StrongKeyStrongValueEntry<K, V> next;
    
          LinkedStrongKeyStrongValueEntry(K key, int hash, StrongKeyStrongValueEntry<K, V> next) {
            super(key, hash);
            this.next = next;
          }
    
          @Override
          public StrongKeyStrongValueEntry<K, V> getNext() {
            return next;
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        // CHECK-NEXT: ^{{.+}}({{.+}}: tensor<i1>):
        ^cond(%carg0: tensor<i1>):
          // CHECK-NEXT: [[WHILE_REGION_COND:%.+]] = "tf.Const"
          // CHECK-SAME: value = dense<true> : tensor<i1>
          %10 = "tf.VarIsInitializedOp"(%arg0) : (!tf_res) -> tensor<i1>
          // CHECK-NEXT: "tf.Yield"([[WHILE_REGION_COND]])
          "tf.Yield"(%10) : (tensor<i1>) -> ()
        // CHECK-NEXT: }, {
        }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
Back to top