- Sort Score
- Result 10 results
- Languages All
Results 741 - 750 of 2,210 for default (0.05 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
protected long requestedTime; /** Unique identifier for this search query session. */ protected String queryId; /** * Default constructor for creating a new SearchRenderData instance. */ public SearchRenderData() { // Default constructor } /** * Sets the list of search result documents. * * @param documentItems The list of search result documents
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
import org.codelibs.fess.crawler.transformer.Transformer; import org.codelibs.fess.crawler.util.CrawlingParameterUtil; import jakarta.annotation.Resource; /** * <p> * {@link DefaultResponseProcessor} is a default implementation of {@link ResponseProcessor}. * It processes the response data based on the HTTP status code and configured transformer. * </p> * * <p>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSocketFactory.kt
return configureSocket(socket) } @Throws(IOException::class) protected open fun configureSocket(socket: Socket): Socket { // No-op by default. return socket }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatRequest.java
* Used to maintain active witness registrations. */ public class WitnessHeartbeatRequest { /** * Creates a new witness heartbeat request. */ public WitnessHeartbeatRequest() { // Default constructor } private String registrationId; private long sequenceNumber; private byte[] contextHandle; /** * Gets the registration ID. * * @return the registration ID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployer.java
* @param artifacts the collection of artifacts to deploy * @throws ArtifactDeployerException if the deployment failed * @throws IllegalArgumentException if an argument is {@code null} or invalid */ default void deploy( @Nonnull Session session, @Nonnull RemoteRepository repository, @Nonnull Collection<ProducedArtifact> artifacts) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchainsBuilder.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @deprecated instead use {@link org.apache.maven.toolchain.building.DefaultToolchainsBuilder} */ @Deprecated @Named("default") @Singleton public class DefaultToolchainsBuilder implements ToolchainsBuilder { private final Logger logger = LoggerFactory.getLogger(getClass()); @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableSet.java
* override {@code addAll} as well, either providing your own implementation, or delegating to the * provided {@code standardAddAll} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingNavigableSet}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertNotNull(configWithDefaults.getMinimumVersion()); assertNotNull(configWithDefaults.getMaximumVersion()); } @Test @DisplayName("Test default constructor") void testDefaultConstructor() throws CIFSException { BaseConfiguration defaultConfig = new TestableBaseConfiguration(); assertNotNull(defaultConfig.getRandom(), "Random should not be null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
// Test with property that doesn't exist and default value cmdList.clear(); execJob.testAddSystemProperty(cmdList, "non.existent.property", "default.value", null); assertEquals(1, cmdList.size()); assertEquals("-Dnon.existent.property=default.value", cmdList.get(0)); // Test with property that doesn't exist and no default value cmdList.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)