Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,118 for blockn (0.42 sec)

  1. 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)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

            succeeds 'help'
        }
    
    
        def "other blocks can follow the pluginManagement block"() {
            given:
            settingsFile << """
                pluginManagement {}
                rootProject.name = 'rumpelstiltskin'
            """
    
            expect:
            succeeds 'help'
        }
    
    
        def "pluginManagement block is not supported in ProjectScripts"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/internal/chacha8rand/chacha8_generic.go

    // produce 1024 bytes of output (16 blocks, with counters 0 to 15).
    // First, for each block, the values 0x61707865, 0x3320646e, 0x79622d32,
    // 0x6b206574 are subtracted from the 32-bit little-endian words at
    // position 0, 1, 2, and 3 respectively, and an increasing counter
    // starting at zero is subtracted from each word at position 12. Then,
    // this stream is permuted such that for each sequence of four blocks,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      return tpu_compile_successor;
    }
    
    // Get all the Blocks underneath `top` that are "in the scope" of `bottom`,
    // i.e., are ancestors.
    llvm::DenseSet<Block*> GetAllBlocksBetween(Operation* bottom, Operation* top) {
      llvm::DenseSet<Block*> blocks;
      Operation* op = bottom;
      while (op && op != top) {
        blocks.insert(op->getBlock());
        op = op->getParentOp();
      }
      return blocks;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

                thread.block()
                worker.runLater(action2)
            }
    
            then:
            instant.action2Completed < instant.action1Completed
        }
    
        def "can use instants to test that a method blocks until action is complete"() {
            Worker worker = new Worker(executor)
    
            given:
            def action = {
                thread.block()
                instant.actionCompleted
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

        }
    
        def "can use worker lease as resource lock"() {
            def registry = workerLeaseService(1)
    
            when:
            def workerLease = registry.newWorkerLease()
            coordinationService.withStateLock(lock(workerLease))
    
            then:
            noExceptionThrown()
        }
    
        def "acquire lease as resource lock blocks when there are no leases available"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    // newBlock appends a new unconnected basic block to b.cfg's block
    // slice and returns it.
    // It does not automatically become the current block.
    // comment is an optional string for more readable debugging output.
    func (b *builder) newBlock(kind BlockKind, stmt ast.Stmt) *Block {
    	g := b.cfg
    	block := &Block{
    		Index: int32(len(g.Blocks)),
    		Kind:  kind,
    		Stmt:  stmt,
    	}
    	block.Succs = block.succs2[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	f.freeValues = v
    }
    
    // NewBlock allocates a new Block of the given kind and places it at the end of f.Blocks.
    func (f *Func) NewBlock(kind BlockKind) *Block {
    	var b *Block
    	if f.freeBlocks != nil {
    		b = f.freeBlocks
    		f.freeBlocks = b.succstorage[0].b
    		b.succstorage[0].b = nil
    	} else {
    		ID := f.bid.get()
    		if int(ID) < len(f.Cache.blocks) {
    			b = &f.Cache.blocks[ID]
    			b.ID = ID
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    			}
    			c := b.Preds[0].Block()
    			d := b.Preds[1].Block()
    
    			// Find their common predecessor block (the one that branches based on wb on/off).
    			// It might be a diamond pattern, or one of the blocks in the diamond pattern might
    			// be missing.
    			var decisionBlock *ssa.Block
    			if len(c.Preds) == 1 && c.Preds[0].Block() == d {
    				decisionBlock = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

     */
    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    All code blocks and multi-line snippets should be wrapped in `<pre>{@code ...... }</pre>` at minimum.
    
    Code blocks can be optionally formatted and highlighted using [`highlight.js`](https://highlightjs.org/) with the `<code>` tag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top