Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for nextB (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/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)
  8. src/runtime/mheap.go

    		throw("mSpanList.remove")
    	}
    	if list.first == span {
    		list.first = span.next
    	} else {
    		span.prev.next = span.next
    	}
    	if list.last == span {
    		list.last = span.prev
    	} else {
    		span.next.prev = span.prev
    	}
    	span.next = nil
    	span.prev = nil
    	span.list = nil
    }
    
    func (list *mSpanList) isEmpty() bool {
    	return list.first == nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          // also be recursive and create StackOverflowErrors
          future.afterDone();
          // push the current set of listeners onto next
          next = future.clearListeners(next);
          future = null;
          while (next != null) {
            Listener curr = next;
            next = next.next;
            /*
             * requireNonNull is safe because the listener stack never contains TOMBSTONE until after
             * clearListeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          // also be recursive and create StackOverflowErrors
          future.afterDone();
          // push the current set of listeners onto next
          next = future.clearListeners(next);
          future = null;
          while (next != null) {
            Listener curr = next;
            next = next.next;
            /*
             * requireNonNull is safe because the listener stack never contains TOMBSTONE until after
             * clearListeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top