Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,118 for blockn (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    	// return block, in which v is never "used".
    	seen := make(map[*cfg.Block]bool)
    	var search func(blocks []*cfg.Block) *ast.ReturnStmt
    	search = func(blocks []*cfg.Block) *ast.ReturnStmt {
    		for _, b := range blocks {
    			if seen[b] {
    				continue
    			}
    			seen[b] = true
    
    			// Prune the search if the block uses v.
    			if blockUses(pass, v, b) {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		// If there are no direct-only or indirect-only blocks, a new block may
    		// be inserted after the last require line or block.
    		lastRequireIndex = -1
    
    		// If there's only one require line or block, and it's uncommented,
    		// we'll move its requirements to the direct-only or indirect-only blocks.
    		requireLineOrBlockCount = 0
    
    		// Track the block each requirement belongs to (if any) so we can
    		// move them later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/crypto/x509/pem_decrypt.go

    	key := ciph.deriveKey(password, iv[:8])
    	block, err := ciph.cipherFunc(key)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(b.Bytes)%block.BlockSize() != 0 {
    		return nil, errors.New("x509: encrypted PEM data is not a multiple of the block size")
    	}
    
    	data := make([]byte, len(b.Bytes))
    	dec := cipher.NewCBCDecrypter(block, iv)
    	dec.CryptBlocks(data, b.Bytes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/crypto/cipher/gcm.go

    	*y = z
    }
    
    // updateBlocks extends y with more polynomial terms from blocks, based on
    // Horner's rule. There must be a multiple of gcmBlockSize bytes in blocks.
    func (g *gcm) updateBlocks(y *gcmFieldElement, blocks []byte) {
    	for len(blocks) > 0 {
    		y.low ^= byteorder.BeUint64(blocks)
    		y.high ^= byteorder.BeUint64(blocks[8:])
    		g.mul(y)
    		blocks = blocks[gcmBlockSize:]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BlockStore.java

        /**
         * Writes a block to this store, adding the block if required.
         */
        void write(BlockPayload block);
    
        /**
         * Adds a new block to this store. Allocates space for the block, but does not write the contents of the block
         * until {@link #write(BlockPayload)} is called.
         */
        void attach(BlockPayload block);
    
        /**
         * Flushes any pending updates for this store.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule.go

    	// inBlockUses records whether a value is used in the block
    	// in which it lives. (block control values don't count as uses.)
    	inBlockUses := f.Cache.allocBoolSlice(f.NumValues())
    	defer f.Cache.freeBoolSlice(inBlockUses)
    	if f.Config.optimize {
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				for _, a := range v.Args {
    					if a.Block == b {
    						inBlockUses[a.ID] = true
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

         * Runs a given {@link Factory} while the specified locks are being held, releasing
         * the locks upon completion.  Blocks until the specified locks can be obtained.
         */
        <T> T withLocks(Collection<? extends ResourceLock> locks, Factory<T> factory);
    
        /**
         * Runs a given {@link Runnable} while the specified locks are being held, releasing
         * the locks upon completion.  Blocks until the specified locks can be obtained.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/internal/chacha8rand/chacha8_stub.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !amd64 && !arm64
    
    #include "textflag.h"
    
    // func block(counter uint64, seed *[8]uint32, blocks *[16][4]uint32)
    TEXT ยทblock(SB), NOSPLIT, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 338 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/html.go

    .dead-value span.highlight-aquamarine,
    .dead-block.highlight-aquamarine,
    .dead-value span.highlight-coral,
    .dead-block.highlight-coral,
    .dead-value span.highlight-lightpink,
    .dead-block.highlight-lightpink,
    .dead-value span.highlight-lightsteelblue,
    .dead-block.highlight-lightsteelblue,
    .dead-value span.highlight-palegreen,
    .dead-block.highlight-palegreen,
    .dead-value span.highlight-skyblue,
    .dead-block.highlight-skyblue,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sccp.go

    	default:
    		t.f.Fatalf("All kind of block should be processed above.")
    	}
    }
    
    // rewireSuccessor rewires corresponding successors according to constant value
    // discovered by previous analysis. As the result, some successors become unreachable
    // and thus can be removed in further deadcode phase
    func rewireSuccessor(block *Block, constVal *Value) bool {
    	switch block.Kind {
    	case BlockIf:
    		block.removeEdge(int(constVal.AuxInt))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top