Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 269 for Sort (0.06 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        }
                    });
                    runner.build(config);
    
                    final int port = runner.node().settings().getAsInt("http.port", 9200);
                    httpAddress = "http://localhost:" + port;
                    logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use.");
                    break;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       * element of the input iterators. Equivalent entries will not be de-duplicated.
       *
       * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this
       * method does not sort its input.
       *
       * <p>For any equivalent elements across all {@code iterators}, it is undefined which element is
       * returned first.
       *
       * @since 11.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

      private static final class AnyOf extends CharMatcher {
    
        private final char[] chars;
    
        public AnyOf(CharSequence chars) {
          this.chars = chars.toString().toCharArray();
          Arrays.sort(this.chars);
        }
    
        @Override
        public boolean matches(char c) {
          return Arrays.binarySearch(chars, c) >= 0;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

       * element of the input iterators. Equivalent entries will not be de-duplicated.
       *
       * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this
       * method does not sort its input.
       *
       * <p>For any equivalent elements across all {@code iterators}, it is undefined which element is
       * returned first.
       *
       * @since 11.0
       */
    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. tensorflow/compiler/jit/deadness_analysis.cc

      std::vector<TensorId> tensor_ids;
      tensor_ids.reserve(predicate_map_.size());
      for (const auto& kv_pair : predicate_map_) {
        tensor_ids.push_back(kv_pair.first);
      }
    
      std::sort(tensor_ids.begin(), tensor_ids.end());
    
      for (TensorId tensor_id : tensor_ids) {
        auto it = predicate_map_.find(tensor_id);
        CHECK(it != predicate_map_.end()) << tensor_id.ToString();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

      private static final class AnyOf extends CharMatcher {
    
        private final char[] chars;
    
        public AnyOf(CharSequence chars) {
          this.chars = chars.toString().toCharArray();
          Arrays.sort(this.chars);
        }
    
        @Override
        public boolean matches(char c) {
          return Arrays.binarySearch(chars, c) >= 0;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	}
    	ut := t.uncommon()
    	if ut == nil {
    		return Method{}, false
    	}
    
    	methods := ut.ExportedMethods()
    
    	// We are looking for the first index i where the string becomes >= s.
    	// This is a copy of sort.Search, with f(h) replaced by (t.nameOff(methods[h].name).name() >= name).
    	i, j := 0, len(methods)
    	for i < j {
    		h := int(uint(i+j) >> 1) // avoid overflow when computing h
    		// i ≤ h < j
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/time/format.go

    // permitted by the RFCs and they do accept time formats not formally defined.
    // The [RFC3339Nano] format removes trailing zeros from the seconds field
    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    		disambiguateRoot.Range(func(k, _ any) bool {
    			m := k.(module.Version)
    			roots = append(roots, m)
    			pathIsRoot[m.Path] = true
    			return true
    		})
    
    		if len(roots) > len(tidy.rootModules) {
    			module.Sort(roots)
    			tidy = newRequirements(pruned, roots, tidy.direct)
    			_, err = tidy.Graph(ctx)
    			if err != nil {
    				return nil, err
    			}
    			// Adding these roots may have pulled additional modules into the module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	//
    	// In this case, we *include* idle utilization, because that is additional CPU time that
    	// the GC had available to it.
    	//
    	// In effect, idle GC time is sort of double-counted here, but it's very weird compared
    	// to other kinds of GC work, because of how fluid it is. Namely, because the mutator is
    	// *always* free to take it.
    	//
    	// So this calculation is really:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top