Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for aloop (0.08 sec)

  1. src/sync/atomic/atomic_test.go

    // (Does the function work as advertised?)
    //
    // Test that the Add functions add correctly.
    // Test that the CompareAndSwap functions actually
    // do the comparison and the swap correctly.
    //
    // The loop over power-of-two values is meant to
    // ensure that the operations apply to the full word size.
    // The struct fields x.before and x.after check that the
    // operations do not extend past the full word size.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    _Iterating over a file collection_ can be done through the `each()` method (in Groovy) or `forEach` method (in Kotlin) on the collection or using the collection in a `for` loop.
    In both approaches, the file collection is treated as a set of `File` instances, i.e., your iteration variable will be of type `File`.
    
    The following example demonstrates such iteration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    					jmp.As = AJALR
    					jmp.From = p.From
    					jmp.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_TMP}
    
    					// p.From is not generally valid, however will be
    					// fixed up in the next loop.
    					p.As = AAUIPC
    					p.From = obj.Addr{Type: obj.TYPE_BRANCH, Sym: p.From.Sym}
    					p.From.SetTarget(p.To.Target())
    					p.Reg = obj.REG_NONE
    					p.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_TMP}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    				// or the operation is already running. The claim will be updated in the asynchronous operation,
    				// so the branch should be returned directly and the bind operation is expected to continue in
    				// the next sync loop.
    				if err = ctrl.provisionClaim(ctx, claim); err != nil {
    					return err
    				}
    				return nil
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	for len(next) > 0 {
    		current, next = next, current[:0]
    		count := nextCount
    		nextCount = nil
    
    		// Process all the fields at this depth, now listed in 'current'.
    		// The loop queues embedded fields found in 'next', for processing during the next
    		// iteration. The multiplicity of the 'current' field counts is recorded
    		// in 'count'; the multiplicity of the 'next' field counts is recorded in 'nextCount'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	// See issue https://golang.org/issue/31891
    	key := parent + " > " + dtype.String()
    
    	if checkCache {
    		if t, ok := c.m[key]; ok {
    			if t.Go == nil {
    				fatalf("%s: type conversion loop at %s", lineno(pos), dtype)
    			}
    			return t
    		}
    	}
    
    	t := new(Type)
    	t.Size = dtype.Size() // note: wrong for array of pointers, corrected below
    	t.Align = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top