Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Loops (0.12 sec)

  1. pkg/controller/statefulset/stateful_set_control_test.go

    		return err
    	}
    
    	// Give up after 2 loops.
    	// 2 * 500 pods per loop = 1000 max pods <- this should be enough for all test cases.
    	// Anything slower than that (requiring more iterations) indicates a problem and should fail the test.
    	maxLoops := 2
    	loops := maxLoops
    	for set.Status.Replicas < *set.Spec.Replicas {
    		if loops < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    	// GarbageCollector.Sync(client, period, stopCh):
    	//    wait.Until() loops with `period` until the `stopCh` is closed :
    	//        wait.PollImmediateUntil() loops with 100ms (hardcode) util the `stopCh` is closed:
    	//            GetDeletableResources()
    	//            gc.resyncMonitors()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

                               TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Creating while loops is not supported on mobile. File a bug at "
          "https://github.com/tensorflow/tensorflow/issues if this feature is "
          "important to you");
      return EmptyWhileParams();
    #else
      if (ninputs == 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// podManager stores the desired set of admitted pods and mirror pods that the kubelet should be
    	// running. The actual set of running pods is stored on the podWorkers. The manager is populated
    	// by the kubelet config loops which abstracts receiving configuration from many different sources
    	// (api for regular pods, local filesystem or http for static pods). The manager may be consulted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    			//    |  +---+  |
    			//    +->| B |<-+
    			//       +---+
    			//         |
    			//         v
    			//       +----+
    			//       | EE |
    			//       +----+
    			name: "ignore cross-sig loops",
    			graph: trustGraphDescription{
    				Roots: []rootDescription{{Subject: "root"}},
    				Leaf:  "leaf",
    				Graph: []trustGraphEdge{
    					{
    						Issuer:  "root",
    						Subject: "inter a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // a terminal phase, or if the Kubelet has already indicated the pod has reached
    // a terminal phase but the config source has not accepted it yet. This method
    // should only be used within the pod configuration loops that notify the pod
    // worker, other components should treat the pod worker as authoritative.
    func (kl *Kubelet) isAdmittedPodTerminal(pod *v1.Pod) bool {
    	// pods are considered inactive if the config source has observed a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                             .dyn_cast_or_null<mlir::RankedTensorType>();
      if (input_type && weight_type && input_type.hasStaticShape() &&
          weight_type.hasStaticShape()) {
        // Compute op count from the seven nested loops of
        // tflite::reference_ops::TransposeConv():
        count = 2 * input_type.getNumElements() * weight_type.getDimSize(0) *
                weight_type.getDimSize(1) * weight_type.getDimSize(2);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

        # Mount /var/lib/kubelet/pki on a tmpfs so it doesn't persist across
        # reboots. This can help avoid some rare instances of corrupt cert files
        # (e.g. created but not written during a shutdown). Kubelet crash-loops
        # in these cases. Do this after above mount calls so it isn't overwritten.
        echo "Mounting /var/lib/kubelet/pki on tmpfs"
        mount -t tmpfs tmpfs /var/lib/kubelet/pki
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	branchBackwards = (1 << iota)
    	// branchShort marks branches those target is close,
    	// with offset is in -128..127 range.
    	branchShort
    	// branchLoopHead marks loop entry.
    	// Used to insert padding for misaligned loops.
    	branchLoopHead
    )
    
    // opBytes holds optab encoding bytes.
    // Each ytab reserves fixed amount of bytes in this array.
    //
    // The size should be the minimal number of bytes that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		}
    	}
    	stopm()
    	goto top
    }
    
    // pollWork reports whether there is non-background work this P could
    // be doing. This is a fairly lightweight check to be used for
    // background work loops, like idle GC. It checks a subset of the
    // conditions checked by the actual scheduler.
    func pollWork() bool {
    	if sched.runqsize != 0 {
    		return true
    	}
    	p := getg().m.p.ptr()
    	if !runqempty(p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top