Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,491 for FRAMEWORK (0.56 sec)

  1. tests/integration/security/util/framework.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    const (
    	ASvc             = "a"
    	BSvc             = "b"
    	CSvc             = "c"
    	DSvc             = "d"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	preScorePlugins      []framework.PreScorePlugin
    	scorePlugins         []framework.ScorePlugin
    	reservePlugins       []framework.ReservePlugin
    	preBindPlugins       []framework.PreBindPlugin
    	bindPlugins          []framework.BindPlugin
    	postBindPlugins      []framework.PostBindPlugin
    	permitPlugins        []framework.PermitPlugin
    
    	// pluginsMap contains all plugins, by name.
    	pluginsMap map[string]framework.Plugin
    
    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. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/libs/awesome-framework-2.0.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/libs/awesome-framework-2.0.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		},
    		{
    			pod: newResourceInitPod(newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}), framework.Resource{MilliCPU: 3, Memory: 1}, framework.Resource{MilliCPU: 2, Memory: 1}),
    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 8, Memory: 19})),
    			name:       "too many resources fails due to highest init container cpu",
    			wantStatus: framework.NewStatus(framework.Unschedulable, getErrReason(v1.ResourceCPU)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	}
    	errStatus := framework.NewStatus(framework.Unschedulable, ErrReasonDiskConflict)
    	tests := []struct {
    		pod                 *v1.Pod
    		nodeInfo            *framework.NodeInfo
    		name                string
    		preFilterWantStatus *framework.Status
    		wantStatus          *framework.Status
    	}{
    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(),
    			name:                "nothing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework_test.go

    	return pl.inj.PreFilterResult, framework.NewStatus(framework.Code(pl.inj.PreFilterStatus), injectReason)
    }
    
    func (pl *TestPlugin) PreFilterExtensions() framework.PreFilterExtensions {
    	return pl
    }
    
    func (pl *TestPlugin) Filter(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeInfo *framework.NodeInfo) *framework.Status {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		// See: https://github.com/kubernetes/kubernetes/issues/110175
    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.UpdateNodeLabel | framework.UpdateNodeTaint}},
    		// We rely on CSI node to translate in-tree PV to CSI.
    		{Event: framework.ClusterEvent{Resource: framework.CSINode, ActionType: framework.Add | framework.Update}},
    		// When CSIStorageCapacity is enabled, pods may become schedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/fake_plugins.go

    func (pl *FalseFilterPlugin) Filter(_ context.Context, _ *framework.CycleState, pod *v1.Pod, nodeInfo *framework.NodeInfo) *framework.Status {
    	return framework.NewStatus(framework.Unschedulable, ErrReasonFake)
    }
    
    // NewFalseFilterPlugin initializes a FalseFilterPlugin and returns it.
    func NewFalseFilterPlugin(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    	return &FalseFilterPlugin{}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/examples/multipoint/multipoint.go

    }
    
    func (s *stateData) Clone() framework.StateData {
    	copy := &stateData{
    		data: s.data,
    	}
    	return copy
    }
    
    // Reserve is the function invoked by the framework at "reserve" extension point.
    func (mc CommunicatingPlugin) Reserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) *framework.Status {
    	if pod == nil {
    		return framework.NewStatus(framework.Error, "pod cannot be nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top