Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for totalTime (0.24 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

                        id: '1450575490',
                        branch: 'master',
                        date: '1970-01-01',
                        commits: ['123456']
                    ]
                ],
                totalTime: [
                    [
                        label: '5.0-mockbaseline-1',
                        data: [[0, 1]]
                    ],
                    [
                        label: '5.0-mockbaseline-2',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_32bit.go

    	//
    	// This should be around 12 KiB or less.
    	totalSize := uintptr(0)
    	for l := 0; l < summaryLevels; l++ {
    		totalSize += (uintptr(1) << (heapAddrBits - levelShift[l])) * pallocSumBytes
    	}
    	totalSize = alignUp(totalSize, physPageSize)
    
    	// Reserve memory for all levels in one go. There shouldn't be much for 32-bit.
    	reservation := sysReserve(nil, totalSize)
    	if reservation == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/fuzz/mem.go

    		if err != nil {
    			f.Close()
    			os.Remove(f.Name())
    		}
    	}()
    
    	// Resize it to the correct size.
    	totalSize := sharedMemSize(size)
    	if err := f.Truncate(int64(totalSize)); err != nil {
    		return nil, err
    	}
    
    	// Map the file into memory.
    	removeOnClose := true
    	return sharedMemMapFile(f, totalSize, removeOnClose)
    }
    
    // header returns a pointer to metadata within the shared memory region.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. cmd/tier-last-day-stats.go

    	for i := range tierInfos {
    		lst, ok := l[tierInfos[i].Name]
    		if !ok {
    			continue
    		}
    		for hr, st := range lst.Bins {
    			tierInfos[i].DailyStats.Bins[hr] = madmin.TierStats{
    				TotalSize:   st.TotalSize,
    				NumVersions: st.NumVersions,
    				NumObjects:  st.NumObjects,
    			}
    		}
    		tierInfos[i].DailyStats.UpdatedAt = lst.UpdatedAt
    	}
    	return tierInfos
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pkg/volume/secret/secret.go

    			}
    			payload[ktp.Path] = fileProjection
    		}
    	}
    	return payload, nil
    }
    
    func totalSecretBytes(secret *v1.Secret) int {
    	totalSize := 0
    	for _, bytes := range secret.Data {
    		totalSize += len(bytes)
    	}
    
    	return totalSize
    }
    
    // secretVolumeUnmounter handles cleaning up secret volumes.
    type secretVolumeUnmounter struct {
    	*secretVolume
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. cmd/data-usage-utils.go

    	for tier, st := range dui.TierStats.Tiers {
    		metrics = append(metrics, MetricV2{
    			Description:    getClusterTransitionedBytesMD(),
    			Value:          float64(st.TotalSize),
    			VariableLabels: map[string]string{"tier": tier},
    		})
    		metrics = append(metrics, MetricV2{
    			Description:    getClusterTransitionedObjectsMD(),
    			Value:          float64(st.NumObjects),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top