Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,044 for STARTED (0.12 sec)

  1. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    2019-11-12 22:14:43.820  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : No active profile set, falling back to default profiles: default
    2019-11-12 22:14:44.108  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : Started SpringBootDemoApplication in 5.537 seconds (JVM running for 5.8)
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/prober_manager.go

    	// started.
    	if _, exists := m.getWorker(pod.UID, containerStatus.Name, startup); exists {
    		return false
    	}
    
    	// there is no startup probe, so the container is started.
    	return true
    }
    
    func (m *manager) UpdatePodStatus(pod *v1.Pod, podStatus *v1.PodStatus) {
    	for i, c := range podStatus.ContainerStatuses {
    		started := m.isContainerStarted(pod, &podStatus.ContainerStatuses[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

     *
     * Implementations are thread safe and can be signalled concurrently.
     * However, a finished signal must not be emitted before the signal of the
     * corresponding started event has returned.
     *
     * Implementations may retain the notification values beyond the method that passed them.
     * Started notifications maybe held until a corresponding finished notification, and slightly after.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            1 * javaUtilLoggingSystem.restore(javaUtilSnapshot)
            0 * loggingRouter._
            0 * slf4jLoggingSystem._
            0 * javaUtilLoggingSystem._
        }
    
        public void "can change capture level while started"() {
            final LoggingSystem.Snapshot stdOutSnapshot = Mock(LoggingSystem.Snapshot.class)
            final LoggingSystem.Snapshot stdErrSnapshot = Mock(LoggingSystem.Snapshot.class)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  5. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    func TestSinglePodOneImageDownloadRecorded(t *testing.T) {
    
    	t.Run("single pod; started in 3s, image pulling 100ms", func(t *testing.T) {
    
    		wants := `
    # HELP kubelet_pod_start_sli_duration_seconds [ALPHA] Duration in seconds to start a pod, excluding time to pull images and run init containers, measured from pod creation timestamp to when all its containers are reported as started and observed via watch
    # TYPE kubelet_pod_start_sli_duration_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/internal/progress/NoOpProgressLoggerFactory.groovy

                this
            }
    
            ProgressLogger start(String description, String status) {
                setDescription(description)
                started()
                this
            }
    
            void started() {}
            void started(String status) {}
            void progress(String status) {}
            void progress(String status, boolean failing) {}
            void completed() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 17:26:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/internal/progress/RecordingProgressLoggerFactory.groovy

                this
            }
    
            ProgressLogger start(String description, String status) {
                setDescription(description)
                started()
                this
            }
    
            void started() {}
    
            void started(String status) {
                messages.add(status)
            }
    
            void progress(String status) {
                messages.add(status)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 27 07:57:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLoggerFactory.java

        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
         * @return The progress logger for the operation.
         */
        ProgressLogger newOperation(String loggerCategory);
    
        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientCancellationHandler.java

            this.buildCancellationToken = buildCancellationToken;
        }
    
        public void start() {
            if (started.compareAndSet(false, true)) {
                buildCancellationToken.addCallback(cancellationCallback);
            }
        }
    
        @Override
        public void stop() {
            if (started.compareAndSet(true, false)) {
                buildCancellationToken.removeCallback(cancellationCallback);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixtureTest.groovy

            then:
            noExceptionThrown()
    
            where:
            notificationMethod | testedIf       | notificationEvent
            'started'          | SimpleDetails  | startedNotification(SimpleDetails)
            'started'          | EmptyDetails   | startedNotification(EmptyDetails)
            'progress'         | SimpleProgress | progressNotification(SimpleProgress)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top