- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 377 for adts (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
embeddedFile = fileSpec.getEmbeddedFile(); } } return embeddedFile; } /** * Extracts metadata from the PDF document and adds it to the extraction result. * @param document the PDF document * @param extractData the extraction data to add metadata to */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
invalidPropertyNames.add(propertyName); } else { propDesc.setWriteMethod(writeMethod); } } /** * Adds a {@link PropertyDesc}. * * @param propertyDesc * {@link PropertyDesc} */ protected void addPropertyDesc(final PropertyDescImpl propertyDesc) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt
interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof. "Distribute" means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy. "Source Code" means the form of a Program preferred for making modifications, including but not limited to software source code,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Jun 04 06:45:16 UTC 2024 - 13.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
if (newCapacity < 0) { newCapacity = Integer.MAX_VALUE; // guaranteed to be >= newCapacity } return newCapacity; } Builder() {} /** * Adds {@code element} to the {@code ImmutableCollection} being built. * * <p>Note that each builder class covariantly returns its own type from this method. * * @param element the element to add
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
} return value; } /** * Adds an attribute to the factory. * @param name The name of the attribute. * @param value The value of the attribute. */ public void addAttribute(final String name, final Object value) { attributeMap.put(name, value); } /** * Adds a feature to the factory. * @param key The key of the feature.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java
protected long defaultMaxLength = 10L * 1024L * 1024L; /** Map to store maximum content lengths for specific MIME types */ protected Map<String, Long> maxLengthMap = new HashMap<>(); /** * Adds a maximum content length for a specific MIME type. * @param mimeType The MIME type for which to set the maximum length * @param maxLength The maximum content length in bytes
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
/** Version of plus for use in retryUpdate */ @Override final long fn(long v, long x) { return v + x; } /** Creates a new adder with initial sum of zero. */ public LongAdder() {} /** * Adds the given value. * * @param x the value to add */ @Override public void add(long x) { Cell[] as; long b, v; int[] hc; Cell a; int n;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
return storeUserInfo(key); } }); searchLogLogger = LogManager.getLogger(loggerName); } /** * Adds a search log to the queue. * * @param params The search request parameters. * @param requestedTime The time the search was requested. * @param queryId The ID of the search query.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
internal/lru/lru.go
c.onEvict(k, v.Value) } delete(c.items, k) } for _, b := range c.buckets { for _, ent := range b.entries { delete(b.entries, ent.Key) } } c.evictList.Init() } // Add adds a value to the cache. Returns true if an eviction occurred. // Returns false if there was no eviction: the item was already in the cache, // or the size was not exceeded. func (c *LRU[K, V]) Add(key K, value V) (evicted bool) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
/** * Map of origin patterns to their corresponding CORS handlers. */ protected Map<String, CorsHandler> handerMap = new HashMap<>(); /** * Adds a CORS handler for the specified origin. * * @param origin the origin pattern (can be "*" for wildcard) * @param handler the CORS handler to associate with the origin */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0)