- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 67 for marked (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
} cookie.setSecure(isSecureCookie()); LaResponseUtil.getResponse().addCookie(cookie); } /** * Determines whether the user identification cookie should be marked as secure. * Checks the configured secure setting or examines request headers to detect HTTPS. * * @return true if the cookie should be secure, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals("original", item.toLineString()); // When updated, should return newInput item.setNewInput("updated"); assertEquals("updated", item.toLineString()); // When marked for deletion item.setNewInput(""); assertEquals("", item.toLineString()); // When newInput is set back to null item.setNewInput(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
import java.util.concurrent.atomic.AtomicLong; import org.jspecify.annotations.Nullable; /** * A ThreadFactory builder, providing any combination of these features: * * <ul> * <li>whether threads should be marked as {@linkplain Thread#setDaemon daemon} threads * <li>a {@linkplain ThreadFactoryBuilder#setNameFormat naming format} * <li>a {@linkplain Thread#setPriority thread priority}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
protected long count; /** * Maximum number of files to purge in a single operation. */ protected final int maxPurgeSize; /** * List of files marked for deletion. */ protected final List<Path> deletedFileList = new ArrayList<>(); /** * Base path for thumbnail storage. */ protected final Path basePath;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} } } /** * Adds a favorite count field to the document based on user favorite data. * The favorite count represents how many users have marked this document as a favorite. * * @param map the document data map to add the favorite count to */ protected void addFavoriteCountField(final Map<String, Object> map) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- kubeadm: make sure the extra environment variables written to a kubeadm managed PodSpec are sorted alpha-numerically by the environment variable name. ([#126743](https://github....
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.31.md
"corednsdeployment+json.json"). This makes it possible to apply custom patches to coredns deployment during "init" and "upgrade".' ([#124820](https://github.com/kubernetes/kubernetes/pull/124820), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle] - 'kubeadm: marked the flag "--experimental-output'' as deprecated (it will
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:49:57 UTC 2025 - 429.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- Extended resources backed by DRA feature allowed cluster operator to specify `extendedResourceName` in `DeviceClass`, and application operator to continue using extended resources in pod's requests to request for DRA devices matching the DeviceClass.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
} @Override public @Nullable E getNext() { return null; } } /** Marker interface for {@link InternalEntry} implementations for strong values. */ interface StrongValueEntry<K, V, E extends InternalEntry<K, V, E>> extends InternalEntry<K, V, E> {} /** Marker interface for {@link InternalEntry} implementations for weak values. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
* protect ourselves from this, we park ourselves and tell our interrupter that we did so. */ if (state == PARKED || compareAndSet(state, PARKED)) { // Interrupting Cow Says: // ______ // < Park > // ------ // \ ^__^ // \ (oo)\_______
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 10K bytes - Viewed (0)