- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 5,462 for PUBLIC (0.04 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
* plugin artifact resolution from repositories. * */ @Deprecated public class EmptyLifecycleExecutor implements LifecycleExecutor { @Override public MavenExecutionPlan calculateExecutionPlan(MavenSession session, String... tasks) { return new MavenExecutionPlan(null, new DefaultLifecycles()); } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SingleValueIterator.java
*/ public static <E> Iterable<E> iterable(final E value) { return () -> new SingleValueIterator<>(value); } /** * Constructs an instance. * * @param value the single value returned by the iterator */ public SingleValueIterator(final E value) { this.value = value; } @Override public boolean hasNext() { return hasNext;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeDisconnect.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/InvalidProjectModelException.java
import java.io.File; import org.apache.maven.project.validation.ModelValidationResult; /** * InvalidProjectModelException */ @Deprecated public class InvalidProjectModelException extends ProjectBuildingException { private ModelValidationResult validationResult; public InvalidProjectModelException(String projectId, String message, File pomLocation) { super(projectId, message, pomLocation); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
* @return the estimated memory size in bytes */ public long calculateDocumentSize(final Map<String, Object> dataMap) { return MemoryUtil.sizeOf(dataMap); } /** * Sets the maximum number of retry attempts for failed operations. * * @param maxRetryCount the maximum retry count */ public void setMaxRetryCount(final int maxRetryCount) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
/** * Admin action for Stemmer Override management. * */ public class AdminDictStemmeroverrideAction extends FessAdminAction { /** * Default constructor. */ public AdminDictStemmeroverrideAction() { super(); } /** * The role for this action. */ public static final String ROLE = "admin-dict";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
/** * Admin action for File Authentication management. * */ public class AdminFileauthAction extends FessAdminAction { /** * Default constructor. */ public AdminFileauthAction() { super(); } /** The role name for file authentication administration. */ public static final String ROLE = "admin-fileauth"; /** Logger for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java
import jakarta.annotation.Resource; /** * Admin action for Request Header management. * */ public class AdminReqheaderAction extends FessAdminAction { /** * Default constructor. */ public AdminReqheaderAction() { super(); } /** Role name for admin request header operations */ public static final String ROLE = "admin-reqheader";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
import jakarta.annotation.Resource; /** * Admin action for Role management. * */ public class AdminRoleAction extends FessAdminAction { /** * Default constructor. */ public AdminRoleAction() { super(); } /** Role name for admin role operations */ public static final String ROLE = "admin-role";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.2K bytes - Viewed (0) -
docs/features/events.md
} @Override public void callStart(Call call) { printEvent("callStart"); } @Override public void callEnd(Call call) { printEvent("callEnd"); } @Override public void dnsStart(Call call, String domainName) { printEvent("dnsStart"); } @Override public void dnsEnd(Call call, String domainName, List<InetAddress> inetAddressList) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0)