Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 517 for STARTED (0.16 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/logging/DaemonMessages.java

     */
    
    package org.gradle.launcher.daemon.logging;
    
    public abstract class DaemonMessages {
        public final static String PROCESS_STARTED = "Daemon server started.";
        public final static String ABOUT_TO_CLOSE_STREAMS = "Daemon started. About to close the streams. Daemon details: ";
        public final static String STARTED_RELAYING_LOGS = "The client will now receive all logging from the daemon (pid: ";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. operator/pkg/helm/fs_renderer_test.go

    		wantErr               error
    	}{
    		{
    			desc:                  "not-started",
    			inValues:              "",
    			startRender:           false,
    			inChart:               chart.Chart{},
    			objFileTemplateReader: Renderer{},
    			wantResult:            "",
    			wantErr:               errors.New("fileTemplateRenderer for not started in renderChart"),
    		},
    		{
    			desc: "started-random-template",
    			inValues: `
    description: test
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 24 21:09:19 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. docs/zh/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.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildStartedTime.java

     */
    
    package org.gradle.internal.buildevents;
    
    /**
     * The holder for when the build is considered to have started.
     *
     * This is primarily used to provide user feedback on how long the “build” took (see BuildResultLogger).
     *
     * The build is considered to have started as soon as the user, or some tool, initiated the build.
     * During continuous build, subsequent builds are timed from when changes are noticed.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 03:50:47 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/rich/RichConsoleBasicGroupedTaskLoggingFunctionalTest.groovy

            assertOutputContains(gradle, "longRunning has started...")
    
            when:
            server.expectConcurrent('longRunningFinish', 'task2')
            handle.releaseAll()
            result = gradle.waitForFinish()
    
            then:
            result.groupedOutput.task(':a:longRunning').outputs.size() == 1
            result.groupedOutput.task(':a:longRunning').output == "longRunning has started...\nlongRunning has finished..."
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. mockwebserver-junit5/src/main/kotlin/mockwebserver3/junit5/internal/MockWebServerExtension.kt

        private val servers = mutableMapOf<String, MockWebServer>()
        private var started = false
    
        fun server(name: String): MockWebServer {
          return servers.getOrPut(name) {
            MockWebServer().also {
              if (started) it.start()
            }
          }
        }
    
        fun startAll() {
          started = true
          for (server in servers.values) {
            server.start()
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 11 12:12:36 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

        name: nameValue
        ready: true
        resources:
          claims:
          - name: nameValue
          limits:
            limitsKey: "0"
          requests:
            requestsKey: "0"
        restartCount: 5
        started: true
        state:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    	return b
    }
    
    // WithStarted sets the Started field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Started field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithStarted(value bool) *ContainerStatusApplyConfiguration {
    	b.Started = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

        get() = delegate.protocols
        set(value) {
          delegate.protocols = value
        }
    
      init {
        delegate.dispatcher = dispatcher.wrap()
      }
    
      private var started: Boolean = false
    
      @Synchronized override fun before() {
        if (started) return
        try {
          start()
        } catch (e: IOException) {
          throw RuntimeException(e)
        }
      }
    
      @JvmName("-deprecated_port")
      @Deprecated(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/SharedResourceLeaseRegistryTest.groovy

            given:
            sharedResourceLeaseRegistry.registerSharedResource('resource', 1)
            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 Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top