Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,033 for blockn (0.28 sec)

  1. src/internal/chacha8rand/rand_test.go

    	old := Seed(&s)
    	s.Reseed()
    	if Seed(&s) == old {
    		t.Errorf("Reseed did not change seed")
    	}
    }
    
    func BenchmarkBlock(b *testing.B) {
    	var seed [4]uint64
    	var blocks [32]uint64
    
    	for i := 0; i < b.N; i++ {
    		Block(&seed, &blocks, 0)
    	}
    	b.SetBytes(32 * 8)
    }
    
    func TestBlockGeneric(t *testing.T) {
    	var b1, b2 [32]uint64
    	s := seed // byte seed
    	seed := [4]uint64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. src/go/printer/gobuild.go

    		block = append(block, "//go:build "...)
    		block = append(block, x.String()...)
    		block = append(block, tabwriter.Escape, '\n')
    		if len(p.plusBuild) > 0 {
    			lines, err := constraint.PlusBuildLines(x)
    			if err != nil {
    				lines = []string{"// +build error: " + err.Error()}
    			}
    			for _, line := range lines {
    				block = append(block, tabwriter.Escape)
    				block = append(block, line...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildActionExecuterTest.groovy

            instant.resultAvailable < instant.resultReceived
        }
    
        def "run() blocks until result is available"() {
            GradleProject result = Mock()
    
            given:
            asyncConnection.run(!null, !null) >> { args ->
                def handler = args[1]
                start {
                    thread.block()
                    instant.resultAvailable
                    handler.onComplete(result)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

                operation.failure {
                    thread.blockUntil.running
                    thread.block()
                    lifecycle.use {}
                }
            }
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot use [service] as it is currently stopping.'
        }
    
        def "stop() blocks while service is in use"() {
            when:
            async {
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore.go

    			}
    		}
    		// walk to previous store
    		if v.Op == OpPhi {
    			// At start of block.  Move on to next block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			// (Even if it isn't the first in the current b.Values order.)
    			continue
    		}
    		for _, a := range v.Args {
    			if a.Block == b && a.Type.IsMemory() {
    				v = a
    				goto walkloop
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K 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. 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)
  8. src/cmd/compile/internal/ssa/regalloc.go

    	// mask of registers used since the start of the current block
    	usedSinceBlockStart regMask
    
    	// mask of registers used in the current instruction
    	tmpused regMask
    
    	// current block we're working on
    	curBlock *Block
    
    	// cache of use records
    	freeUseRecords *use
    
    	// endRegs[blockid] is the register state at the end of each block.
    	// encoded as a set of endReg records.
    	endRegs [][]endReg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultModelBuilderTest.groovy

            instant.resultAvailable < instant.resultReceived
        }
    
        def "get() blocks until model is available"() {
            GradleProject result = Mock()
    
            given:
            asyncConnection.run(!null, !null) >> { args ->
                def handler = args[1]
                start {
                    thread.block()
                    instant.resultAvailable
                    handler.onComplete(result)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	}
    }
    
    // findLastMems maps block ids to last memory-output op in a block, if any.
    func findLastMems(f *Func) []*Value {
    
    	var stores []*Value
    	lastMems := f.Cache.allocValueSlice(f.NumBlocks())
    	defer f.Cache.freeValueSlice(lastMems)
    	storeUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(storeUse)
    	for _, b := range f.Blocks {
    		// Find all the stores in this block. Categorize their uses:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top