Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for propFilename (0.76 sec)

  1. tests/integration/operator/switch_cr_test.go

    	}
    }
    
    func installWithCRFile(t framework.TestContext, ctx resource.Context, cs cluster.Cluster,
    	istioCtl istioctl.Instance, profileName string, revision string,
    ) {
    	scopes.Framework.Infof(fmt.Sprintf("=== install istio with profile: %s===\n", profileName))
    	metadataYAML := `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_linux_test.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    )
    
    func seccompLocalhostRef(profileName string) string {
    	return filepath.Join(fakeSeccompProfileRoot, profileName)
    }
    
    func TestMilliCPUToQuota(t *testing.T) {
    	for _, testCase := range []struct {
    		msg      string
    		input    int64
    		expected int64
    		period   uint64
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top