- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 257 for oldest (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverResult.java
* no versions matched the requested range. */ @Nonnull List<Version> getVersions(); /** * Gets the lowest version matching the requested range. * * @return An Optional containing the lowest matching version, or empty Optional if no versions * matched the requested range */ @Nonnull default Optional<Version> getLowestVersion() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 3.4K bytes - Click Count (0) -
docs/bucket/replication/setup_replication.sh
cat ./repladmin-policy-source.json #assign this replication policy to repladmin mc admin policy attach source repladmin-policy --user=repladmin ### on dest alias # Create a replication user : repluser on dest alias mc admin user add dest repluser repluser123 # create a replication policy for repluser
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri May 26 05:07:25 GMT 2023 - 2.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TopKSelector.java
import java.util.List; import org.jspecify.annotations.Nullable; /** * An accumulator that selects the "top" {@code k} elements added to it, relative to a provided * comparator. "Top" can mean the greatest or the lowest elements, specified in the factory used to * create the {@code TopKSelector} instance. * * <p>If your input data is available as an {@link Iterable} or {@link Iterator}, prefer {@link
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 31 13:15:26 GMT 2025 - 11.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
/** * Executes the log purging job. * Performs the following cleanup operations: * - Purges old crawling sessions * - Purges search logs older than configured days * - Purges job logs older than configured days * - Purges user info logs older than configured days * - Updates job log status * * @return a string containing the execution result and any error messages */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (0) -
docs/bucket/lifecycle/README.md
A non-current object version is a version which is not the latest for a given object. It is possible to set up an automatic removal of non-current versions when a version becomes older than a given number of days. e.g., To scan objects stored under `user-uploads/` prefix and remove versions older than one year. ``` { "Rules": [ { "ID": "Removing all old versions", "Filter": {Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 9.1K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
src.setAaa("111"); src.setCcc("333"); final MyClass2 dest = new MyClass2(); dest.setAaa("aaa"); dest.setBbb("bbb"); dest.setDdd("ddd"); BeanUtil.copyBeanToBean(src, dest); assertThat(dest.getAaa(), is("111")); assertThat(dest.getBbb(), is(nullValue())); assertThat(dest.getDdd(), is("ddd")); } /** * @throws Exception */
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 34.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashSet.java
int[] entries = requireEntries(); // Loop over current hashtable for (int oldTableIndex = 0; oldTableIndex <= oldMask; oldTableIndex++) { int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex); while (oldNext != UNSET) { int entryIndex = oldNext - 1; int oldEntry = entries[entryIndex]; // Rebuild hash using entry hashPrefix and tableIndex ("hashSuffix")
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 24.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* @param dest The destination Bean. Must not be {@literal null}. */ public static void copyBeanToBean(final Object src, final Object dest) { copyBeanToBean(src, dest, DEFAULT_OPTIONS); } /** * Copies properties from one Bean to another Bean. * * @param src The source Bean. Must not be {@literal null}.Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.5K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/HashCode.java
/** * Copies bytes from this hash code into {@code dest}. * * @param dest the byte array into which the hash code will be written * @param offset the start offset in the data * @param maxLength the maximum number of bytes to write * @return the number of bytes written to {@code dest} * @throws IndexOutOfBoundsException if there is not enough room in {@code dest} */ @CanIgnoreReturnValueCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 12.6K bytes - Click Count (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
dest[3] = '%'; dest[6] = '%'; dest[8] = upperHexDigits[cp & 0xF]; cp >>>= 4; dest[7] = upperHexDigits[0x8 | (cp & 0x3)]; cp >>>= 2; dest[5] = upperHexDigits[cp & 0xF]; cp >>>= 4; dest[4] = upperHexDigits[0x8 | (cp & 0x3)]; cp >>>= 2; dest[2] = upperHexDigits[cp]; return dest; } else if (cp <= 0x10ffff) { char[] dest = new char[12];Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 28 01:26:26 GMT 2024 - 8.6K bytes - Click Count (0)