Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 360 for stay (0.17 sec)

  1. src/runtime/metrics_test.go

    	// as user time rather than idle time. In an ideal world we'd expect the whole application
    	// to go instantly idle the moment this goroutine goes to sleep, and stay asleep for that
    	// duration. However, the Go runtime can easily eat into idle time while this goroutine is
    	// blocked in a sleep. For example, slow platforms might spend more time expected in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    			multiPointEnabled.insert(ep.Name)
    		}
    
    		// Reorder plugins. Here is the expected order:
    		// - part 1: overridePlugins. Their order stay intact as how they're specified in regular extension point.
    		// - part 2: multiPointEnabled - i.e., plugin defined in multipoint but not in regular extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    // function shouldn't be further extended to update immutable
    // values such as ErasureInfo, ChecksumInfo.
    //
    // Metadata is only updated to new values, existing values
    // stay as is, if you wish to update all values you should
    // update all metadata freshly before calling this function
    // in-case you wish to clear existing metadata.
    func (x *xlMetaV2) UpdateObjectVersion(fi FileInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.enoptrbss", 0), sect)
    
    	// Code coverage counters are assigned to the .noptrbss section.
    	// We assign them in a separate pass so that they stay aggregated
    	// together in a single blob (coverage runtime depends on this).
    	covCounterDataStartOff = sect.Length
    	state.assignToSection(sect, sym.SCOVERAGE_COUNTER, sym.SNOPTRBSS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    		prof.cycles += cycles
    		return
    	}
    
    	if prev := prof.cycles; prev > 0 {
    		// We can only store one call stack for runtime-internal lock contention
    		// on this M, and we've already got one. Decide which should stay, and
    		// add the other to the report for runtime._LostContendedRuntimeLock.
    		prevScore := uint64(cheaprand64()) % uint64(prev)
    		thisScore := uint64(cheaprand64()) % uint64(cycles)
    		if prevScore > thisScore {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    	}
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("abc")) {
    		t.Errorf("Expected pod to be suitable for removal (does not exist and synced at least once)")
    	}
    
    	// verify workers that are not terminated stay open even if config no longer
    	// sees them
    	podWorkers.SyncKnownPods(nil)
    	drainAllWorkers(podWorkers)
    	if len(podWorkers.podUpdates) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    		proxier.natRules.Write(externalTrafficOnlyArgs, "-j", "ACCEPT")
    		dstLocalOnlyArgs := append(args, "-m", "addrtype", "--dst-type", "LOCAL")
    		// Allow traffic bound for external IPs that happen to be recognized as local IPs to stay local.
    		// This covers cases like GCE load-balancers which get added to the local routing table.
    		proxier.natRules.Write(dstLocalOnlyArgs, "-j", "ACCEPT")
    	}
    
    	if !proxier.ipsetList[kubeExternalIPSet].isEmpty() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    			runtime.GoroutineProfile(p)
    		}
    		b.StopTimer()
    	}
    
    	// Note that some costs of collecting a goroutine profile depend on the
    	// length of the runtime.allgs slice, which never shrinks. Stay within race
    	// detector's 8k-goroutine limit
    	for _, n := range []int{50, 500, 5000} {
    		b.Run(fmt.Sprintf("Profile.WriteTo idle %d", n), withIdle(n, benchWriteTo))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. releasenotes/notes/alt-stat-name.yaml

    Rama Chavali <******@****.***> 1716199771 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
Back to top