Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 317 for Advance (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/proxy/util/nfacct/nfacct_linux.go

    		length -= 4
    
    		// STEP 4. parse value  [variable sized]
    		// The value can assume any data-type. To read it into the appropriate data structure, we need
    		// to know the data type in advance. We achieve this by switching on the attribute-type, and we
    		// allocate the 'adjusted length' bytes (as done in step(3)) for the data-structure.
    		switch attrType {
    		case attrName:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
          return base_;
        }
        // Advance should not be called on beyond-of-range iterators
        // so no component iterators must be beyond end of range, either.
        virtual void Advance() {
          assert(!AtEnd());
          ++current2_;
          if (current2_ == end2_) {
            current2_ = begin2_;
            ++current1_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top