Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for propFilename (0.29 sec)

  1. pkg/scheduler/scheduler.go

    	}
    
    	preEnqueuePluginMap := make(map[string][]framework.PreEnqueuePlugin)
    	queueingHintsPerProfile := make(internalqueue.QueueingHintMapPerProfile)
    	for profileName, profile := range profiles {
    		preEnqueuePluginMap[profileName] = profile.PreEnqueuePlugins()
    		queueingHintsPerProfile[profileName] = buildQueueingHintMap(profile.EnqueueExtensions())
    	}
    
    	podQueue := internalqueue.NewSchedulingQueue(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one.go

    		reason = v1.PodReasonUnschedulable
    	}
    
    	switch reason {
    	case v1.PodReasonUnschedulable:
    		metrics.PodUnschedulable(fwk.ProfileName(), metrics.SinceInSeconds(start))
    	case v1.PodReasonSchedulerError:
    		metrics.PodScheduleError(fwk.ProfileName(), metrics.SinceInSeconds(start))
    	}
    
    	pod := podInfo.Pod
    	err := status.AsError()
    	errMsg := status.Message()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/interface.go

    	HasScorePlugins() bool
    
    	// ListPlugins returns a map of extension point name to list of configured Plugins.
    	ListPlugins() *config.Plugins
    
    	// ProfileName returns the profile name associated to a profile.
    	ProfileName() string
    
    	// PercentageOfNodesToScore returns percentageOfNodesToScore associated to a profile.
    	PercentageOfNodesToScore() *int32
    
    	// SetPodNominator sets the PodNominator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. pkg/scheduler/scheduler_test.go

    					!actualPodNamesInWaitingPods.HasAll(tc.expectPodNamesInWaitingPods...) {
    					t.Fatalf("Unexpected waitingPods in scheduler profile %s, expect: %#v, got: %#v", fwk.ProfileName(), tc.expectPodNamesInWaitingPods, actualPodNamesInWaitingPods.List())
    				}
    			}
    		})
    	}
    }
    
    var _ framework.QueueSortPlugin = &fakeQueueSortPlugin{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.9.md

        *   CRI now uses the correct localhost seccomp path when provided with input in the format of localhost//profileRoot/profileName. ([#55450](https://github.com/kubernetes/kubernetes/pull/55450), [@feiskyer](https://github.com/feiskyer))
    
    
    #### **Kubelet**
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Update jquery and bootstrap dependencies ([#56445](https://github.com/kubernetes/kubernetes/pull/56445), [@dashpole](https://github.com/dashpole))
    * Fix CRI localhost seccomp path in format localhost//profileRoot/profileName. ([#55450](https://github.com/kubernetes/kubernetes/pull/55450), [@feiskyer](https://github.com/feiskyer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top