Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for Advance (0.4 sec)

  1. android/guava/src/com/google/common/base/Throwables.java

          }
          if (advanceSlowPointer) {
            slowPointer = slowPointer.getCause();
          }
          advanceSlowPointer = !advanceSlowPointer; // only advance every other iteration
        }
        return throwable;
      }
    
      /**
       * Gets a {@code Throwable} cause chain as a list. The first entry in the list will be {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        @Execute
        public HtmlResponse index(final SearchForm form) {
            return search(form);
        }
    
        @Execute
        public HtmlResponse advance(final SearchForm form) {
            if (isLoginRequired()) {
                return redirectToLogin();
            }
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_IndexJsp)).renderWith(data -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    mlir::LogicalResult IsValidGraph(mlir::ModuleOp module) {
      auto result = module.walk([&](Operation* op) {
        return IsControlFlowV1Op(op) ? mlir::WalkResult::interrupt()
                                     : mlir::WalkResult::advance();
      });
      if (result.wasInterrupted()) {
        mlir::TFL::AttachErrorCode(
            module.emitError(
                "The graph has Control Flow V1 ops. TFLite converter doesn't "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

        private final boolean expectStackTraces;
        private final boolean checkDeprecations;
        private final boolean checkJdkWarnings;
    
        /**
         * The last deprecation warning that was matched. This is used to advance lines in the output being scanned
         * by the length of lines in the match.  It will <strong>not</strong> be set back to {@code null} after the
         * first match is found.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

              op->emitOpError() << "failed to convert to region form";
              return WalkResult::interrupt();
            }
          }
        }
        return WalkResult::advance();
      });
      if (result.wasInterrupted()) return signalPassFailure();
    }
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFFunctionalControlFlowToRegions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/internal/trace/trace_test.go

    			if ev.Kind() == trace.EventRegionEnd && ev.Region().Type == "special" {
    				delete(gs, ev.Goroutine())
    			}
    			// Track state transitions for goroutines we care about.
    			//
    			// The goroutines we care about will advance through the state machine
    			// of entered -> blocked -> runnable -> running. If in the running state
    			// we block, then we have a futile wakeup. Because of the runtime.Gosched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

                cluster_dependent_ops.contains(candidate_op)) {
              other_op = candidate_op;
              return WalkResult::interrupt();
            }
          }
        }
        return WalkResult::advance();
      });
      return other_op;
    }
    
    // Collects ops that need to be moved behind the cluster due to data or control
    // dependencies.
    mlir::FailureOr<llvm::SmallSetVector<Operation*, 8>> CollectClusterSuccessorOps(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        HtmlNext path_AdminWizard_AdminWizardStartJsp = new HtmlNext("/admin/wizard/admin_wizard_start.jsp");
    
        /** The path of the HTML: /advance.jsp */
        HtmlNext path_AdvanceJsp = new HtmlNext("/advance.jsp");
    
        /** The path of the HTML: /error/badRequest.jsp */
        HtmlNext path_Error_BadRequestJsp = new HtmlNext("/error/badRequest.jsp");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

        auto walk_res = module->walk([&](Operation* op) -> WalkResult {
          if (!IsOpSupported(op) || IsNonTensorListVariantOp(op)) {
            return WalkResult::interrupt();
          }
          return WalkResult::advance();
        });
        if (walk_res.wasInterrupted()) {
          llvm::errs() << "Tried legalizing to tfl custom tensorlist ops, but not "
                          "all can be supported."
                       << "\n";
          return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

              unscheduled_ops.count(producer_in_block)) {
            // Found an operand that isn't scheduled yet, interrupt the walk.
            return WalkResult::interrupt();
          }
        }
        return WalkResult::advance();
      });
      return ready_to_schedule.wasInterrupted();
    }
    
    bool HasControlDependencyWithUnscheduledOp(
        Operation& op, Block* block, SmallPtrSet<Operation*, 16>& unscheduled_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top