Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 228 for Advance (0.13 sec)

  1. src/main/resources/fess_label_ru.properties

    labels.tooltip_search_view=Search View
    labels.tooltip_run_crawler=Run Crawler
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Help
    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_label.properties

    labels.tooltip_search_view=Search View
    labels.tooltip_run_crawler=Run Crawler
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Help
    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    		// match both empty and nonempty strings.)
    		if a[1] > lastMatchEnd || a[0] == 0 {
    			buf = repl(buf, a)
    		}
    		lastMatchEnd = a[1]
    
    		// Advance past this match; always advance at least one character.
    		var width int
    		if bsrc != nil {
    			_, width = utf8.DecodeRune(bsrc[searchPos:])
    		} else {
    			_, width = utf8.DecodeRuneInString(src[searchPos:])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/cmd/internal/archive/archive.go

    		// reader is better than flushing the buffer and seeking.
    		r.readFull(r.tmp[:n])
    	} else if n <= int64(r.b.Buffered()) {
    		// Even though the data is not small, it has already been read.
    		// Advance the buffer instead of seeking.
    		for n > int64(len(r.tmp)) {
    			r.readFull(r.tmp[:])
    			n -= int64(len(r.tmp))
    		}
    		r.readFull(r.tmp[:n])
    	} else {
    		// Seek, giving up buffered data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_en.properties

    labels.tooltip_search_view=Search View
    labels.tooltip_run_crawler=Run Crawler
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Help
    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      auto result = func.walk([&](Operation* op) {
        if (!IsCommunicationOp(op)) return WalkResult::advance();
        has_communication_ops = true;
        if (failed(
                GetControlFlowAncestors(op, control_flow_ops, control_flow_blocks)))
          return WalkResult::interrupt();
        return WalkResult::advance();
      });
      return failure(result.wasInterrupted());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. common/scripts/kind_provisioner.sh

    # 1. IMAGE = docker image used as node by KinD
    # 2. IP_FAMILY = either ipv4 or ipv6
    #
    # NOTE: Please call load_cluster_topology before calling this method as it expects
    # cluster topology information to be loaded in advance
    function setup_kind_clusters() {
      IMAGE="${1:-"${DEFAULT_KIND_IMAGE}"}"
      KUBECONFIG_DIR="${ARTIFACTS:-$(mktemp -d)}/kubeconfig"
      IP_FAMILY="${2:-ipv4}"
    
      check_default_cluster_yaml
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

                operand_op == &cluster_op)
              continue;
    
            if (operand_op->getParentRegion() == cluster_region)
              return WalkResult::interrupt();
          }
          return WalkResult::advance();
        });
    
        if (!walk_result.wasInterrupted())
          head_outside_compiled_ops.insert(&cluster_op);
      }
    
      return head_outside_compiled_ops.takeVector();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    func nextDecomposed(i *Iter) (next []byte) {
    	outp := 0
    	inCopyStart, outCopyStart := i.p, 0
    	for {
    		if sz := int(i.info.size); sz <= 1 {
    			i.rb.ss = 0
    			p := i.p
    			i.p++ // ASCII or illegal byte.  Either way, advance by 1.
    			if i.p >= i.rb.nsrc {
    				i.setDone()
    				return i.returnSlice(p, i.p)
    			} else if i.rb.src._byte(i.p) < utf8.RuneSelf {
    				i.next = i.asciiF
    				return i.returnSlice(p, i.p)
    			}
    			outp++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/iter.go

    func nextDecomposed(i *Iter) (next []byte) {
    	outp := 0
    	inCopyStart, outCopyStart := i.p, 0
    	for {
    		if sz := int(i.info.size); sz <= 1 {
    			i.rb.ss = 0
    			p := i.p
    			i.p++ // ASCII or illegal byte.  Either way, advance by 1.
    			if i.p >= i.rb.nsrc {
    				i.setDone()
    				return i.returnSlice(p, i.p)
    			} else if i.rb.src._byte(i.p) < utf8.RuneSelf {
    				i.next = i.asciiF
    				return i.returnSlice(p, i.p)
    			}
    			outp++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
Back to top