Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for Truly (0.08 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    func isPodResourcesResizedDown(pod *v1.Pod) bool {
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// TODO(vinaykul,wangchen615,InPlacePodVerticalScaling): Fix this to determine when a
    		// pod is truly resized down (might need oldPod if we cannot determine from Status alone)
    		if pod.Status.Resize == v1.PodResizeStatusInProgress {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    as they are. For in polishing Glass with Sand, Putty, or Tripoly, it is not to be imagined that those Substances can, by grating and fretting the Glass, bring all its least Particles to an accurate Polish; so that all their Surfaces shall be truly plain or truly spherical, and look all the same way, so as together to compose one even Surface. The smaller the Particles of those Substances are, the smaller will be the Scratches by which they continually fret and wear away the Glass until it be polish'd;...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  3. src/testdata/Isaac.Newton-Opticks.txt

    Sand, Putty, or Tripoly, it is not to be imagined that those Substances
    can, by grating and fretting the Glass, bring all its least Particles to
    an accurate Polish; so that all their Surfaces shall be truly plain or
    truly spherical, and look all the same way, so as together to compose
    one even Surface. The smaller the Particles of those Substances are, the
    smaller will be the Scratches by which they continually fret and wear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    // which means an orphaned pod (no config) is terminated and we can exit. Since orphaned
    // pods have no API representation, we want to exit the loop at this point and ensure no
    // status is present afterwards - the running pod is truly terminated when this is invoked.
    func (p *podWorkers) completeTerminatingRuntimePod(podUID types.UID) {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. cmd/server_test.go

    	// time.Time does not honor xml marshaller, it means that we need
    	// to encode/format it before giving it to xml marshaling.
    
    	// This below check adds client side verification to see if its
    	// truly parsable.
    
    	// listMultipartUploadsResponse - format for list multipart uploads response.
    	type listMultipartUploadsResponse struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    				to = filepath.Join(`\\_\_`, toPath)
    			} else {
    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    	}
    
    	// Tell gcc to not insert truly random numbers into the build process
    	// this ensures LTO won't create random numbers for symbols.
    	if b.gccSupportsFlag(compiler, "-frandom-seed=1") {
    		flags = append(flags, "-frandom-seed="+buildid.HashToString(a.actionID))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    // are evaluated in random order, and you can not assume that the case
    // statements evaluate in order if multiple channels have events.
    //
    // With that in mind, in truly no particular order, the different channels
    // are handled as follows:
    //
    //   - configCh: dispatch the pods for the config change to the appropriate
    //     handler callback for the event type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.13.md

    With CSI the Kubernetes volume layer becomes truly extensible, allowing third party storage developers to write drivers making their storage systems available in Kubernetes without having to touch the core code.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// idle. If needspinning is set when they are about to drop their P,
    	// they abort the drop and instead become a new spinning M on our
    	// behalf. If we are not racing and the system is truly fully loaded
    	// then no spinning threads are required, and the next thread to
    	// naturally become spinning will clear the flag.
    	//
    	// Also see "Worker thread parking/unparking" comment at the top of the
    	// file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	node := parent.N
    
    	if node.Class != ir.PAUTO || node.Addrtaken() {
    		// addressed things and non-autos retain their parents (i.e., cannot truly be split)
    		return ssa.LocalSlot{N: node, Type: t, Off: parent.Off + offset}
    	}
    
    	sym := &types.Sym{Name: node.Sym().Name + suffix, Pkg: types.LocalPkg}
    	n := e.curfn.NewLocal(parent.N.Pos(), sym, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top