Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,633 for block1 (0.17 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    			stk = append(stk, stackEntry{b: c})
    		}
    	}
    }
    
    // domBlock contains extra per-block information to record the dominator tree.
    type domBlock struct {
    	firstChild *ssa.Block // first child of block in dominator tree
    	sibling    *ssa.Block // next child of parent in dominator tree
    }
    
    // A block heap is used as a priority queue to implement the PiggyBank
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/branchelim.go

    	}
    	if !isLeafPlain(no) || len(no.Values) > 1 || !canSpeculativelyExecute(no) {
    		return false
    	}
    	if b.Succs[0].Block().Succs[0].Block() != b.Succs[1].Block().Succs[0].Block() {
    		return false
    	}
    	// block that postdominates the if/else
    	post := b.Succs[0].Block().Succs[0].Block()
    	if len(post.Preds) != 2 || post == b {
    		return false
    	}
    	hasphis := false
    	for _, v := range post.Values {
    		if v.Op == OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    	"strings"
    )
    
    /*
    
    list block itself does not appear on stack?
    item does
    end of item returns block,
    new item continues previous block if possible?
    
    if close leaves lines or blocks behind, panic
    
    close(b a list item, parent)
    	if b's parent's last block is list && item can be added to it, do so
    	else return new list
    
    or maybe not parent but just current list of blocks
    
    preserve LinkRefDefs?
    
    */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/quote.go

    import (
    	"bytes"
    )
    
    type Quote struct {
    	Position
    	Blocks []Block
    }
    
    func (b *Quote) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<blockquote>\n")
    	for _, c := range b.Blocks {
    		c.PrintHTML(buf)
    	}
    	buf.WriteString("</blockquote>\n")
    }
    
    func (b *Quote) printMarkdown(buf *bytes.Buffer, s mdState) {
    	s.prefix += "> "
    	printMarkdownBlocks(b.Blocks, buf, s)
    }
    
    func trimQuote(s line) (line, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

      //   ...
      //
      Block* orig_block_head = op_inst->getBlock();
      Block* orig_block_tail = orig_block_head->splitBlock(op);
      Block* cond_block = builder.createBlock(orig_block_tail);
      Block* body_block = builder.createBlock(orig_block_tail);
    
      // Set argument types for the cond_block to be same as the types of the
      // condition function and argument types for the other two blocks to be same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. src/image/jpeg/dct_test.go

    import (
    	"fmt"
    	"math"
    	"math/rand"
    	"strings"
    	"testing"
    )
    
    func benchmarkDCT(b *testing.B, f func(*block)) {
    	b.StopTimer()
    	blocks := make([]block, 0, b.N*len(testBlocks))
    	for i := 0; i < b.N; i++ {
    		blocks = append(blocks, testBlocks[:]...)
    	}
    	b.StartTimer()
    	for i := range blocks {
    		f(&blocks[i])
    	}
    }
    
    func BenchmarkFDCT(b *testing.B) {
    	benchmarkDCT(b, fdct)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

            )
        }
    
        @Test
        fun `Settings target - top-level - pluginManagement block - empty body`() {
    
            val fragment = fragment("pluginManagement", "...")
            val program = Program.PluginManagement(fragment)
    
            assertThat(
                "reduces to static program that evaluates pluginManagement block then applies default plugin requests",
                partialEvaluationOf(
                    program,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func_test.go

    	blocks := make(map[string]*Block)
    	values := make(map[string]*Value)
    	// Create all the blocks and values.
    	for _, bloc := range blocs {
    		b := f.NewBlock(bloc.control.kind)
    		blocks[bloc.name] = b
    		for _, valu := range bloc.valus {
    			// args are filled in the second pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

        /**
         * Blocks until the build is complete and assert that the build completed successfully.
         */
        ExecutionResult waitForFinish();
    
        /**
         * Blocks until the build is complete and assert that the build completed with a failure.
         */
        ExecutionFailure waitForFailure();
    
        /**
         * Blocks until the build is complete and exits, disregarding the result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/image/jpeg/scan.go

    				d.progCoeffs[compIndex] = make([]block, mxx*myy*d.comp[compIndex].h*d.comp[compIndex].v)
    			}
    		}
    	}
    
    	d.bits = bits{}
    	mcu, expectedRST := 0, uint8(rst0Marker)
    	var (
    		// b is the decoded coefficients, in natural (not zig-zag) order.
    		b  block
    		dc [maxComponents]int32
    		// bx and by are the location of the current block, in units of 8x8
    		// blocks: the third block in the first row has (bx, by) = (2, 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top