- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 140 for tempo (0.03 sec)
-
guava-tests/test/com/google/common/primitives/CharArrayAsListTest.java
public class CharArrayAsListTest extends TestCase { private static List<Character> asList(Character[] values) { char[] temp = new char[values.length]; for (int i = 0; i < values.length; i++) { temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize). } return Chars.asList(temp); } @J2ktIncompatible @GwtIncompatible // suite public static Test suite() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 01 09:32:35 UTC 2023 - 5.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ShortArrayAsListTest.java
public class ShortArrayAsListTest extends TestCase { private static List<Short> asList(Short[] values) { short[] temp = new short[values.length]; for (short i = 0; i < values.length; i++) { temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize). } return Shorts.asList(temp); } @J2ktIncompatible @GwtIncompatible // suite public static Test suite() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 01 09:32:35 UTC 2023 - 5.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/LongArrayAsListTest.java
public class LongArrayAsListTest extends TestCase { private static List<Long> asList(Long[] values) { long[] temp = new long[values.length]; for (int i = 0; i < values.length; i++) { temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize). } return Longs.asList(temp); } @J2ktIncompatible @GwtIncompatible // suite public static Test suite() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 01 09:32:35 UTC 2023 - 5.5K bytes - Viewed (0) -
src/main/assemblies/common-bin.xml
<excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- temp --> <fileSet> <directory>src/main/assemblies/files</directory> <outputDirectory>fess-${project.version}/temp</outputDirectory> <excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- es/modules --> <fileSet>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 17 02:29:43 UTC 2022 - 3.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/ObjectArrays.java
array[i++] = element; } return array; } /** Swaps {@code array[i]} with {@code array[j]}. */ static void swap(Object[] array, int i, int j) { Object temp = array[i]; array[i] = array[j]; array[j] = temp; } @CanIgnoreReturnValue static Object[] checkElementsNotNull(Object... array) { return checkElementsNotNull(array, array.length); } @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9K bytes - Viewed (0) -
docs/es/docs/benchmarks.md
* Entonces, al usar FastAPI estás ahorrando tiempo de desarrollo, errores, líneas de código y probablemente obtendrías el mismo rendimiento (o mejor) que obtendrías si no lo usaras (ya que tendrías que implementarlo todo en tu código).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Feb 07 11:39:50 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/fr/docs/benchmarks.md
* De ce fait, en utilisant FastAPI on minimise le temps de développement, les bugs, le nombre de lignes de code, et on obtient les mêmes performances (si ce n'est de meilleurs performances) que l'on aurait pu avoir sans ce framework (en ayant à implémenter de nombreuses fonctionnalités importantes par nous-mêmes)....
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Jul 27 18:49:56 UTC 2023 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected void deleteTempDir(final File ownTmpDir) { if (ownTmpDir == null) { return; } if (!FileUtils.deleteQuietly(ownTmpDir)) { logger.warn("Could not delete a temp dir: {}", ownTmpDir.getAbsolutePath()); } } protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.sh
if [ "x$APP_NAME" = "x" ]; then APP_NAME=fess fi if [ "x$SEARCH_ENGINE_HOME" = "x" ]; then SEARCH_ENGINE_HOME=$FESS_HOME/es fi if [ "x$FESS_TEMP_PATH" = "x" ]; then FESS_TEMP_PATH=$FESS_HOME/temp fi if [ "x$FESS_LOG_PATH" = "x" ]; then FESS_LOG_PATH=$FESS_HOME/logs fi if [ "x$FESS_LOG_LEVEL" = "x" ]; then FESS_LOG_LEVEL=warn fi if [ "x$FESS_PORT" = "x" ]; then FESS_PORT=8080 fi
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkTester.java
+ "sollicitudin quam. Praesent neque elit, sodales quis vestibulum vel, pellentesque nec " + "erat. Proin cursus commodo lacus eget congue. Aliquam erat volutpat. Fusce ut leo sed " + "risus tempor vehicula et a odio. Nam aliquet dolor viverra libero rutrum accumsan " + "quis in augue. Suspendisse id dui in lorem tristique placerat eget vel risus. Sed "
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 27 18:57:08 UTC 2022 - 4.9K bytes - Viewed (0)