- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 530 for soft (0.04 sec)
-
test-site/activator-launch-1.3.2.jar
getResolveId(); public final RetrieveOptions setResolveId(String); } org/apache/ivy/core/sort/NonMatchingVersionRe.class package org.apache.ivy.core.sort; public abstract interface NonMatchingVersionRe { public abstract void reportNonMatchingVer(org.apache.ivy.core.module.descriptor.DependencyDescriptor, org.apache.ivy.core.module.descriptor.ModuleDescriptor); } org/apache/ivy/core/sort/SortEngine.class package org.apache.ivy.core.sort; public final synchronized class SortEngine { private SortEngineSettings settings;...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
@Override public FacetInfo getFacetInfo() { return createFacetInfo(request); } @Override public String getSort() { return request.getParameter("sort"); } @Override public int getStartPosition() { if (startPosition != -1) { return startPosition; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Chars.java
* * @since 23.1 */ public static void sortDescending(char[] array, int fromIndex, int toIndex) { checkNotNull(array); checkPositionIndexes(fromIndex, toIndex, array.length); Arrays.sort(array, fromIndex, toIndex); reverse(array, fromIndex, toIndex); } /** * Reverses the elements of {@code array}. This is equivalent to {@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 23.9K bytes - Viewed (0) -
docs/zh/docs/contributing.md
* 也可以在现有 PR 中通过你使用的语言标签来筛选对应的 PR,举个例子,对于西班牙语,标签是 <a href="https://github.com/fastapi/fastapi/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+label%3Alang-es+label%3A%22awaiting+review%22" class="external-link" target="_blank">`lang-es`</a>。 * 请使用相同的 Python 示例,且只需翻译文档中的文本,不用修改其它东西。 * 请使用相同的图片、文件名以及链接地址,不用修改其它东西。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 12.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} else if (!failedProjects.isEmpty()) { List<MavenProject> sortedProjects = result.getTopologicallySortedProjects(); // Sort the failedProjects list in the topologically sorted order. failedProjects.sort(comparing(sortedProjects::indexOf)); MavenProject firstFailedProject = failedProjects.get(0);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multisets.java
// TODO(cpovirk): Consider storing an Entry<?> instead of Entry<E>. Entry<E>[] entries = (Entry<E>[]) multiset.entrySet().toArray((Entry<E>[]) new Entry<?>[0]); Arrays.sort(entries, DecreasingCount.INSTANCE); return ImmutableMultiset.copyFromEntries(asList(entries)); } private static final class DecreasingCount implements Comparator<Entry<?>> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 41.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
* * @since 23.1 */ public static void sortDescending(int[] array, int fromIndex, int toIndex) { checkNotNull(array); checkPositionIndexes(fromIndex, toIndex, array.length); Arrays.sort(array, fromIndex, toIndex); reverse(array, fromIndex, toIndex); } /** * Reverses the elements of {@code array}. This is equivalent to {@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 31K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multisets.java
// TODO(cpovirk): Consider storing an Entry<?> instead of Entry<E>. Entry<E>[] entries = (Entry<E>[]) multiset.entrySet().toArray((Entry<E>[]) new Entry<?>[0]); Arrays.sort(entries, DecreasingCount.INSTANCE); return ImmutableMultiset.copyFromEntries(asList(entries)); } private static final class DecreasingCount implements Comparator<Entry<?>> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 41.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
* multiset that violates this constraint, the {@code add(Object)} call will throw a {@code * ClassCastException}. * * @param comparator the comparator that will be used to sort this multiset. A null value * indicates that the elements' <i>natural ordering</i> should be used. */ @SuppressWarnings("unchecked") public static <E extends @Nullable Object> TreeMultiset<E> create(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 34.1K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<class> <name>Profile</name> <version>1.0.0+</version> <superClass>IdentifiableBase</superClass> <description> Modifications to the build process which is keyed on some sort of environmental parameter. </description> <fields> <field> <name>activation</name> <version>1.0.0+</version> <description>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0)