Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 228 for Advance (0.18 sec)

  1. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

          if (IsConstant(operand_op)) continue;
          if (operand_op->getBlock() != op->getBlock()) {
            return WalkResult::interrupt();
          }
        }
        return WalkResult::advance();
      });
      return !walk_result.wasInterrupted();
    }
    
    // It reduces the following pattern:
    //
    // S = (0, 0, 0)
    // while S[2] < 3:
    //  a0 = S[0] * 2
    //  a1 = a0 + S[1]
    //  a2 = S[2] + 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/inl_test.go

    			"muintptr.ptr",
    			"puintptr.ptr",
    			"spanOf",
    			"spanOfUnchecked",
    			"typePointers.nextFast",
    			"(*gcWork).putFast",
    			"(*gcWork).tryGetFast",
    			"(*guintptr).set",
    			"(*markBits).advance",
    			"(*mspan).allocBitsForIndex",
    			"(*mspan).base",
    			"(*mspan).markBitsForBase",
    			"(*mspan).markBitsForIndex",
    			"(*mspan).writeUserArenaHeapBits",
    			"(*muintptr).set",
    			"(*puintptr).set",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

          },
          logger = logger,
        )
    
      /** Runs all tasks that are ready. Used by the test thread only. */
      fun runTasks() {
        advanceUntil(nanoTime)
      }
    
      /** Advance the simulated clock, then runs tasks that are ready. Used by the test thread only. */
      fun advanceUntil(newTime: Long) {
        taskRunner.assertThreadDoesntHoldLock()
    
        taskRunner.lock.withLock {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

          func::FuncOp func = dyn_cast_or_null<func::FuncOp>(
              call.resolveCallable(&symbol_table_collection));
          if (!func) {
            assign_unknown_id_to_all(op->getResults());
            return WalkResult::advance();
          }
          const auto& func_info = backtrack_analysis.GetAnalysisForFunc(func);
          for (auto result : filter_resources(op->getResults())) {
            auto passthrough_arg = func_info.GetArg(result.getResultNumber());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    }
    
    const yamlSeparator = "\n---"
    const separator = "---"
    
    // splitYAMLDocument is a bufio.SplitFunc for splitting YAML streams into individual documents.
    func splitYAMLDocument(data []byte, atEOF bool) (advance int, token []byte, err error) {
    	if atEOF && len(data) == 0 {
    		return 0, nil, nil
    	}
    	sep := len([]byte(yamlSeparator))
    	if i := bytes.Index(data, []byte(yamlSeparator)); i >= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
  6. src/text/scanner/scanner.go

    			ch, width = utf8.DecodeRune(s.srcBuf[s.srcPos:s.srcEnd])
    			if ch == utf8.RuneError && width == 1 {
    				// advance for correct error position
    				s.srcPos += width
    				s.lastCharLen = width
    				s.column++
    				s.error("invalid UTF-8 encoding")
    				return ch
    			}
    		}
    	}
    
    	// advance
    	s.srcPos += width
    	s.lastCharLen = width
    	s.column++
    
    	// special situations
    	switch ch {
    	case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/map.go

    // version to the same context. It may advance the context to the next rune. It
    // returns whether a checkpoint is possible: whether the pDst bytes written to
    // dst so far won't need changing as we see more source bytes.
    type mapFunc func(*context) bool
    
    // A spanFunc takes a context set to the current rune and returns whether this
    // rune would be altered when written to the output. It may advance the context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

            }
            continue;
          }
    
          if (defining_op_host != op_host) {
            op->emitOpError() << kErrorMessage;
            return WalkResult::interrupt();
          }
        }
        return WalkResult::advance();
      });
    
      if (result.wasInterrupted()) return std::nullopt;
    
      return metadatas;
    }
    
    // Creates functions in the given module using the given FunctionMetadatas.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String NOTIFICATION_SEARCH_TOP = "notification.search.top";
    
        public static final String NOTIFICATION_ADVANCE_SEARCH = "notification.advance.search";
    
        public static final String STORAGE_ENDPOINT = "storage.endpoint";
    
        public static final String STORAGE_ACCESS_KEY = "storage.accesskey";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterables.java

     * streams.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables produced in this class
     * are <i>lazy</i>, which means that their iterators only advance the backing iteration when
     * absolutely necessary.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#iterables">{@code
     * Iterables}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top