Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for finishes (0.22 sec)

  1. pkg/scheduler/internal/queue/events.go

    	PodAdd = "PodAdd"
    	// ScheduleAttemptFailure is the event when a schedule attempt fails.
    	ScheduleAttemptFailure = "ScheduleAttemptFailure"
    	// BackoffComplete is the event when a pod finishes backoff.
    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    	// to activeQ. Usually it's triggered by plugin implementations.
    	ForceActivate = "ForceActivate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/types.go

    	Template corev1.PodTemplateSpec `json:"template" protobuf:"bytes,6,opt,name=template"`
    
    	// ttlSecondsAfterFinished limits the lifetime of a Job that has finished
    	// execution (either Complete or Failed). If this field is set,
    	// ttlSecondsAfterFinished after the Job finishes, it is eligible to be
    	// automatically deleted. When the Job is being deleted, its lifecycle
    	// guarantees (e.g. finalizers) will be honored. If this field is unset,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    == Performance Monitoring
    
    Gradle actively monitors heap usage to detect memory leaks in the Daemon.
    
    When a memory leak exhausts available heap space, the Daemon:
    
    . Finishes the currently running build.
    . Restarts before running the next build.
    
    Gradle enables this monitoring by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	// subsequent requests on this connection and stop reading
    	// input from it.
    	requestBodyLimitHit bool
    
    	// trailers are the headers to be sent after the handler
    	// finishes writing the body. This field is initialized from
    	// the Trailer response header when the response header is
    	// written.
    	trailers []string
    
    	handlerDone atomic.Bool // set true when the handler exits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    	// it is safe to release the lock after the method finishes because we don't require
    	// any atomicity between the call to the method and further calls that actually get the events.
    	err = c.waitUntilWatchCacheFreshAndForceAllEvents(ctx, requiredResourceVersion, opts)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            gcFile.lastModified() >= SECONDS.toMillis(beforeCleanup)
            cachedTransform.assertExists()
    
            when: 'transforming build is allowed to finish'
            transformBarrier.releaseAll()
    
            then: 'transforming build finishes successfully'
            transformingBuild.waitForFinish()
        }
    
        def "does not clean up cache when cache cleanup is disabled via #cleanupMethod"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	}
    	if !strings.Contains(buf.String(), "Connection: close\r\n") {
    		t.Errorf("expected 'Connection: close' in response; got: %s", buf.String())
    	}
    }
    
    // If a Handler finishes and there's an unread request body,
    // verify the server implicitly tries to do a read on it before replying.
    func TestHandlerFinishSkipBigContentLengthRead(t *testing.T) {
    	setParallel(t)
    	conn := newTestConn()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/controller/job/backoff_utils.go

    		p2 := pods[j]
    		p1FinishTime := getFinishedTime(p1)
    		p2FinishTime := getFinishedTime(p2)
    
    		return p1FinishTime.Before(p2FinishTime)
    	})
    }
    
    // Returns the pod finish time using the following lookups:
    // 1. if all containers finished, use the latest time
    // 2. if the pod has Ready=False condition, use the last transition time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    	// In a production environment, there wouldn't be these guarantees, but the Pod would be cleaned up
    	// by the orphan pod worker, when the Pod finishes.
    	if err := wait.PollUntilContextTimeout(ctx, 10*time.Millisecond, wait.ForeverTestTimeout, false, func(ctx context.Context) (bool, error) {
    		pod, _ := manager.podStore.Pods(pod.GetNamespace()).Get(pod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top