Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for actionType (0.3 sec)

  1. pilot/pkg/networking/plugin/authz/authorization.go

    	tcpFilters  []*listener.Filter
    	builder     *builder.Builder
    }
    
    func NewBuilder(actionType ActionType, push *model.PushContext, proxy *model.Proxy, useFilterState bool) *Builder {
    	return NewBuilderForService(actionType, push, proxy, useFilterState, nil)
    }
    
    func NewBuilderForService(actionType ActionType, push *model.PushContext, proxy *model.Proxy, useFilterState bool, svc *model.Service) *Builder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/events.go

    	// NodeLabelChange is the event when node label is changed.
    	NodeLabelChange = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.UpdateNodeLabel, Label: "NodeLabelChange"}
    	// NodeAnnotationChange is the event when node annotation is changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

            then:
            executedAndNotSkipped(":myTask")
    
            where:
            kotlinLanguageVersion << KotlinGradlePluginVersions.LANGUAGE_VERSIONS
        }
    
        private void setupTaskWithNestedAction(String actionType, String actionInvocation, TestFile projectDir = temporaryFolder.testDirectory) {
            projectDir.with {
                file('buildSrc/settings.gradle.kts') << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    	return []framework.ClusterEventWithHint{
    		// Due to immutable fields `spec.containers[*].ports`, pod update events are ignored.
    		{Event: framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Delete}, QueueingHintFn: pl.isSchedulableAfterPodDeleted},
    		// TODO(#110175): Ideally, it's supposed to register only NodeCreated, because NodeUpdated event never means to have any free ports for the Pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    func (pl *TaintToleration) EventsToRegister() []framework.ClusterEventWithHint {
    	clusterEventWithHint := []framework.ClusterEventWithHint{
    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.Update}, QueueingHintFn: pl.isSchedulableAfterNodeChange},
    	}
    	if !pl.enableSchedulingQueueHint {
    		return clusterEventWithHint
    	}
    	// When the QueueingHint feature is enabled,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	// https://github.com/kubernetes/kubernetes/pull/122234
    	return []framework.ClusterEventWithHint{
    		// Pods can be more schedulable once it's gates are removed
    		{Event: framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Update}, QueueingHintFn: pl.isSchedulableAfterPodChange},
    	}
    }
    
    // New initializes a new plugin and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top