Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for Advance (0.27 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			q = append([]AST{qual}, q...)
    			st.advance(1)
    		} else if len(st.str) > 1 && st.str[0] == 'D' {
    			var qual AST
    			switch st.str[1] {
    			case 'x':
    				qual = &Qualifier{Name: "transaction_safe"}
    				st.advance(2)
    			case 'o':
    				qual = &Qualifier{Name: "noexcept"}
    				st.advance(2)
    			case 'O':
    				st.advance(2)
    				expr := st.expression()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/analyze_variables.cc

        if (IsSupportedTFLiteResourceOp(op)) return WalkResult::advance();
        if (IsSupportedTFLiteControlFlow(op)) return WalkResult::advance();
    
        if (IsSupportedTFCustomOp(op)) return WalkResult::advance();
    
        // Check for ops that are legalized to TFLite.
        if (op->getDialect()->getNamespace() == "tfl") {
          return WalkResult::advance();
        }
        // Check for ops that are not legalized to TFLite.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/internal/trace/reader.go

    	// (4) Organize batchCursors in a min-heap, ordered by the timestamp of the next event for each M.
    	// (5) Try to advance the next event for the M at the top of the min-heap.
    	//   (a) On success, select that M.
    	//   (b) On failure, sort the min-heap and try to advance other Ms. Select the first M that advances.
    	//   (c) If there's nothing left to advance, goto (1).
    	// (6) Select the latest event for the selected M and get it ready to be returned.
    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. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

        if (op->getDialect() != tf_dialect) return WalkResult::advance();
    
        if (parallel_group_attr) {
          op->setAttr(TF::kParallelExecAnnotation, parallel_group_attr);
        }
        auto device_attr = op->getAttr(kDeviceAttr);
        if (!device_attr) {
          op->setAttr(kDeviceAttr, launch.getDeviceAttr());
          return WalkResult::advance();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

        private long sync(long syncMillis) {
            long newSyncMillis = advance(timeSource.currentTimeMillis());
            syncMillisRef.compareAndSet(syncMillis, newSyncMillis);
            return newSyncMillis;
        }
    
        /**
         * Advance the clock to the given timestamp and return the new time.
         * The returned time may not be the one passed in, in case another thread already advanced the clock further.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	1<<_Switch |
    	1<<_Type |
    	1<<_Var
    
    // advance consumes tokens until it finds a token of the stopset or followlist.
    // The stopset is only considered if we are inside a function (p.fnest > 0).
    // The followlist is the list of valid tokens that can follow a production;
    // if it is empty, exactly one (non-EOF) token is consumed to ensure progress.
    func (p *parser) advance(followlist ...token) {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/copyelim.go

    	// Infinite copy loops may happen in unreachable code.
    	// (TODO: or can they? Needs a test.)
    	slow := w
    	var advance bool
    	for w.Op == OpCopy {
    		w = w.Args[0]
    		if w == slow {
    			w.reset(OpUnknown)
    			break
    		}
    		if advance {
    			slow = slow.Args[0]
    		}
    		advance = !advance
    	}
    
    	// The answer is w.  Update all the copies we saw
    	// to point directly to w.  Doing this update makes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // can return a temporary object (and of type other then T), so just
        // having "return &*iterator_;" doesn't work.
        // value_ is updated here and not in Advance() because Advance()
        // can advance iterator_ beyond the end of the range, and we cannot
        // detect that fact. The client code, on the other hand, is
        // responsible for not calling Current() on an out-of-range iterator.
        virtual const T* Current() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

      SmallVector<Attribute> function_list;
      llvm::DenseMap<SymbolRefAttr, int> called_indexes;
    
      WalkResult result = module.walk([&](stablehlo::CustomCallOp op) {
        if (!IsTfFuncCustomCall(op)) {
          return WalkResult::advance();
        }
    
        auto backend_config =
            op->getAttrOfType<DictionaryAttr>(kTfBackendConfigAttrName);
        if (!backend_config) {
          op->emitOpError() << "is missing attribute '" << kTfBackendConfigAttrName
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	"internal/trace/version"
    )
    
    // ordering emulates Go scheduler state for both validation and
    // for putting events in the right order.
    //
    // The interface to ordering consists of two methods: Advance
    // and Next. Advance is called to try and advance an event and
    // add completed events to the ordering. Next is used to pick
    // off events in the ordering.
    type ordering struct {
    	gStates     map[GoID]*gState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top