Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Sizes (0.05 sec)

  1. cmd/xl-storage.go

    			return sizeSummary{}, errSkipFile
    		}
    
    		sizeS := sizeSummary{}
    		for _, tier := range globalTierConfigMgr.ListTiers() {
    			if sizeS.tiers == nil {
    				sizeS.tiers = make(map[string]tierStats)
    			}
    			sizeS.tiers[tier.Name] = tierStats{}
    		}
    		if sizeS.tiers != nil {
    			sizeS.tiers[storageclass.STANDARD] = tierStats{}
    			sizeS.tiers[storageclass.RRS] = tierStats{}
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    		buf2[n-1] = '\x00'
    	}
    }
    
    func BenchmarkEqualBothUnaligned(b *testing.B) {
    	sizes := []int{64, 4 << 10}
    	if !isRaceBuilder {
    		sizes = append(sizes, []int{4 << 20, 64 << 20}...)
    	}
    	maxSize := 2 * (sizes[len(sizes)-1] + 8)
    	if len(bmbuf) < maxSize {
    		bmbuf = make([]byte, maxSize)
    	}
    
    	for _, n := range sizes {
    		for _, off := range []int{0, 1, 4, 7} {
    			buf1 := bmbuf[off : off+n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	}
    }
    
    // Add padding of given size to fld.
    func (c *typeConv) pad(fld []*ast.Field, sizes []int64, size int64) ([]*ast.Field, []int64) {
    	n := len(fld)
    	fld = fld[0 : n+1]
    	fld[n] = &ast.Field{Names: []*ast.Ident{c.Ident("_")}, Type: c.Opaque(size)}
    	sizes = sizes[0 : n+1]
    	sizes[n] = size
    	return fld, sizes
    }
    
    // Struct conversion: return Go and (gc) C syntax for type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		// The LoweredQuad code generation
    		// generates STXV instructions on
    		// power9. The Short variation is used
    		// if no loop is generated.
    
    		// sizes >= 64 generate a loop as follows:
    
    		// Set up loop counter in CTR, used by BC
    		// XXLXOR clears VS32
    		//       XXLXOR VS32,VS32,VS32
    		//       MOVD len/64,REG_TMP
    		//       MOVD REG_TMP,CTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    	size := 0
    
    	// We use the ratio between the geometric mean of the previous key sizes and
    	// the current size to determine if there should be a break in the alignment.
    	// To compute the geometric mean we accumulate the ln(size) values (lnsum)
    	// and the number of sizes included (count).
    	lnsum := 0.0
    	count := 0
    
    	// print all list elements
    	prevLine := prev.Line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    // Memory allocator.
    //
    // This was originally based on tcmalloc, but has diverged quite a bit.
    // http://goog-perftools.sourceforge.net/doc/tcmalloc.html
    
    // The main allocator works in runs of pages.
    // Small allocation sizes (up to and including 32 kB) are
    // rounded to one of about 70 size classes, each of which
    // has its own free set of objects of exactly that size.
    // Any free page of memory can be split into a set of objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    			}
    		}
    
    		// Since we are comparing pools that may have a different number of sets
    		// we multiply by the number of sets in the pool.
    		// This will compensate for differences in set sizes
    		// when choosing destination pool.
    		// Different set sizes are already compensated by less disks.
    		available *= uint64(nSets[i])
    
    		serverPools[i] = poolAvailableSpace{
    			Index:      i,
    			Available:  available,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	ctxt.Out.Write32(0) // flags2
    	return int(sh.Size)
    }
    
    func elfnote(sh *ElfShdr, startva uint64, resoff uint64, sizes ...int) int {
    	n := resoff % 4
    	// if section contains multiple notes (as is the case with FreeBSD signature),
    	// multiple note sizes can be specified
    	for _, sz := range sizes {
    		n += 3*4 + uint64(sz)
    	}
    
    	sh.Type = uint32(elf.SHT_NOTE)
    	sh.Flags = uint64(elf.SHF_ALLOC)
    	sh.Addralign = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                         string.
    //
    // Integer types:
    //   TypeWithSize   - maps an integer to a int type.
    //   Int32, UInt32, Int64, UInt64, TimeInMillis
    //                  - integers of known sizes.
    //   BiggestInt     - the biggest signed integer type.
    //
    // Command-line utilities:
    //   GTEST_FLAG()       - references a flag.
    //   GTEST_DECLARE_*()  - declares a flag.
    //   GTEST_DEFINE_*()   - defines a flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                         string.
    //
    // Integer types:
    //   TypeWithSize   - maps an integer to a int type.
    //   Int32, UInt32, Int64, UInt64, TimeInMillis
    //                  - integers of known sizes.
    //   BiggestInt     - the biggest signed integer type.
    //
    // Command-line utilities:
    //   GTEST_FLAG()       - references a flag.
    //   GTEST_DECLARE_*()  - declares a flag.
    //   GTEST_DEFINE_*()   - defines a flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top