Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for light (0.07 sec)

  1. pkg/kubelet/status/status_manager_test.go

    		})
    	}
    
    }
    
    func statusEqual(left, right v1.PodStatus) bool {
    	left.Conditions = nil
    	right.Conditions = nil
    	return reflect.DeepEqual(left, right)
    }
    
    func conditionsEqual(left, right []v1.PodCondition) bool {
    	if len(left) != len(right) {
    		return false
    	}
    
    	for _, l := range left {
    		found := false
    		for _, r := range right {
    			if l.Type == r.Type {
    				found = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			}
    		}
    	} else if info.Mode().IsRegular() {
    		// Because files might be very large, do not attempt
    		// to hash the entirety of their content. Instead assume
    		// the mtime and size recorded in hashWriteStat above
    		// are good enough.
    		//
    		// To avoid problems for very recent files where a new
    		// write might not change the mtime due to file system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    				// again at the end (and still ws == indent). Thus, a subsequent indent
    				// by a linebreak call after a type, or in the next multi-line identList
    				// will do the right thing.
    				p.identList(par.Names, ws == indent)
    				p.print(blank)
    			}
    			// parameter type
    			p.expr(stripParensAlways(par.Type))
    			prevLine = parLineEnd
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/go/build/build.go

    Found:
    	if p.Root != "" {
    		p.SrcRoot = ctxt.joinPath(p.Root, "src")
    		p.PkgRoot = ctxt.joinPath(p.Root, "pkg")
    		p.BinDir = ctxt.joinPath(p.Root, "bin")
    		if pkga != "" {
    			// Always set PkgTargetRoot. It might be used when building in shared
    			// mode.
    			p.PkgTargetRoot = ctxt.joinPath(p.Root, pkgtargetroot)
    
    			// Set the install target if applicable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    			// In both cases, the volume is Bound and the claim is Pending.
    			// Next syncClaim will fix it. To speed it up, we enqueue the claim
    			// into the controller, which results in syncClaim to be called
    			// shortly (and in the right worker goroutine).
    			// This speeds up binding of provisioned volumes - provisioner saves
    			// only the new PV and it expects that next syncClaim will bind the
    			// claim to it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    	SyncTerminatingRuntimePod(ctx context.Context, runningPod *kubecontainer.Pod) error
    	// SyncTerminatedPod is invoked after all running containers are stopped and is responsible
    	// for releasing resources that should be executed right away rather than in the background.
    	// Once it exits without error the pod is considered finished on the node.
    	SyncTerminatedPod(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    	 * perhaps we'd be able to parallelize the span loop above.
    	 */
    
    	p = c.cursym.Func().Text
    	c.autosize = p.To.Offset + 4
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	pc = int32(p.Pc) // even p->link might need extra padding
    	var v int
    	for p = p.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		opc = int32(p.Pc)
    		c.asmout(p, o, out[:])
    		m = int(o.size)
    
    		if m%4 != 0 || p.Pc%4 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ROR", argLength: 2, reg: gp21, asm: "ROR"},                        // arg0 right rotate by (arg1 mod 64) bits
    		{name: "RORW", argLength: 2, reg: gp21, asm: "RORW"},                      // arg0 right rotate by (arg1 mod 32) bits
    		{name: "RORconst", argLength: 1, reg: gp11, asm: "ROR", aux: "Int64"},     // arg0 right rotate by auxInt bits, auxInt should be in the range 0 to 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		CAdvisorInterface:   nil, // cadvisor.New launches background processes (bg http.ListenAndServe, and some bg cleaners), not set here
    		Cloud:               nil, // cloud provider might start background processes
    		ContainerManager:    nil,
    		KubeClient:          nil,
    		HeartbeatClient:     nil,
    		EventClient:         nil,
    		TracerProvider:      tp,
    		HostUtil:            hu,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    			proposed = periodStartReplicas + policy.Value
    		} else if policy.Type == autoscalingv2.PercentScalingPolicy {
    			// the proposal has to be rounded up because the proposed change might not increase the replica count causing the target to never scale up
    			proposed = int32(math.Ceil(float64(periodStartReplicas) * (1 + float64(policy.Value)/100)))
    		}
    		result = selectPolicyFn(result, proposed)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top