Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,044 for STARTED (0.11 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

            this
        }
    
        @PackageScope
        GradleExecResult execute(String... command) {
            if (!started) {
                container.withCommand("tail", "-f", "/dev/null")
                startContainer()
            }
            return container.execute(command)
        }
    
        void startContainer() {
            started = true
            container.start()
            monitor = new Thread(new Runnable() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

                processor.started(suiteDescriptor, suiteStartEvent)
                processor.started(testDescriptor, testStartEvent)
                processor.completed("test", finishEvent)
                processor.completed("suite", finishEvent)
    
                processor.started(suiteDescriptor, suiteStartEvent)
                processor.completed("suite", finishEvent)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/testing/sub_test.go

    			{typ: add1, running: 3, waiting: 3, started: false},
    			{typ: done, running: 3, waiting: 2, started: true},
    			{typ: add1, running: 3, waiting: 3, started: false},
    			{typ: done, running: 3, waiting: 2, started: true},
    			{typ: done, running: 3, waiting: 1, started: true},
    			{typ: done, running: 3, waiting: 0, started: true},
    			{typ: done, running: 2, waiting: 0, started: false},
    			{typ: done, running: 1, waiting: 0, started: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

        }
    
        def "multiple threads can coordinate locking of a project"() {
            def threadCount = 10
            def started = new CountDownLatch(threadCount)
    
            when:
            async {
                threadCount.times {
                    start {
                        started.countDown()
                        thread.blockUntil.releaseAll
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. mockwebserver-junit5/src/test/java/mockwebserver3/junit5/internal/ExtensionMultipleInstancesTest.kt

      ) {
        defaultInstancePort = defaultInstance.port
        instanceAPort = instanceA.port
        instanceBPort = instanceB.port
        assertThat(defaultInstance.started).isTrue()
        assertThat(instanceA.started).isTrue()
        assertThat(instanceB.started).isTrue()
        assertThat(defaultInstancePort).isNotEqualTo(instanceAPort)
        assertThat(defaultInstancePort).isNotEqualTo(instanceBPort)
      }
    
      @AfterEach
      fun tearDown(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

        def "allows events to be added as enum values"() {
            when:
            logging.events STARTED, SKIPPED
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows events to be added as string values"() {
            when:
            logging.events "started", "skipped"
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. operator/pkg/helm/renderer.go

    	if err := h.loadChart(); err != nil {
    		return err
    	}
    
    	h.started = true
    	return nil
    }
    
    // RenderManifest renders the current helm templates with the current values and returns the resulting YAML manifest string.
    func (h *Renderer) RenderManifest(values string) (string, error) {
    	if !h.started {
    		return "", fmt.Errorf("fileTemplateRenderer for %s not started in renderChart", h.componentName)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. docs/em/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTransformOperationsTest.groovy

            _ * startEvent.getDisplayName() >> 'Transform started'
            _ * startEvent.getDescriptor() >> transformDescriptor
    
            adapter.onEvent(startEvent)
    
            then:
            1 * listener.statusChanged(_ as TransformStartEvent) >> { TransformStartEvent event ->
                assertTrue event.eventTime == 999
                assertTrue event.displayName == "Transform started"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

            def taskOutput = getTaskOutput(result)
            matchesTaskOutput(taskOutput, testLogEventRegex(TestLogEvent.SKIPPED.consoleMarker))
        }
    
        def "can group started test log event with task if configured"() {
            given:
            buildFile << testLoggingEvents(TestLogEvent.STARTED.testLoggingIdentifier)
            file(JAVA_TEST_FILE_PATH) << javaTestClass { '' }
    
            when:
            executer.withConsole(consoleType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top