Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for Cur (0.06 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/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		}
    		arrange = string(c)
    		result += arrange
    		if a.cnt > 0 {
    			result = "[" + result
    			for i := 1; i < int(a.cnt); i++ {
    				cur := V0 + Reg((uint16(a.r)-uint16(V0)+uint16(i))&31)
    				result += ", " + cur.String() + arrange
    			}
    			result += "]"
    		}
    		return result
    
    	case RegisterWithArrangementAndIndex:
    		result := a.r.String()
    		arrange := a.a.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/cc/gradients/nn_grad_test.cc

        auto tensor_flat = tensor->flat<T>();
        // First set the array to an increasing sequence of values spaced
        // a reasonable amount apart
        T cur = 0;
        for (size_t i = 0; i < tensor->NumElements(); i++) {
          tensor_flat(i) = cur;
          cur += 5e-2;
        }
        // Fischer-Yates shuffle the array
        for (size_t i = tensor->NumElements() - 1; i >= 1; i--) {
          // j <- random integer 0 <= j <= i
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top