Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dup3 (0.17 sec)

  1. cmd/xl-storage-format-v2.go

    	}
    
    	// Sanity check. Enable if duplicates show up.
    	if false {
    		found := make(map[[16]byte]struct{})
    		for _, ver := range merged {
    			if _, ok := found[ver.header.VersionID]; ok {
    				panic("found dupe")
    			}
    			found[ver.header.VersionID] = struct{}{}
    		}
    	}
    	return merged
    }
    
    type xlMetaBuf []byte
    
    // ToFileInfo converts xlMetaV2 into a common FileInfo datastructure
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  2. cmd/erasure-object.go

    				// delete marker, if not add a new version for this delete
    				// marker.
    				if versioned {
    					vr.VersionID = mustGetUUID()
    				}
    			}
    		}
    		// De-dup same object name to collect multiple versions for same object.
    		v, ok := versionsMap[objects[i].ObjectName]
    		if ok {
    			v.Versions = append(v.Versions, vr)
    		} else {
    			v = FileInfoVersions{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /*
            public void testPluginConfigDuplicate()
            throws Exception
        {
            PomTestWrapper pom = buildPom( "plugin-config-duplicate/dup" );
        }
        */
        @Test
        void testSingleConfigurationInheritance() throws Exception {
            PomTestWrapper pom = buildPom("single-configuration-inheritance");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top