Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for startm (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

         * Returns additional JVM args that should be used to start the build JVM.
         */
        protected List<String> getImplicitBuildJvmArgs() {
            List<String> buildJvmOpts = new ArrayList<>();
            buildJvmOpts.add("-ea");
    
            if (isDebug()) {
                if (System.getenv().containsKey("CI")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	testServer.Server.TLS = config
    	testServer.Server.StartTLS()
    	return testServer
    }
    
    // Starts the test server and returns the TestServer instance.
    func StartTestServer(t TestErrHandler, instanceType string) TestServer {
    	// create an instance of TestServer.
    	testServer := UnstartedTestServer(t, instanceType)
    	testServer.Server.Start()
    	return testServer
    }
    
    // Sets the global config path to empty string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    			panic(fmt.Errorf("line %d doesn't start with expected number (%d) of tabs: %v", i, len(prefix), string(line)))
    		}
    		lines[i] = line[len(prefix):]
    	}
    	joined := string(bytes.Join(lines, []byte{'\n'}))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    message StartupProbe {
      // Enables or disables a startup probe.
      // For optimal startup times, changing this should be tied to the readiness probe values.
      //
      // If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
      // This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			// change the build list.
    			//
    			// The result of any version query for a given module — even "upgrade" or
    			// "patch" — is always relative to the build list at the start of
    			// the 'go get' command, not an intermediate state, and is therefore
    			// deterministic and therefore cacheable, and the constraints on the
    			// selected version of each module can only narrow as we iterate.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	timestampProposal time.Time, condition autoscalingv2.HorizontalPodAutoscalerCondition, err error) {
    	// actionLabel is used to report which actions this reconciliation has taken.
    	start := time.Now()
    	defer func() {
    		actionLabel := monitor.ActionLabelNone
    		switch {
    		case replicaCountProposal > hpa.Status.CurrentReplicas:
    			actionLabel = monitor.ActionLabelScaleUp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    			if msg[0] != '/' {
    				p.errorAt(p.posAt(line, col), msg)
    				return
    			}
    
    			// otherwise it must be a comment containing a line or go: directive.
    			// //line directives must be at the start of the line (column colbase).
    			// /*line*/ directives can be anywhere in the line.
    			text := commentText(msg)
    			if (col == colbase || msg[1] == '*') && strings.HasPrefix(text, "line ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	l := st.l
    	var start, end uint32
    	switch kind {
    	case pkgDef:
    		start = 0
    		end = uint32(r.ndef)
    	case hashed64Def:
    		start = uint32(r.ndef)
    		end = uint32(r.ndef + r.nhashed64def)
    	case hashedDef:
    		start = uint32(r.ndef + r.nhashed64def)
    		end = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    	case nonPkgDef:
    		start = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager_test.go

    		t.Helper()
    		if state.Terminated == nil || state.Running != nil || state.Waiting != nil {
    			t.Fatalf("unexpected state: %#v", state)
    		}
    		if state.Terminated.ExitCode != exitCode {
    			t.Fatalf("unexpected terminated state: %#v", state.Terminated)
    		}
    	}
    	expectWaiting := func(t *testing.T, state v1.ContainerState) {
    		t.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	if len(pr.Reason)+len(other.Reason) > 0 {
    		reason = make(ReasonStats)
    		reason.Merge(pr.Reason)
    		reason.Merge(other.Reason)
    	}
    	merged := &PushRequest{
    		// Keep the first (older) start time
    		Start: pr.Start,
    
    		// If either is full we need a full push
    		Full: pr.Full || other.Full,
    
    		// The other push context is presumed to be later and more up to date
    		Push: other.Push,
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top