Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for Prioritize (0.23 sec)

  1. android/guava/src/com/google/common/collect/CompactHashMap.java

     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    Clearly defined task inputs and outputs serve two purposes:
    
    1. They inform Gradle about task dependencies. +
    For example, if Gradle understands that the output of the `compileJava` task serves as the input for the `jar` task, it will prioritize running `compileJava` first.
    2. They facilitate incremental building. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /**
     * For mobile devices, we show navigation at bottom of page.
     *
     * This is the simplest solution to this issue.
     */
    @media not screen and (min-width: 64rem) {
    	/* Repeat the class twice to prioritize our mobile classes! */
    
    	.content.content {
    		/* Make the height equal to
               the real height of content */
    		overflow: visible;
    	}
    
    	.main-content {
    		/* Main content show first */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    * Fix panic in kubectl rollout commands ([#69151](https://github.com/kubernetes/kubernetes/pull/69151), [@soltysh](https://github.com/soltysh))
    * Fix scheduler crashes when Prioritize Map function returns error. ([#69135](https://github.com/kubernetes/kubernetes/pull/69135), [@DylanBLE](https://github.com/DylanBLE))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    }
    
    func (f *fakeExtender) Filter(pod *v1.Pod, nodes []*framework.NodeInfo) ([]*framework.NodeInfo, extenderv1.FailedNodesMap, extenderv1.FailedNodesMap, error) {
    	return nil, nil, nil, nil
    }
    
    func (f *fakeExtender) Prioritize(
    	_ *v1.Pod,
    	_ []*framework.NodeInfo,
    ) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error) {
    	return nil, 0, nil
    }
    
    func (f *fakeExtender) Bind(binding *v1.Binding) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    		// Note that we do this phase after startRegs is set above, so that
    		// we get the right behavior for a block which branches to itself.
    		for _, e := range b.Succs {
    			succ := e.b
    			// TODO: prioritize likely successor?
    			for _, x := range s.startRegs[succ.ID] {
    				desired.add(x.v.ID, x.r)
    			}
    			// Process phi ops in succ.
    			pidx := e.i
    			for _, v := range succ.Values {
    				if v.Op != OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/README.md

    3fa4144ae044967581/staging/src/k8s.io/client-go/tools/leaderelection) that includes [prioritized leader election](https://github.com/kubernetes/kubernetes/pull/103442). These changes are required in order to make it so that the default revision wins leader elections and steals locks from non-default revisions. The changes were not upstreamed to k8s in time for the Istio 1.12 release.
    
    Ideally, prioritized leader election gets upstreamed in the near future ([KEP](https://github.com/kubernet...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  8. pkg/controller/podgc/doc.go

    // in terminated phases (right now either Failed or Succeeded) surpasses a
    // configurable threshold, the controller will delete pods in terminated state
    // until the system reaches the allowed threshold again. The PodGCController
    // prioritizes pods to delete by sorting by creation timestamp and deleting the
    // oldest objects first. The PodGCController will not delete non-terminated
    // pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  9. releasenotes/notes/36541.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36541
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 17 00:57:06 UTC 2021
    - 290 bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Some interfaces' signatures in the scheduler were updated: - PluginsRunner: used NodeInfo in `RunPreScorePlugins` and `RunScorePlugins`. - PreScorePlugin: used NodeInfo in `PreScore`. - Extender: used NodeInfo in `Filter` and `Prioritize`.
       ([#121954](https://github.com/kubernetes/kubernetes/pull/121954), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top