Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 379 for aloop (0.08 sec)

  1. src/net/mail/message.go

    func (p *addrParser) consumeAtom(dot bool, permissive bool) (atom string, err error) {
    	i := 0
    
    Loop:
    	for {
    		r, size := utf8.DecodeRuneInString(p.s[i:])
    		switch {
    		case size == 1 && r == utf8.RuneError:
    			return "", fmt.Errorf("mail: invalid utf-8 in address: %q", p.s)
    
    		case size == 0 || !isAtext(r, dot):
    			break Loop
    
    		default:
    			i += size
    
    		}
    	}
    
    	if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    		*temps[depth] = temps[depth].make(B + 1)
    	}
    
    	// Compute each wide digit of the quotient.
    	//
    	// TODO(rsc): Change the loop to be
    	//	for j := (m+B-1)/B*B; j > 0; j -= B {
    	// which will make the final step a regular step, letting us
    	// delete what amounts to an extra copy of the loop body below.
    	j := m
    	for j > B {
    		// Divide u[j-B:j+n] (3 wide digits) by v (2 wide digits).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Removes unused results from WhileRegion ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateRemoveUnusedWhileResultsPass();
    
    // Hoists loop invariant ops to the outside of the loop.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateHoistLoopInvariantPass();
    
    // Creates VarHandleOps right next to the operations that use them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    	"k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world with
    // the actual state of the world by triggering attach detach operations.
    // Note: This is distinct from the Reconciler implemented by the kubelet volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    					out.B = uint16(sb * ma / m)
    					out.A = uint16(sa * ma / m)
    				}
    				// The third argument is &out instead of out (and out is
    				// declared outside of the inner loop) to avoid the implicit
    				// conversion to color.Color here allocating memory in the
    				// inner loop if sizeof(color.RGBA64) > sizeof(uintptr).
    				dst.Set(x, y, &out)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				Binding:    binding,
    			})
    		}
    	}
    
    	authz := newCachingAuthorizer(c.authz)
    
    	for _, hook := range hooks {
    		// versionedAttributes will be set to non-nil inside of the loop, but
    		// is scoped outside of the param loop so we only convert once. We defer
    		// conversion so that it is only performed when we know a policy matches,
    		// saving the cost of converting non-matching requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    			return err
    		}
    		if bit {
    			b[0] |= delta
    		}
    		return nil
    	}
    
    	// Refining AC components is more complicated; see sections G.1.2.2 and G.1.2.3.
    	zig := zigStart
    	if d.eobRun == 0 {
    	loop:
    		for ; zig <= zigEnd; zig++ {
    			z := int32(0)
    			value, err := d.decodeHuffman(h)
    			if err != nil {
    				return err
    			}
    			val0 := value >> 4
    			val1 := value & 0x0f
    
    			switch val1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util.cc

                             uncompilable_nodes);
      }
      return is_compilable;
    }
    
    // Tests whether 'while_node' is a completely compilable loop.
    // Every operator in the condition and body functions must be compilable for a
    // while loop to be compilable.
    bool RecursiveCompilabilityChecker::IsCompilableWhile(
        const Node& while_node, FunctionLibraryRuntime* lib_runtime,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. pkg/controller/podgc/gc_controller.go

    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    	utilpod "k8s.io/kubernetes/pkg/util/pod"
    	"k8s.io/kubernetes/pkg/util/taints"
    )
    
    const (
    	// gcCheckPeriod defines frequency of running main controller loop
    	gcCheckPeriod = 20 * time.Second
    	// quarantineTime defines how long Orphaned GC waits for nodes to show up
    	// in an informer before issuing a GET call to check if they are truly gone
    	quarantineTime = 40 * time.Second
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/runtime/gc_test.go

    	done := make(chan struct{})
    	var wg sync.WaitGroup
    	for i := 0; i < maxProcs-1; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var hold *node
    		loop:
    			for {
    				hold = buildTree(5)
    				select {
    				case <-done:
    					break loop
    				default:
    				}
    			}
    			runtime.KeepAlive(hold)
    		}()
    	}
    	return func() {
    		close(done)
    		wg.Wait()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top