- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 700 for counts (0.03 sec)
-
src/main/java/jcifs/smb/SIDCacheImpl.java
throw new SmbException(rpc.retval, false); } final Map<jcifs.SID, List<jcifs.SID>> map = new HashMap<>(); for (int ei = 0; ei < rpc.sam.count; ei++) { final samr.SamrSamEntry entry = rpc.sam.entries[ei]; final SID[] mems = getGroupMemberSids(tc, authorityServerName, domSid, entry.idx, flags);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
cmd/config.go
if err != nil { // ignore history file that cannot be loaded. continue } cfgEntry.Data = string(data) } configHistory = append(configHistory, cfgEntry) count-- if count == 0 { break } } if !res.IsTruncated { // We are done here break } marker = res.NextMarker } sort.Slice(configHistory, func(i, j int) bool {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/LinkedListMultimap.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopy.java
private final SrvCopychunk[] chunks; /** * Constructs a server copy chunk operation request * @param sourceKey the resume key identifying the source file * @param chunks the array of copy chunk descriptors */ public SrvCopychunkCopy(final byte[] sourceKey, final SrvCopychunk... chunks) { this.sourceKey = sourceKey; this.chunks = chunks; } /** * {@inheritDoc}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/distributed/decom-encrypted-kes.sh
expanded_policy_count=$(./mc admin policy list myminio/ | wc -l) if [ "$user_count" -ne "$expanded_user_count" ]; then echo "BUG: original user count differs from expanded setup" exit 1 fi if [ "$policy_count" -ne "$expanded_policy_count" ]; then echo "BUG: original policy count differs from expanded setup" exit 1 fi ./mc version info myminio/versioned | grep -q "versioning is enabled" ret=$? if [ $ret -ne 0 ]; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 7.1K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
void testDecodeVariousChunksWritten(int chunks) throws SMBProtocolDecodingException { byte[] buffer = createValidCopyChunkResponse(chunks, 0, 0); int bytesDecoded = response.decode(buffer, 0, buffer.length); assertEquals(12, bytesDecoded); assertEquals(chunks, response.getChunksWritten()); } @ParameterizedTest
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
AtomicInteger count = new AtomicInteger(); String[] queryLogs = new String[] { field + ":検索", field + ":fess", field + ":検索エンジン" }; @Override public QueryLog read() { if (count.get() >= queryLogs.length) { return null; } return new QueryLog(queryLogs[count.getAndIncrement()], null); }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: by Click Count (asc) */ public static final String LABELS_search_result_sort_click_count_asc = "{labels.search_result_sort_click_count_asc}"; /** The key of the message: by Click Count (desc) */ public static final String LABELS_search_result_sort_click_count_desc = "{labels.search_result_sort_click_count_desc}"; /** The key of the message: by Favorite Count (asc) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
} arMap.put(accessResult.getUrl(), accessResult); } } /** * Gets the count of access results for the specified session. * * @param sessionId the session ID * @return the count of access results */ @Override public int getCount(final String sessionId) { return dataHelper.getAccessResultMap(sessionId).size();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
* @return a string containing the execution result with the number of deleted files or error message */ public String execute() { try { final long count = ComponentUtil.getThumbnailManager().purge(getExpiry()); return "Deleted " + count + " thumbnail files."; } catch (final Exception e) { logger.error("Failed to purge thumbnails.", e); return e.getMessage(); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0)