Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 965 for blockAsm (0.24 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

        fun `ignores unresolved pluginsManagement blocks before plugins`() {
            val result = pluginsSchema.runChecks(
                """
                pluginManagement { }
                pluginManagement { }
                plugins { }
                """.trimIndent()
            )
    
            assertTrue(result.isEmpty())
        }
    
        @Test
        fun `reports all order violations for plugins blocks`() {
            val result = pluginsSchema.runChecks(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/state/state.go

    func (as ContainerMemoryAssignments) Clone() ContainerMemoryAssignments {
    	clone := make(ContainerMemoryAssignments)
    	for pod := range as {
    		clone[pod] = make(map[string][]Block)
    		for container, blocks := range as[pod] {
    			clone[pod][container] = append([]Block{}, blocks...)
    		}
    	}
    	return clone
    }
    
    // Reader interface used to read current memory/pod assignment state
    type Reader interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. pkg/volume/util/fs/fs.go

    	if err != nil {
    		return 0, 0, 0, 0, 0, 0, err
    	}
    
    	// Available is blocks available * fragment size
    	available := int64(statfs.Bavail) * int64(statfs.Bsize)
    
    	// Capacity is total block count * fragment size
    	capacity := int64(statfs.Blocks) * int64(statfs.Bsize)
    
    	// Usage is block being used * fragment size (aka block size).
    	usage := (int64(statfs.Blocks) - int64(statfs.Bfree)) * int64(statfs.Bsize)
    
    	inodes := int64(statfs.Files)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. src/crypto/cipher/cipher.go

    package cipher
    
    // A Block represents an implementation of block cipher
    // using a given key. It provides the capability to encrypt
    // or decrypt individual blocks. The mode implementations
    // extend that capability to streams of blocks.
    type Block interface {
    	// BlockSize returns the cipher's block size.
    	BlockSize() int
    
    	// Encrypt encrypts the first block in src into dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. docs/erasure/README.md

    a mathematical algorithm to reconstruct missing or corrupted data. MinIO uses Reed-Solomon code to shard objects into variable data and parity blocks. For example, in a 12 drive setup, an object can be sharded to a variable number of data and parity blocks across all the drives - ranging from six data and six parity blocks to ten data and two parity blocks.
    
    By default, MinIO shards the objects across N/2 data and N/2 parity drives. Though, you can use [storage classes](https://github.com/m...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v1.go

    	Distribution []int `json:"distribution"`
    	// Checksums holds all bitrot checksums of all erasure encoded blocks
    	Checksums []ChecksumInfo `json:"checksum,omitempty"`
    }
    
    // Equal equates current erasure info with newer erasure info.
    // returns false if one of the following check fails
    // - erasure algorithm is different
    // - data blocks are different
    // - parity blocks are different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. test/codegen/bmi.go

    		r = b
    	}
    	// amd64/v3:"CMOVQEQ",-"TESTQ",-"CALL"
    	return r * 2 // force return blocks joining
    }
    
    func isPowerOfTwoSelect32(x, a, b int32) int32 {
    	var r int32
    	// amd64/v3:"BLSRL",-"TESTL",-"CALL"
    	if isPowerOfTwo32(x) {
    		r = a
    	} else {
    		r = b
    	}
    	// amd64/v3:"CMOVLEQ",-"TESTL",-"CALL"
    	return r * 2 // force return blocks joining
    }
    
    func isPowerOfTwoBranch64(x int64, a func(bool), b func(string)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlocksRenderer.java

            parent.appendChild(summarySection);
    
            Element title = document.createElement("title");
            summarySection.appendChild(title);
            title.appendChild(document.createTextNode("Script blocks"));
    
            Collection<BlockDoc> classBlocks = classDoc.getClassBlocks();
            if (!classBlocks.isEmpty()) {
                Element table = document.createElement("table");
                summarySection.appendChild(table);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    func (f *File) addVariables(w io.Writer) {
    	if *pkgcfg != "" {
    		return
    	}
    	// Self-check: Verify that the instrumented basic blocks are disjoint.
    	t := make([]block1, len(f.blocks))
    	for i := range f.blocks {
    		t[i].Block = f.blocks[i]
    		t[i].index = i
    	}
    	sort.Sort(blockSlice(t))
    	for i := 1; i < len(t); i++ {
    		if t[i-1].endByte > t[i].startByte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    		lc.livenessMap.UnsafeBlocks = nil
    	}
    	if lv.be == nil {
    		lv.be = make([]blockEffects, f.NumBlocks())
    	}
    
    	nblocks := int32(len(f.Blocks))
    	nvars := int32(len(vars))
    	bulk := bitvec.NewBulk(nvars, nblocks*7)
    	for _, b := range f.Blocks {
    		be := lv.blockEffects(b)
    
    		be.uevar = bulk.Next()
    		be.varkill = bulk.Next()
    		be.livein = bulk.Next()
    		be.liveout = bulk.Next()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top