- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 697 for entiers (0.05 sec)
-
cmd/os_windows.go
// directory symlinks are ignored. continue } case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0: name += SlashSeparator } count-- entries = append(entries, name) } return entries, nil } func globalSync() { // no-op on windows } func syscallErrToFileErr(dirPath string, err error) error { switch err { case nil: return nil
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
@Override public Collection<Entry<K, V>> entries() { return super.entries(); } @Override Collection<Entry<K, V>> createEntries() { if (this instanceof SetMultimap) { return new EntrySet(); } else { return new Entries(); } } /** * Returns an iterator across all key-value map entries, used by {@code entries().iterator()} and
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
public SamrSamEntry[] entries; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(this.count); _dst.enc_ndr_referent(this.entries, 1); if (this.entries != null) { _dst = _dst.deferred; final int _entriess = this.count;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
public SamrSamEntry[] entries; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(count); _dst.enc_ndr_referent(entries, 1); if (entries != null) { _dst = _dst.deferred; final int _entriess = count; _dst.enc_ndr_long(_entriess);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
/** * Fetches more entries from the server. * * @return true if more entries were fetched, false otherwise * @throws CIFSException if an error occurs during fetching */ protected abstract boolean fetchMore() throws CIFSException; /** * Gets the current batch of results. * * @return array of file entries in the current batch */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
directoryLeaseManager.requestDirectoryLease(dir3, DirectoryLeaseState.DIRECTORY_FULL, DirectoryCacheScope.RECURSIVE_TREE); // Verify all cache entries exist assertNotNull(directoryLeaseManager.getCacheEntry(dir1)); assertNotNull(directoryLeaseManager.getCacheEntry(dir2)); assertNotNull(directoryLeaseManager.getCacheEntry(dir3));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
FileEntry[] entries = dfsRootEnum.getEntries(); assertNotNull(entries); assertEquals(2, entries.length); assertInstanceOf(SmbShareInfo.class, entries[0]); assertNull(entries[0].getName()); assertEquals(8, entries[0].getType()); // TYPE_SHARE constant value assertInstanceOf(SmbShareInfo.class, entries[1]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
`IOException` that reports the call as canceled. The triggering exception is still delivered to the thread's `UncaughtExceptionHandler`. * Fix: Don't evict incomplete entries when iterating the cache. We had a bug where iterating `Cache.urls()` would prevent in-flight entries from being written. ## Version 3.14.3 _2019-09-10_ * Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
} /** * Constructs a new entry array where each duplicated key from the original appears only once, at * its first position but with its final value. The {@code duplicates} map is modified. * * @param entries the original array of entries including duplicates * @param n the number of valid entries in {@code entries} * @param newN the expected number of entries once duplicates are removed
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 15.8K bytes - Viewed (0) -
cmd/bucket-replication-utils_gen.go
var zb0002 uint32 zb0002, err = dc.ReadMapHeader() if err != nil { err = msgp.WrapError(err, "Entries") return } if z.Entries == nil { z.Entries = make(map[string]MRFReplicateEntry, zb0002) } else if len(z.Entries) > 0 { for key := range z.Entries { delete(z.Entries, key) } } for zb0002 > 0 { zb0002-- var za0001 string
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 03 06:45:06 UTC 2025 - 59.8K bytes - Viewed (0)