- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 1,936 for protected (0.04 sec)
-
guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java
.createTestSuite()); return suite; } private static TestStringMultisetGenerator unmodifiableMultisetGenerator() { return new TestStringMultisetGenerator() { @Override protected Multiset<String> create(String[] elements) { return unmodifiableMultiset(LinkedHashMultiset.create(asList(elements))); } @Override public List<String> order(List<String> insertionOrder) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 9.7K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
} protected AbstractArtifactResolutionException(String message, Artifact artifact) { this(message, artifact, null); } protected AbstractArtifactResolutionException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) { this(message, artifact, remoteRepositories, null); } protected AbstractArtifactResolutionException(Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 01 21:22:14 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
/** * Service class for label types. */ public class LabelTypeService extends FessAppService { /** The LabelType behavior. */ @Resource protected LabelTypeBhv labelTypeBhv; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */ public LabelTypeService() { super(); } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
* @param <T3> * The type of the third value */ public class Tuple3<T1, T2, T3> { /** The first value */ protected T1 value1; /** The second value */ protected T2 value2; /** The third value */ protected T3 value3; /** * Creates and returns a tuple of three values. * * @param <T1> * The type of the first value
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TarExtractor.java
private static final Logger logger = LogManager.getLogger(TarExtractor.class); /** * The archive stream factory. */ @Resource protected ArchiveStreamFactory archiveStreamFactory; /** * Maximum content size. */ protected long maxContentSize = -1; /** * Creates a new TarExtractor instance. */ public TarExtractor() { super(); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
return this.securityDescriptor; } @Override protected int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int writeParametersWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
/** * Data service for checking access results. */ @Resource protected OpenSearchDataService dataService; /** * Cache for session queues. */ protected Map<String, QueueHolder> sessionCache = new ConcurrentHashMap<>(); /** * The number of URLs to fetch when polling. */ protected int pollingFetchSize = 1000; /** * The maximum size of the crawling queue.Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
*/ protected static String getTomcatConfigPath() { return System.getProperty(TOMCAT_CONFIG_PATH); } /** * Sets up the web application context with Fess-specific configurations. * Configures the web resource root and cookie processor for the context. */ @Override protected void setupWebappContext() { super.setupWebappContext();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java
suite.addTest(testsForPriorityQueue()); return suite; } protected Collection<Method> suppressForArrayDeque() { return emptySet(); } protected Collection<Method> suppressForLinkedList() { return emptySet(); } protected Collection<Method> suppressForArrayBlockingQueue() { return emptySet(); } protected Collection<Method> suppressForConcurrentLinkedQueue() { return emptySet();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 16:28:01 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
protected static final String CLIENT_PREFIX = "client."; /** The config prefix. */ protected static final String CONFIG_PREFIX = "config."; /** The field config prefix. */ protected static final String FIELD_PREFIX = "field.config."; /** * Protected constructor. */ protected ParameterUtil() { // nothing } /** * Parses parameter string into a map.Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0)