- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for pinfos (0.07 sec)
-
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) -
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) -
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/smb2/multichannel/NetworkInterfaceInfoTest.java
NetworkInterfaceInfo info1 = new NetworkInterfaceInfo(testAddress, 1000); info1.setInterfaceIndex(1); NetworkInterfaceInfo info2 = new NetworkInterfaceInfo(testAddress, 1000); info2.setInterfaceIndex(1); NetworkInterfaceInfo info3 = new NetworkInterfaceInfo(testAddress, 1000); info3.setInterfaceIndex(2); assertEquals(info1, info2);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 4.9K 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) -
cmd/bucket-replication.go
if rinfos.Action() == replicateAll { opType = replication.ObjectReplicationType } for _, rinfo := range rinfos.Targets { if rinfo.ReplicationStatus != rinfo.PrevReplicationStatus { rinfo.OpType = opType // update optype to reflect correct operation. globalReplicationStats.Load().Update(bucket, rinfo, rinfo.ReplicationStatus, rinfo.PrevReplicationStatus) } } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
assertEquals(20, bytesRead); assertNotNull(response.getInfo()); // The info should be created with zero values SmbInfoAllocation info = (SmbInfoAllocation) response.getInfo(); assertEquals(0, info.getCapacity()); assertEquals(0, info.getFree()); } @Test void testReadDataWireFormat_BufferTooSmall() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
cmd/erasure-server-pool.go
return pinfo, z.poolsWithObject(poolObjInfos, opts), nil } defPool = pinfo if !isErrObjectNotFound(pinfo.Err) && !isErrVersionNotFound(pinfo.Err) { return pinfo, noReadQuorumPools, pinfo.Err } // No object exists or its a delete marker, // check objInfo to confirm. if pinfo.ObjInfo.DeleteMarker && pinfo.ObjInfo.Name != "" { return pinfo, noReadQuorumPools, nil } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.1K 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) -
schema/relationship_test.go
type InfoRelation struct { ID int Code string Info1 []*Info1 `gorm:"foreignkey:Code;references:Code"` Info2 []*Info2 `gorm:"foreignkey:Code;references:Code"` } type Info1 struct { CreatedAt time.Time UpdatedAt time.Time Code string Relation []*InfoRelation `gorm:"foreignkey:Code;references:Code"` } type Info2 struct { CreatedAt time.Time UpdatedAt time.Time
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Aug 18 11:44:52 UTC 2025 - 26.5K bytes - Viewed (0)