- Sort Score
- Num 10 results
- Language All
Results 1981 - 1990 of 4,460 for _this (0.09 seconds)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* This method is called automatically after dependency injection is complete. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } ComponentUtil.getSsoManager().register(this); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
LICENSES/third_party/forked/libcontainer/NOTICE
runc Copyright 2012-2015 Docker, Inc. This product includes software developed at Docker, Inc. (http://www.docker.com). The following is courtesy of our legal counsel: Use and transfer of Docker may be subject to certain restrictions by the United States and other governments. It is your responsibility to ensure that your use and/or transfer does not violate applicable laws. For more information, please see http://www.bis.doc.gov
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Oct 22 13:56:22 GMT 2024 - 518 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
* * @param expiry the expiration time in milliseconds (must be positive) * @return this PurgeThumbnailJob instance for method chaining */ public PurgeThumbnailJob expiry(final long expiry) { if (expiry > 0) { this.expiry = expiry; } return this; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
* can be combined to implement advanced ranking strategies. */ public abstract class RankFusionSearcher { /** The name of this searcher, lazily initialized. */ protected String name; /** * Default constructor for creating a new rank fusion searcher instance. * This constructor initializes the searcher with default values. * The searcher name will be lazily initialized when first accessed. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ClRuntimeException.java
*/ public ClRuntimeException(final String messageCode) { this(messageCode, new Object[0], null); } /** * Creates {@link ClRuntimeException}. * * @param messageCode message code * @param args arguments for messages */ public ClRuntimeException(final String messageCode, final Object[] args) { this(messageCode, args, null); } /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 3.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/MoreCollectors.java
List<T> extras; final @Nullable Supplier<? extends RuntimeException> exceptionSupplier; ToOptionalState(@Nullable Supplier<? extends RuntimeException> exceptionSupplier) { this.element = null; this.extras = emptyList(); this.exceptionSupplier = exceptionSupplier; } RuntimeException multiples(boolean overflow) { if (exceptionSupplier != null) { throw exceptionSupplier.get();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 18 16:22:33 GMT 2026 - 6.1K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.8.md
until all results are retrieved. The resulting list is identical to a list call that does not perform chunking, thanks to capabilities provided by etcd3. This allows the server to use less memory and CPU when very large lists are returned. This feature is gated as APIListChunking and is not enabled by default. The 1.9 release will begin using this by default.([#48921](https://github.com/kubernetes/kubernetes/pull/48921)) * Pods that are marked for deletion and have exceeded their grace...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Feb 20 15:45:02 GMT 2024 - 312.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/AbstractMultimap.java
public int hashCode() { return Sets.hashCodeImpl(this); } @Override public boolean equals(@Nullable Object obj) { return Sets.equalsImpl(this, obj); } } abstract Iterator<Entry<K, V>> entryIterator(); Spliterator<Entry<K, V>> entrySpliterator() { return Spliterators.spliterator( entryIterator(), size(), (this instanceof SetMultimap) ? Spliterator.DISTINCT : 0); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/CollectionFuture.java
extends AggregateFuture<V, C> { /* * We access this field racily but safely. For discussion of a similar situation, see the comments * on the fields of TimeoutFuture. This field is slightly different from the fields discussed * there: cancel() never reads this field, only writes to it. That makes the race here completely * harmless, rather than just 99.99% harmless. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3.9K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java
Action actionWhenFirstParamIsNull; Action actionWhenSecondParamIsNull; public TwoArg(Action actionWhenFirstParamIsNull, Action actionWhenSecondParamIsNull) { this.actionWhenFirstParamIsNull = actionWhenFirstParamIsNull; this.actionWhenSecondParamIsNull = actionWhenSecondParamIsNull; } /** Method that decides how to react to parameters. */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 47.9K bytes - Click Count (0)