Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 517 for STARTED (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/union_test.go

    	return "cannotMultipleRunBackend"
    }
    
    func TestUnionRun(t *testing.T) {
    	backends := []Backend{
    		&cannotMultipleRunBackend{started: make(chan struct{})},
    		&cannotMultipleRunBackend{started: make(chan struct{})},
    		&cannotMultipleRunBackend{started: make(chan struct{})},
    	}
    
    	b := Union(backends...)
    
    	if err := b.Run(make(chan struct{})); err != nil {
    		t.Errorf("union backend run: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 20 09:51:25 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapterTest.groovy

            BuildOperationDescriptor generatedDescriptor;
    
            when:
            adapter.started(testDescriptorInternal, testStartEvent)
    
            then:
            1 * buildOperationIdFactory.nextId() >> 1
            1 * clock.currentTime >> 0
            1 * listener.started(_, _) >> {
                generatedDescriptor = it[0]
                assert generatedDescriptor.details.testDescriptor == testDescriptorInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top