- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,174 for mess (0.06 sec)
-
android/guava/src/com/google/common/collect/Platform.java
* The new array contains nulls, even if the old array did not. If we wanted to be accurate, we * would declare a return type of `@Nullable T[]`. However, we've decided not to think too hard * about arrays for now, as they're a mess. (We previously discussed this in the review of * ObjectArrays, which is the main caller of this method.) */ static <T extends @Nullable Object> T[] newArray(T[] reference, int length) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 17:52:51 UTC 2024 - 5.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/Platform.java
* The new array contains nulls, even if the old array did not. If we wanted to be accurate, we * would declare a return type of `@Nullable T[]`. However, we've decided not to think too hard * about arrays for now, as they're a mess. (We previously discussed this in the review of * ObjectArrays, which is the main caller of this method.) */ static <T extends @Nullable Object> T[] newArray(T[] reference, int length) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 17:52:51 UTC 2024 - 5.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt
if (this::cache.isInitialized) { cache.delete() } } @Test fun corruptedCipher() { val response = testCorruptingCache { corruptMetadata { // mess with cipher suite it.replace("TLS_", "SLT_") } } assertThat(response.body.string()).isEqualTo("ABC.1") // cached assertThat(cache.requestCount()).isEqualTo(2)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 6K bytes - Viewed (0) -
integration-tests/gradle/gradlew
# Now convert the arguments - kludge to limit ourselves to /bin/sh for arg do if case $arg in #( -*) false ;; # don't mess with options #( /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath [ -e "$t" ] ;; #( *) false ;; esac then
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 31 19:07:19 UTC 2023 - 8.5K bytes - Viewed (0) -
gradlew
# Now convert the arguments - kludge to limit ourselves to /bin/sh for arg do if case $arg in #( -*) false ;; # don't mess with options #( /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath [ -e "$t" ] ;; #( *) false ;; esac then
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 24 09:00:26 UTC 2023 - 8.5K bytes - Viewed (0) -
src/packaging/deb/init.d/fess
#MAX_LOCKED_MEMORY= # Fess log directory LOG_DIR=${packaging.fess.log.dir} # Fess data directory DATA_DIR=${packaging.fess.var.dir} # Fess configuration directory CONF_DIR=${packaging.fess.conf.dir} # Maximum number of VMA (Virtual Memory Areas) a process can own MAX_MAP_COUNT=262144 # Path to the GC log file #FESS_GC_LOG_FILE=/var/log/fess/gc.log # Fess PID file directory
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.8K bytes - Viewed (0) -
src/main/assemblies/files/fess
/opt/fess/bin/fess.in.sh \ ~/.fess.in.sh \ $FESS_HOME/bin/fess.in.sh \ "`dirname "$0"`"/fess.in.sh; do if [ -r "$include" ]; then . "$include" break fi done # ...otherwise, source the specified include. elif [ -r "$FESS_INCLUDE" ]; then . "$FESS_INCLUDE" fi if [ -x "$JAVA_HOME/bin/java" ]; then
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.4K bytes - Viewed (0) -
src/packaging/common/env/fess
################################ # Fess ################################ # Fess Path FESS_TEMP_PATH=${packaging.fess.temp.dir} FESS_LOG_PATH=${packaging.fess.log.dir} FESS_CONF_PATH=${packaging.fess.conf.dir} FESS_VAR_PATH=${packaging.fess.var.dir} FESS_DICTIONARY_PATH=/var/lib/opensearch/config/ # Port FESS_PORT=8080 # Heap Memory FESS_HEAP_SIZE=512m # Elasticsearch Path SEARCH_ENGINE_HOME=/usr/share/opensearch/
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 489 bytes - Viewed (0) -
src/packaging/rpm/init.d/fess
PROC_NAME=org.codelibs.fess.FessBoot FESS_USER="${packaging.fess.user}" FESS_GROUP="${packaging.fess.group}" FESS_HOME="${packaging.fess.home.dir}" PID_DIR="${packaging.fess.pid.dir}" # Source the default env file FESS_ENV_FILE="${packaging.env.file}" if [ -f "$FESS_ENV_FILE" ]; then . "$FESS_ENV_FILE" fi exec="$FESS_HOME/bin/fess" prog="fess" pidfile="$PID_DIR/${prog}.pid" export FESS_TEMP_PATH export FESS_LOG_PATH
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0) -
src/packaging/deb/lintian/fess
# Ignore arch dependent warnings, we chose the right libs on start fess binary: arch-independent-package-contains-binary-or-object # Not stripping external libraries fess binary: unstripped-binary-or-object # Ignore arch dependent warnings, we chose the right libs on start fess binary: arch-dependent-file-in-usr-share # Please check our changelog at https://github.com/codelibs/fess
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 439 bytes - Viewed (0)