- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 833 for _infop (0.93 sec)
-
src/main/java/jcifs/dcerpc/msrpc/netdfs.idl
[string] wchar_t *dfs_name; } DfsInfo300; typedef struct { uint32_t count; [size_is(count)] DfsInfo300 *s; } DfsEnumArray300; typedef union { [case(1)] DfsEnumArray1 *info1; [case(3)] DfsEnumArray3 *info3; [case(200)] DfsEnumArray200 *info200; [case(300)] DfsEnumArray300 *info300; } DfsEnumInfo; typedef struct { uint32_t level, [switch_is(level)] DfsEnumInfo e; } DfsEnumStruct;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
FileNotifyInformation info1 = notifications.get(0); assertEquals(FileNotifyInformation.FILE_ACTION_ADDED, info1.getAction()); assertEquals("test1.txt", info1.getFileName()); // Verify second notification FileNotifyInformation info2 = notifications.get(1); assertEquals(FileNotifyInformation.FILE_ACTION_MODIFIED, info2.getAction());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
cmd/erasure-multipart.go
var pinfos []*ObjectPartInfo for idx := range disks { if len(objectPartInfos[idx]) != len(partMetaPaths) { partMetaQuorumMap[partMetaPaths[pidx]]++ continue } pinfo := objectPartInfos[idx][pidx] if pinfo != nil && pinfo.ETag != "" { pinfos = append(pinfos, pinfo) partMetaQuorumMap[pinfo.ETag]++ continue }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 47.3K bytes - Viewed (0) -
cmd/storage-rest-client.go
if err != nil { return info, toStorageErr(err) } info = *infop if info.Error != "" { return info, toStorageErr(errors.New(info.Error)) } return info, nil }, ) return client.diskInfoCache.GetWithCtx(ctx) } // MakeVolBulk - create multiple volumes in a bulk operation. func (client *storageRESTClient) MakeVolBulk(ctx context.Context, volumes ...string) (err error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:38:41 UTC 2025 - 30.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
assertTrue(info1.equals(info2)); assertTrue(info2.equals(info1)); } @Test @DisplayName("Test equals method with different netName") void testEqualsWithDifferentNetName() { SmbShareInfo info1 = new SmbShareInfo("Share1", 0, "Remark"); SmbShareInfo info2 = new SmbShareInfo("Share2", 0, "Remark"); // Different netName assertFalse(info1.equals(info2));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
FileEndOfFileInformation info1 = new FileEndOfFileInformation(); FileEndOfFileInformation info2 = new FileEndOfFileInformation(); int bytes1 = info1.decode(buffer, 0, 8); int bytes2 = info2.decode(buffer, 0, 8); assertEquals(8, bytes1); assertEquals(8, bytes2); assertEquals(info1.toString(), info2.toString()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
cmd/erasure.go
return nil } info, err := disks[index].DiskInfo(context.TODO(), DiskInfoOptions{Metrics: metrics}) di.DrivePath = info.MountPath di.TotalSpace = info.Total di.UsedSpace = info.Used di.AvailableSpace = info.Free di.UUID = info.ID di.Major = info.Major di.Minor = info.Minor di.RootDisk = info.RootDisk di.Healing = info.Healing di.Scanning = info.Scanning
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/PersistentHandleManagerTest.java
assertEquals(2, manager.getHandleCount()); HandleInfo info1 = manager.getHandleByGuid(guid1); HandleInfo info2 = manager.getHandleByGuid(guid2); assertNotNull(info1); assertNotNull(info2); assertNotEquals(info1.getPath(), info2.getPath()); assertNotEquals(info1.getType(), info2.getType()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl
} ShareInfoCtr502; typedef [switch_type(int)] union { [case(0)] ShareInfo0 *info0; [case(1)] ShareInfo1 *info1; [case(502)] ShareInfo502 *info1; } ShareInfo; typedef [switch_type(int)] union { [case(0)] ShareInfoCtr0 *info0; [case(1)] ShareInfoCtr1 *info1; [case(502)] ShareInfoCtr502 *info1; } ShareCtr; [op(0x0f)] int ShareEnumAll([in,string,unique] wchar_t *servername,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
netdfs.DfsInfo3 info3 = new netdfs.DfsInfo3(); info3.path = "dfs_path"; info3.comment = "dfs_comment"; info3.state = netdfs.DFS_VOLUME_FLAVOR_AD_BLOB; info3.num_stores = 1; info3.stores = new netdfs.DfsStorageInfo[1]; info3.stores[0] = new netdfs.DfsStorageInfo(); info3.stores[0].state = netdfs.DFS_STORAGE_STATE_ACTIVE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0)