- Sort Score
- Result 10 results
- Languages All
Results 581 - 590 of 773 for short (0.03 sec)
-
docs/en/docs/contributing.md
/// ### Format the code There is a script that you can run that will format and clean all your code: <div class="termy"> ```console $ bash scripts/format.sh ``` </div> It will also auto-sort all your imports. ## Tests There is a script that you can run locally to test all the code and generate coverage reports in HTML: <div class="termy"> ```console $ bash scripts/test-cov-html.sh ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/SortedLists.java
* Searches the specified list for the specified object using the binary search algorithm. The * list must be sorted into ascending order according to the specified comparator (as by the * {@link Collections#sort(List, Comparator) Collections.sort(List, Comparator)} method), prior to * making this call. If it is not sorted, the results are undefined. * * <p>If there are elements in the list which compare as equal to the key, the choice of {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.Modifier; /** * {@link Modifier}用のユーティリティクラスです。 * * @author shot */ public abstract class ModifierUtil { /** * <code>public</code>かどうか返します。 * * @param method * メソッド。{@literal null}であってはいけません * @return パブリックかどうか */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java
* * <p>Because the map may be ascending or descending, this test must derive the relative order of * these extreme values rather than relying on their regular sort ordering. */ final TestSuite createSubmapSuite( FeatureSpecificTestSuiteBuilder< ?, ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>> parentBuilder, Bound from,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/TraverserUtilTest.java
assertThat(traverser instanceof JarFileTraverser, is(true)); final List<String> list = new ArrayList<String>(); traverser.forEach((ResourceHandler) (path, is) -> list.add(path)); list.sort((s1, s2) -> s1.compareTo(s2)); assertThat(list.size(), is(2)); assertThat(list.get(0), is("junit/textui/ResultPrinter.class")); assertThat(list.get(1), is("junit/textui/TestRunner.class")); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.protocolScheme=Схема labels.purgeByBots=Очистить от Ботов labels.purgeSearchLogDay=Очистка журнала поиска labels.query=Запрос labels.queryId=ID запроса labels.rt=rt labels.searchLog=Журнал поиска labels.sort=Сортировка labels.start=Стартовая позиция labels.loginRequired=Требуется логин labels.loginLink=Ссылка для входа labels.threadName=Имя цепочки labels.url=URL labels.userFavorite=Журнал избранного
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 45.6K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
type: integer minimum: 0 exclusiveMinimum: false maximum: 100 exclusiveMaximum: false default: 20 example: 20 - name: sort in: query description: Sorted field name required: false schema: type: string example: score - name: fields.label in: query
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
import static com.google.common.collect.testing.Helpers.entryComparator; import static java.lang.Math.max; import static java.util.Arrays.asList; import static java.util.Collections.singletonMap; import static java.util.Collections.sort; import static junit.framework.Assert.assertEquals; import static junit.framework.Assert.assertFalse; import static junit.framework.Assert.assertTrue; import static junit.framework.Assert.fail;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 17.5K bytes - Viewed (0) -
cmd/global-heal.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "errors" "fmt" "math/rand" "runtime" "sort" "time" "github.com/dustin/go-humanize" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/bucket/lifecycle" objectlock "github.com/minio/minio/internal/bucket/object/lock"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 16.3K bytes - Viewed (0) -
cmd/background-newdisks-heal-ops.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "encoding/json" "errors" "fmt" "io" "os" "sort" "strings" "sync" "time" "github.com/dustin/go-humanize" "github.com/minio/madmin-go/v3" "github.com/minio/minio-go/v7/pkg/set" "github.com/minio/minio/internal/config" "github.com/minio/pkg/v3/env"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 16.6K bytes - Viewed (0)