Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,901 for blockn (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

    task b {
        def files = configurations.b
        doLast {
            files.files
        }
    }
    task block1 {
        doLast {
            ${blockingServer.callFromBuild("block1")}
        }
    }
    block1.mustRunAfter a
    b.mustRunAfter block1
    
    task block2 {
        doLast {
            ${blockingServer.callFromBuild("block2")}
        }
    }
    block2.mustRunAfter b
    """
            // Ensure scripts are compiled
            run("help")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/tighten.go

    package ssa
    
    import "cmd/compile/internal/base"
    
    // tighten moves Values closer to the Blocks in which they are used.
    // This can reduce the amount of register spilling required,
    // if it doesn't also create more live values.
    // A Value can be moved to any block that
    // dominates all blocks in which it is used.
    func tighten(f *Func) {
    	if base.Flag.N != 0 && len(f.Blocks) < 10000 {
    		// Skip the optimization in -N mode, except for huge functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingCrossVersionIntegrationTest.groovy

        }
    }
    
    task block1 {
        dependsOn tasks.a
        onlyIf { project.hasProperty("enable-block1") }
        doLast {
            ${blockingServer.callFromBuild("block1")}
        }
    }
    
    task b {
        dependsOn tasks.block1
        doLast {
            configurations.b.files
        }
    }
    
    task block2 {
        dependsOn tasks.b
        onlyIf { project.hasProperty("enable-block2") }
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode_test.go

    		b.Run(strconv.Itoa(n), func(b *testing.B) {
    			c := testConfig(b)
    			blocks := make([]bloc, 0, n+2)
    			blocks = append(blocks,
    				Bloc("entry",
    					Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    					Goto("exit")))
    			blocks = append(blocks, Bloc("exit", Exit("mem")))
    			for i := 0; i < n; i++ {
    				blocks = append(blocks, Bloc(fmt.Sprintf("dead%d", i), Goto("exit")))
    			}
    			b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/layout.go

    	exit := f.newSparseSet(f.NumBlocks()) // exit blocks
    	defer f.retSparseSet(exit)
    
    	// Populate idToBlock and find exit blocks.
    	for _, b := range f.Blocks {
    		idToBlock[b.ID] = b
    		if b.Kind == BlockExit {
    			exit.add(b.ID)
    		}
    	}
    
    	// Expand exit to include blocks post-dominated by exit blocks.
    	for {
    		changed := false
    		for _, id := range exit.contents() {
    			b := idToBlock[id]
    		NextPred:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/trim.go

    		f.Blocks = f.Blocks[:n]
    	}
    }
    
    // emptyBlock reports whether the block does not contain actual
    // instructions.
    func emptyBlock(b *Block) bool {
    	for _, v := range b.Values {
    		if v.Op != OpPhi {
    			return false
    		}
    	}
    	return true
    }
    
    // trimmableBlock reports whether the block can be trimmed from the CFG,
    // subject to the following criteria:
    //   - it should not be the first block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    	"fmt"
    	"strings"
    )
    
    // make fake flow graph.
    
    // The blocks of the flow graph are designated with letters A
    // through Z, always including A (start block) and Z (exit
    // block) The specification of a flow graph is a comma-
    // separated list of block successor words, for blocks ordered
    // A, B, C etc, where each block except Z has one or two
    // successors, and any block except A can be a target. Within
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/openshift.go

    // parseSupplementalGroupAnnotation parses the group annotation into blocks.
    func parseSupplementalGroupAnnotation(groups string) ([]Block, error) {
    	blocks := []Block{}
    	segments := strings.Split(groups, ",")
    	for _, segment := range segments {
    		block, err := ParseBlock(segment)
    		if err != nil {
    			return nil, err
    		}
    		blocks = append(blocks, block)
    	}
    	if len(blocks) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/code.txt

    	     a
    	      block.
    
    More text.
    
    	    Blocks
    	  can
    
    	have
    	  blank
    	    lines.
    -- markdown --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    
    	One space
    	 is
    	  enough
    	   to
    	    start
    	     a
    	      block.
    
    More text.
    
    	    Blocks
    	  can
    
    	have
    	  blank
    	    lines.
    -- html --
    <p>Text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 944 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/looprotate.go

    	for i, b := range f.Blocks {
    		idToIdx[b.ID] = i
    	}
    
    	// Set of blocks we're moving, by ID.
    	move := map[ID]struct{}{}
    
    	// Map from block ID to the moving blocks that should
    	// come right after it.
    	after := map[ID][]*Block{}
    
    	// Check each loop header and decide if we want to move it.
    	for _, loop := range loopnest.loops {
    		b := loop.header
    		var p *Block // b's in-loop predecessor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top