Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for Cur (0.02 sec)

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

    				tovisit = append(tovisit, nb)
    			}
    		}
    		for len(tovisit) > 0 {
    			cur := tovisit[len(tovisit)-1]
    			tovisit = tovisit[:len(tovisit)-1]
    			if dominatedByCall[cur.ID] {
    				continue
    			}
    			// Record visited in dominatedByCall.
    			dominatedByCall[cur.ID] = true
    			for _, s := range cur.Succs {
    				nb := s.Block()
    				if l.iterationEnd(nb, b2l) {
    					callfreepath = true
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    // is updated and wake them up. If the anything of the ReplicaSets have changed, we need to
    // awaken both the old and new deployments. old and cur must be *apps.ReplicaSet
    // types.
    func (dc *DeploymentController) updateReplicaSet(logger klog.Logger, old, cur interface{}) {
    	curRS := cur.(*apps.ReplicaSet)
    	oldRS := old.(*apps.ReplicaSet)
    	if curRS.ResourceVersion == oldRS.ResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    	out := make([]Range, 0, len(in1)+len(in2))
    	i, j := 0, 0
    	for {
    		var cur Range
    		if i < len(in2) && j < len(in1) {
    			if in2[i].Start < in1[j].Start {
    				cur = in2[i]
    				i++
    			} else {
    				cur = in1[j]
    				j++
    			}
    		} else if i < len(in2) {
    			cur = in2[i]
    			i++
    		} else if j < len(in1) {
    			cur = in1[j]
    			j++
    		} else {
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

                return "  - ";
            }
        }
    
        private static class NumberedPrefixer implements Prefixer {
            private int cur = 0;
    
            @Override
            public String nextPrefix() {
                return "  " + ++cur + ". ";
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller.go

    // and what services it will be a member of, and enqueue the union of these.
    // old and cur must be *v1.Pod types.
    func (e *Controller) updatePod(old, cur interface{}) {
    	services := endpointsliceutil.GetServicesToUpdateOnPodChange(e.serviceLister, old, cur)
    	for key := range services {
    		e.queue.AddAfter(key, e.endpointUpdatesBatchPeriod)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

          !foreach(case, !tail(cases),
                   "$_self.cast<StringAttr>().getValue() == \"" # case # "\""),
          prev, cur, prev # " || " # cur)>,
      "string attribute whose value is " #
        !foldl(/*init*/!head(cases), /*list*/!tail(cases),
               prev, cur, prev # ", or " # cur)>;
    
    // TODO: Use EnumAttr to define the common attribute cases
    
    def TF_ConvnetDataFormatAttr : StringBasedAttr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller.go

    	if c.opts.SystemNamespace != "" {
    		registerHandlers[*v1.Namespace](
    			c,
    			c.namespaces,
    			"Namespaces",
    			func(old *v1.Namespace, cur *v1.Namespace, event model.Event) error {
    				if cur.Name == c.opts.SystemNamespace {
    					return c.onSystemNamespaceEvent(old, cur, event)
    				}
    				return nil
    			},
    			nil,
    		)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. pkg/xds/server.go

    	// Envoy can send two DiscoveryRequests with same version and nonce.
    	// when it detects a new resource. We should respond if they change.
    	prev := sets.New(previousResources...)
    	cur := sets.New(request.ResourceNames...)
    	removed := prev.Difference(cur)
    	added := cur.Difference(prev)
    
    	// We should always respond "alwaysRespond" marked requests to let Envoy finish warming
    	// even though Nonce match and it looks like an ACK.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    			result += ", " + r1.String() + r.a.String()
    		} else if r.cnt > 2 {
    			if (uint16(r.cnt) + ((uint16(r.r) - uint16(V0)) & 31)) > 32 {
    				for i := 1; i < int(r.cnt); i++ {
    					cur := V0 + Reg((uint16(r.r)-uint16(V0)+uint16(i))&31)
    					result += ", " + cur.String() + r.a.String()
    				}
    			} else {
    				r1 := V0 + Reg((uint16(r.r)-uint16(V0)+uint16(r.cnt)-1)&31)
    				result += "-" + r1.String() + r.a.String()
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	if job.DeletionTimestamp == nil && needsCleanup(job) {
    		tc.enqueue(logger, job)
    	}
    
    }
    
    func (tc *Controller) updateJob(logger klog.Logger, old, cur interface{}) {
    	job := cur.(*batch.Job)
    	logger.V(4).Info("Updating job", "job", klog.KObj(job))
    
    	if job.DeletionTimestamp == nil && needsCleanup(job) {
    		tc.enqueue(logger, job)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top