Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,227 for STARTING (0.17 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/StaleDaemonAddressException.java

    /**
     * Thrown when connected to a stale daemon address.
     *
     * This is thrown instead of using an initial handshake on the connection, to avoid the latency of a round trip to the
     * daemon before starting the build.
     */
    public class StaleDaemonAddressException extends DaemonConnectionException {
        public StaleDaemonAddressException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. pkg/proxy/healthcheck/proxier_health.go

    		healthTimeout: healthTimeout,
    
    		lastUpdatedMap:         make(map[v1.IPFamily]time.Time),
    		oldestPendingQueuedMap: make(map[v1.IPFamily]time.Time),
    		// The node is eligible (and thus the proxy healthy) while it's starting up
    		// and until we've processed the first node event that indicates the
    		// contrary.
    		nodeEligible: true,
    	}
    }
    
    // Updated should be called when the proxier of the given IP family has successfully updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                searchClassPath = Collections.emptyList();
            }
            if (classpath.isEmpty()) {
                throw new IllegalStateException("Unable to construct a bootstrap classpath when starting the daemon");
            }
    
            versionValidator.validate(resolvedJvm);
    
            List<String> daemonArgs = new ArrayList<>();
            daemonArgs.addAll(getPriorityArgs(daemonParameters.getPriority()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_errors_pos.txt

    # Test case for #67623 in go.work files: make sure the errors are
    # printed on lines starting with file and line number so they
    # can be easily parsed by tools.
    
    cp go.work.repeated.txt go.work
    ! go list
    stderr '^go.work:4: path .* appears multiple times in workspace$'
    
    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildUnitTestConfigurationCacheSmokeTest.groovy

            and:
            configurationCacheRun supportedTasks + ["--info"], 1
    
            then:
            result.assertConfigurationCacheStateLoaded()
            result.output.contains("Starting build in new daemon")
            result.task(":tooling-api:publishLocalPublicationToLocalRepository").outcome == TaskOutcome.SUCCESS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/gover/gomod.go

    // license that can be found in the LICENSE file.
    
    package gover
    
    import (
    	"bytes"
    	"strings"
    )
    
    var nl = []byte("\n")
    
    // GoModLookup takes go.mod or go.work content,
    // finds the first line in the file starting with the given key,
    // and returns the value associated with that key.
    //
    // Lookup should only be used with non-factored verbs
    // such as "go" and "toolchain", usually to find versions
    // or version-like strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:31:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/testdata/input/format_txt.log

    2020-06-29T23:37:27.336155Z	info	Channel switches to new LB policy "pick_first"
    2020-06-29T23:37:27.336189Z	info	Subchannel Connectivity change to CONNECTING
    2020-06-29T23:37:27.336222Z	info	Starting gateway SDS
    2020-06-29T23:37:27.336491Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {CONNECTING <nil>}
    2020-06-29T23:37:27.336645Z	info	Channel Connectivity change to CONNECTING
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    Expected: A failure description which is a string starting with "broken!"
         but: failure descriptions were []''')
    
            when:
            failure.assertHasCause("broken!")
    
            then:
            def e3 = thrown(AssertionError)
            e3.message.trim().startsWith('''No matching cause found
    Expected: A cause which is a string starting with "broken!"
         but: causes were []''')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/metrics/metrics.go

    	// is dependent on readiness probes. This means our granularity is correlated to
    	// the probing interval.
    	startupTime = monitoring.NewGauge(
    		"startup_duration_seconds",
    		"The time from the process starting to being marked ready.",
    	)
    
    	// scrapeErrors records total number of failed scrapes.
    	scrapeErrors = monitoring.NewSum(
    		"scrape_failures_total",
    		"The total number of failed scrapes.",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizer.groovy

                : output
        }
    
        private String normalizeScalaOutput(String output) {
            PATTERN.matcher(output)
                .replaceAll("")
                .with {
                    // remove starting empty line
                    it.startsWith('\n')
                        ? it.substring(1)
                        : it
                }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top