- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 72 for combining (0.11 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java
* This is a required field for identifying which dictionary entry to update. */ @Required @ValidateTypeFailure public Long id; /** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. * * @return A string in the format "dictId:id" for display purposes */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
*/ boolean isIntermediate(); /** * Combine this referral with another to form a chain * * @param next the referral to combine with * @return new referral, combining a chain of referrals */ DfsReferralDataInternal combine(DfsReferralData next); /** * Append another referral to this referral chain * * @param dr the referral to append
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriter.java
*/ SuggestWriterResult deleteByQuery(Client client, SuggestSettings settings, String index, QueryBuilder queryBuilder); /** * Merges an array of SuggestItem objects by combining items with the same ID. * * <p>This method iterates through the provided array of SuggestItem objects and merges * items that have the same ID. The merged items are added to a new list, which is then
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
holder.set(oldValue); return updaterFunction.applyAsLong(oldValue); }); return holder.get(); } /** * Updates the value currently associated with {@code key} by combining it with {@code x} via the * specified accumulator function, returning the new value. The previous value associated with * {@code key} (or zero, if there is none) is passed as the first argument to {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
assertTrue(isPowerOfTwo(SecurityInfo.SCOPE_SECURITY_INFO)); assertTrue(isPowerOfTwo(SecurityInfo.BACKUP_SECURITY_INFO)); } @Test @DisplayName("Test combining security info flags") void testCombiningFlags() { // Test that flags can be combined using bitwise OR int combined = SecurityInfo.OWNER_SECURITY_INFO | SecurityInfo.GROUP_SECURITY_INFO;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0) -
docs/compression/README.md
> ```bash > export MINIO_COMPRESSION_ENABLE="on" > export MINIO_COMPRESSION_EXTENSIONS="*" > export MINIO_COMPRESSION_MIME_TYPES="*" > ``` ### 3. Compression + Encryption Combining encryption and compression is not safe in all setups. This is particularly so if the compression ratio of your content reveals information about it. See [CRIME TLS](https://en.wikipedia.org/wiki/CRIME) as an example of this.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.2K bytes - Viewed (0) -
docs/en/docs/history-design-future.md
But at some point, there was no other option than creating something that provided all these features, taking the best ideas from previous tools, and combining them in the best way possible, using language features that weren't even available before (Python 3.6+ type hints). </blockquote> ## Investigation { #investigation }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/CollectorTester.java
Collector<T, A, R> collector, BiPredicate<? super R, ? super R> equivalence) { this.collector = checkNotNull(collector); this.equivalence = checkNotNull(equivalence); } /** * Different orderings for combining the elements of an input array, which must all produce the * same result. */ enum CollectStrategy { /** Get one accumulator and accumulate the elements into it sequentially. */ SEQUENTIAL {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu May 15 21:47:56 UTC 2025 - 6.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* The default implementation returns an empty list. */ default List<String> excludes() { return List.of(); } /** * {@return a matcher combining the include and exclude patterns}. * If the user did not specify any includes, the given {@code defaultIncludes} are used. * These defaults depend on the plugin.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
@Nested @DisplayName("Bitwise Operations Tests") class BitwiseOperationsTests { @Test @DisplayName("Should support bitwise operations for access mask combining") void shouldSupportBitwiseOperations() { // Test combining read and write permissions int readWrite = ACE.FILE_READ_DATA | ACE.FILE_WRITE_DATA; assertEquals(0x00000003, readWrite, "Combined read/write should be 0x00000003");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0)