Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 317 for Advance (0.15 sec)

  1. 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)
  2. 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)
  3. android/guava/src/com/google/common/collect/Iterators.java

        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. 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)
  6. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

            override fun contentType(): MediaType? {
              return ******@****.***tType()
            }
    
            override fun contentLength(): Long {
              return -1 // We don't know the compressed length in advance!
            }
    
            @Throws(IOException::class)
            override fun writeTo(sink: BufferedSink) {
              GzipSink(sink).buffer().use(this@gzip::writeTo)
            }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        list.add("b");
        Iterator<String> iterator = list.iterator();
        advance(iterator, 1);
        assertEquals("b", iterator.next());
      }
    
      public void testAdvance_pastEnd() {
        List<String> list = newArrayList();
        list.add("a");
        list.add("b");
        Iterator<String> iterator = list.iterator();
        advance(iterator, 5);
        assertFalse(iterator.hasNext());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  10. 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)
Back to top