- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 142 for profiling (0.14 sec)
-
src/main/java/org/codelibs/fess/api/BaseApiManager.java
import org.lastaflute.web.util.LaResponseUtil; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * Base implementation for API managers providing common functionality. * Abstract class that provides format detection and response handling for web APIs. */ public abstract class BaseApiManager implements WebApiManager {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSet.java
* methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change the * behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should * 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
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java
package org.apache.maven.api.services; import org.apache.maven.api.Service; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Service for detecting and providing information about the operating system (OS) * on which the application is running. * <p> * This service provides a platform-independent way to: * <ul>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Feb 10 14:12:18 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing failure URL records in the admin interface. * This form handles the editing of URLs that failed during crawling operations, * providing details about the failure for debugging and troubleshooting purposes. */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingBlockingDeque.java
* the behaviour of {@link #offer} which can lead to unexpected behaviour. In this case, you should * override {@code offer} as well, either providing your own implementation, or delegating to the * provided {@code standardOffer} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java
* a distinct value is taken from each parent contributing to * the final model of the project being assembled. There is no * overriding going on amongst the models being used in this test: * each model in the lineage is providing a value that is not present * anywhere else in the lineage. We are just making sure that values * down in the lineage are bubbling up where they should. * */ @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jun 04 10:35:11 UTC 2025 - 6.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMapEntry.java
* change the behavior of {@link #equals}, which can lead to unexpected behavior. In this case, you * should override {@code equals} as well, either providing your own implementation, or delegating * to the provided {@code standardEquals} method. * * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equals} to test
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.SIDCacheImpl; import jcifs.smb.SmbFile; import jcifs.smb.SmbNamedPipe; import jcifs.smb.SmbTransportPoolImpl; /** * Base implementation of CIFS context providing core functionality for SMB operations. * This class serves as the foundation for context implementations in the jCIFS library. * * @author mbechler */ public class BaseContext extends AbstractCIFSContext {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
* <p> * This is mainly used to parse files into objects such as Maven projects, * models, settings, or toolchains. The source implementation handles * all the details of accessing the underlying content while providing * a uniform API to consumers. * <p> * Sources can represent: * <ul> * <li>Local filesystem files</li> * <li>In-memory content</li> * <li>Database entries</li> * <li>Network resources</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
* @return The Azure AD user instance. */ public AzureAdUser getUser() { return new AzureAdUser(authResult); } /** * Azure AD user implementation providing user information and permissions. */ public static class AzureAdUser implements FessUser { private static final long serialVersionUID = 1L; /** User's group memberships. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0)