Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 965 for blockAsm (0.17 sec)

  1. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedExecutor.java

    public interface ManagedExecutor extends AsyncStoppable, ExecutorService {
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed.
         */
        @Override
        void stop();
    
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed. Once the given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/branchelim.go

    // branchelim tries to eliminate branches by
    // generating CondSelect instructions.
    //
    // Search for basic blocks that look like
    //
    //	bb0            bb0
    //	 | \          /   \
    //	 | bb1  or  bb1   bb2    <- trivial if/else blocks
    //	 | /          \   /
    //	bb2            bb3
    //
    // where the intermediate blocks are mostly empty (with no side-effects);
    // rewrite Phis in the postdominator as CondSelects.
    func branchelim(f *Func) {
    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/crypto/x509/pkcs1.go

    type pkcs1PublicKey struct {
    	N *big.Int
    	E int
    }
    
    // ParsePKCS1PrivateKey parses an [RSA] private key in PKCS #1, ASN.1 DER form.
    //
    // This kind of key is commonly encoded in PEM blocks of type "RSA PRIVATE KEY".
    func ParsePKCS1PrivateKey(der []byte) (*rsa.PrivateKey, error) {
    	var priv pkcs1PrivateKey
    	rest, err := asn1.Unmarshal(der, &priv)
    	if len(rest) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/runtime/runtime-gdb_test.go

    	// Extract named BEGIN...END blocks from output
    	partRe := regexp.MustCompile(`(?ms)^BEGIN ([^\n]*)\n(.*?)\nEND`)
    	blocks := map[string]string{}
    	for _, subs := range partRe.FindAllSubmatch(got, -1) {
    		blocks[string(subs[1])] = string(subs[2])
    	}
    
    	infoGoroutinesRe := regexp.MustCompile(`\*\s+\d+\s+running\s+`)
    	if bl := blocks["info goroutines"]; !infoGoroutinesRe.MatchString(bl) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    	}
    }
    
    // SetMemoryBlocks stores memory assignments of container
    func (sc *stateCheckpoint) SetMemoryBlocks(podUID string, containerName string, blocks []Block) {
    	sc.Lock()
    	defer sc.Unlock()
    
    	sc.cache.SetMemoryBlocks(podUID, containerName, blocks)
    	err := sc.storeState()
    	if err != nil {
    		klog.InfoS("Store state to checkpoint error", "err", err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/zcse.go

    // nothing is deleted. A subsequent deadcode pass is required to actually
    // remove duplicate expressions.
    func zcse(f *Func) {
    	vals := make(map[vkey]*Value)
    
    	for _, b := range f.Blocks {
    		for i := 0; i < len(b.Values); i++ {
    			v := b.Values[i]
    			if opcodeTable[v.Op].argLen == 0 {
    				key := vkey{v.Op, keyFor(v), v.Aux, v.Type}
    				if vals[key] == nil {
    					vals[key] = v
    					if b != f.Entry {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java

    import gradlebuild.docs.dsl.docbook.model.BlockDoc;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    public class BlockTableRenderer {
        public void renderTo(Iterable<BlockDoc> blocks, Element parent) {
            Document document = parent.getOwnerDocument();
    
            // <thead>
            //   <tr>
            //     <td>Block</td>
            //     <td>Description</td>
            //   </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/parse.go

    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?
    
    */
    
    // Block is implemented by:
    //
    //	CodeBLock
    //	Document
    //	Empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. 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)
  10. releasenotes/notes/fix-45653.yaml

    kind: bug-fix
    
    area: istioctl
    
    issue:
      - https://github.com/istio/istio/issues/45653
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 19:13:28 UTC 2024
    - 234 bytes
    - Viewed (0)
Back to top