Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 161 for aloop (0.05 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    				s.freeReg(s.GReg) // Spill value in G register before any merge.
    			}
    			// For this to be worthwhile, the loop must have no calls in it.
    			top := b.Succs[0].b
    			loop := s.loopnest.b2l[top.ID]
    			if loop == nil || loop.header != top || loop.containsUnavoidableCall {
    				goto badloop
    			}
    
    			// TODO: sort by distance, pick the closest ones?
    			for _, live := range s.live[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK-NEXT: return %[[CARG0]]
      func.return %read : tensor<f32>
    }
    
    // -----
    
    // Tests that pass lifts read-only resource reads from loop, but does not add
    // assign after the loop.
    
    // CHECK-LABEL: func @cluster_with_loop
    func.func @cluster_with_loop() -> () {
      // CHECK: %[[VH:.*]] = "tf.VarHandleOp"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    		},
    		{
    			"{{range .Items}}<a{{end}}",
    			`z:1: on range loop re-entry: "<" in attribute name: "<a"`,
    		},
    		{
    			"\n{{range .Items}} x='<a{{end}}",
    			"z:2:8: on range loop re-entry: {{range}} branches",
    		},
    		{
    			"{{range .Items}}<a{{if .X}}{{break}}{{end}}>{{end}}",
    			"z:1:29: at range loop break: {{range}} branches end in different contexts",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	// Name is a slice representation of the name data.
    	name := n.Data[:0]
    
    Loop:
    	for {
    		if currOff >= len(msg) {
    			return off, errBaseLen
    		}
    		c := int(msg[currOff])
    		currOff++
    		switch c & 0xC0 {
    		case 0x00: // String segment
    			if c == 0x00 {
    				// A zero length signals the end of the name.
    				break Loop
    			}
    			endOff := currOff + c
    			if endOff > len(msg) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    //
    //	^- pod is observed by pod worker  .
    //	.                                 .
    //
    // ----------|       |------------------------- = syncPod is running
    //
    //	. ^- pod worker loop sees change and invokes syncPod
    //	. .                               .
    //
    // --------------|                     |------- = ShouldPodContainersBeTerminating() returns true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	// memory for now.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	scavenge func(n uintptr) (uintptr, int64)
    
    	// shouldStop is a callback called in the work loop and provides a
    	// point that can force the scavenger to stop early, for example because
    	// the scavenge policy dictates too much has been scavenged already.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	EL2HLT          = syscall.Errno(0x2c)
    	EL2NSYNC        = syscall.Errno(0x26)
    	EL3HLT          = syscall.Errno(0x27)
    	EL3RST          = syscall.Errno(0x28)
    	ELNRNG          = syscall.Errno(0x29)
    	ELOOP           = syscall.Errno(0x55)
    	EMEDIA          = syscall.Errno(0x6e)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x3b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    				// x is a comptype
    				complit_ok = true
    			}
    			if !complit_ok {
    				break loop
    			}
    			if t != x {
    				p.syntaxError("cannot parenthesize type in composite literal")
    				// already progressed, no need to advance
    			}
    			n := p.complitexpr()
    			n.Type = x
    			x = n
    
    		default:
    			break loop
    		}
    	}
    
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		},
    
    		// large move
    		// auxint = remaining bytes after loop (rem)
    		// arg0 = address of dst memory (in R1, changed as a side effect)
    		// arg1 = address of src memory (in R2, changed as a side effect)
    		// arg2 = pointer to last address to move in loop + 256
    		// arg3 = mem
    		// returns mem
    		//
    		// mvc: MVC  $256, 0(R2), 0(R1)
    		//      MOVD $256(R1), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    		c *= n // now total number of bits to copy
    
    		// If the number of bits being repeated is small, load them
    		// into a register and use that register for the entire loop
    		// instead of repeatedly reading from memory.
    		// Handling fewer than 8 bits here makes the general loop simpler.
    		// The cutoff is goarch.PtrSize*8 - 7 to guarantee that when we add
    		// the pattern to a bit buffer holding at most 7 bits (a partial byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top