Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for HEvent (1.6 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			[]framework.ClusterEventWithHint{
    				{Event: framework.ClusterEvent{Resource: "Pod", ActionType: framework.Update | framework.Delete}},
    				{Event: framework.ClusterEvent{Resource: "Node", ActionType: framework.Add | framework.Update}},
    			},
    		},
    		{
    			"Register events with InPlacePodVerticalScaling feature disabled",
    			false,
    			[]framework.ClusterEventWithHint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	// need to return all specific cluster events with framework.All action instead of wildcard event
    	// because the returning values are used to register event handlers.
    	// If we return the wildcard here, it won't affect the event handlers registered by the plugin
    	// and some events may not be registered in the event handlers.
    	return framework.UnrollWildCardResource()
    }
    
    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. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// both for allowed or denied admission responses.
    	//
    	// "Audit" specifies that a validation failure is included in the published
    	// audit event for the request. The audit event will contain a
    	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
    	// with a value containing the details of the validation failures, formatted as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	go func() {
    		awaitBlockedGoroutine(t, "sync.Mutex.Lock", "blockMutex", 1)
    		mu.Unlock()
    	}()
    	// Note: Unlock releases mu before recording the mutex event,
    	// so it's theoretically possible for this to proceed and
    	// capture the profile before the event is recorded. As long
    	// as this is blocked before the unlock happens, it's okay.
    	mu.Lock()
    }
    
    func blockMutexN(t *testing.T, n int, d time.Duration) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    		events := processed[uid]
    		if len(events) < 1 || len(events) > i+1 {
    			t.Errorf("Pod %v processed %v times", i, len(events))
    			continue
    		}
    
    		// PodWorker guarantees the last event will be processed
    		last := len(events) - 1
    		if events[last].name != strconv.Itoa(i) {
    			t.Errorf("Pod %v: incorrect order %v, %#v", i, last, events)
    		}
    	}
    }
    
    func TestUpdatePod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // it has sanity checks to ensure that we do not write events that can abuse our masters.
    // in particular, it ensures that a containerID never appears in an event message as that
    // is prone to causing a lot of distinct events that do not count well.
    // it replaces any reference to a containerID with the containerName which is stable, and is what users know.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // both for allowed or denied admission responses.
      //
      // "Audit" specifies that a validation failure is included in the published
      // audit event for the request. The audit event will contain a
      // `validation.policy.admission.k8s.io/validation_failure` audit annotation
      // with a value containing the details of the validation failures, formatted as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    	fi.TransitionedObjName = destObj
    	fi.TransitionTier = opts.Transition.Tier
    	fi.TransitionVersionID = string(rv)
    	eventName := event.ObjectTransitionComplete
    
    	storageDisks := er.getDisks()
    
    	if err = er.deleteObjectVersion(ctx, bucket, object, fi, false); err != nil {
    		eventName = event.ObjectTransitionFailed
    	}
    
    	for _, disk := range storageDisks {
    		if disk != nil && disk.IsOnline() {
    			continue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		eventClientConfig.Burst = int(s.EventBurst)
    		kubeDeps.EventClient, err = v1core.NewForConfig(&eventClientConfig)
    		if err != nil {
    			return fmt.Errorf("failed to initialize kubelet event client: %w", err)
    		}
    
    		// make a separate client for heartbeat with throttling disabled and a timeout attached
    		heartbeatClientConfig := *clientConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

    import org.gradle.api.tasks.Nested
    import org.gradle.api.tasks.Optional
    import org.gradle.api.tasks.OutputDirectories
    import org.gradle.api.tasks.OutputDirectory
    import org.gradle.api.tasks.OutputFile
    import org.gradle.build.event.BuildEventsListenerRegistry
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top