Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 154 for aloop (0.26 sec)

  1. pkg/kubelet/kubelet_volumes.go

    	}
    
    	return orphanVolumeErrors
    }
    
    // cleanupOrphanedPodDirs removes the volumes of pods that should not be
    // running and that have no containers running.  Note that we roll up logs here since it runs in the main loop.
    func (kl *Kubelet) cleanupOrphanedPodDirs(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error {
    	allPods := sets.New[string]()
    	for _, pod := range pods {
    		allPods.Insert(string(pod.UID))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check.go

    }
    
    // processDelayed processes all delayed actions pushed after top.
    func (check *Checker) processDelayed(top int) {
    	// If each delayed action pushes a new action, the
    	// stack will continue to grow during this loop.
    	// However, it is only processing functions (which
    	// are processed in a delayed fashion) that may
    	// add more actions (such as nested functions), so
    	// this is a sufficiently bounded process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server.go

    		// TODO: handle stoppedCh and listenerStoppedCh returned by c.SecureServing.Serve
    		if _, _, err := cc.SecureServing.Serve(handler, 0, ctx.Done()); err != nil {
    			// fail early for secure handlers, removing the old error loop from above
    			return fmt.Errorf("failed to start secure server: %v", err)
    		}
    	}
    
    	startInformersAndWaitForSync := func(ctx context.Context) {
    		// Start all informers.
    		cc.InformerFactory.Start(ctx.Done())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/subst.go

    		//
    		// In this case, the type of f is an interface that is itself the receiver
    		// type of all of its methods. Because we have no type name to break
    		// cycles, substituting in the recv results in an infinite loop of
    		// recv->interface->recv->interface->...
    		recv := t.recv
    
    		params := subst.tuple(t.params)
    		results := subst.tuple(t.results)
    		if params != t.params || results != t.results {
    			return &Signature{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/go/types/subst.go

    		//
    		// In this case, the type of f is an interface that is itself the receiver
    		// type of all of its methods. Because we have no type name to break
    		// cycles, substituting in the recv results in an infinite loop of
    		// recv->interface->recv->interface->...
    		recv := t.recv
    
    		params := subst.tuple(t.params)
    		results := subst.tuple(t.results)
    		if params != t.params || results != t.results {
    			return &Signature{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

          Operation* op) const;
    
      // Returns true iff given resource is allocated by op with
      // `UniqueResourceAllocation` trait. This can be utilized for while-loop
      // parallelization.
      bool IsUniqueResourceAllocationId(ResourceId resource_id) const {
        return alias_analysis_.IsUniqueResourceAllocationId(resource_id);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		}
    	}()
    
    	// In case resourceVersion is 0, we accept arbitrarily stale result.
    	// As a result, the condition in the below for loop will never be
    	// satisfied (w.resourceVersion is never negative), this call will
    	// never hit the w.cond.Wait().
    	// As a result - we can optimize the code by not firing the wakeup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                    parent.condition == child ||
                            ((parent.then == child ||
                                    parent.`else` == child) && isUsed(parent))
    
                // For expressions use their loop range expression.
                is KtForExpression ->
                    parent.loopRange == child
    
                // While, DoWhile loops use their conditions, not their bodies
                is KtWhileExpressionBase ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/internal/concurrent/hashtriemap.go

    			// What we saw is still true, so we can continue with the insert.
    			break
    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// N.B. This lock is held from when we broke out of the outer loop above.
    	// We specifically break this out so that we can use defer here safely.
    	// One option is to break this out into a new function instead, but
    	// there's so much local iteration state used below that this turns out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		}
    		versions := extractVersions(&rule.Rule)
    		if len(versions) == 0 {
    			continue
    		}
    		resources := extractResources(&rule.Rule)
    		if len(resources) == 0 {
    			continue
    		}
    		// sort GVRs so that the loop below provides
    		// consistent results.
    		sort.Strings(groups)
    		sort.Strings(versions)
    		sort.Strings(resources)
    		count := 0
    		for _, group := range groups {
    			for _, version := range versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top