Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,715 for startm (0.33 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            assertDifferentDaemonsWereUsed("startDaemon2", "startDaemon3")
            assertDifferentDaemonsWereUsed("startDaemon1", "startDaemon3")
        }
    
        def "starts a new worker daemon when there are no idle compatible worker daemons available"() {
            blockingServer.start()
            blockingServer.expectConcurrent("runInDaemon", "startNewDaemon")
    
            fixture.withWorkActionClassInBuildSrc()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    			http.StatusNotImplemented)
    		ui.options.UI.PrintErr("Failed to execute dot. Is Graphviz installed?\n", err)
    		return
    	}
    
    	// Get all node names into an array.
    	nodes := []string{""} // dot starts with node numbered 1
    	for _, n := range g.Nodes {
    		nodes = append(nodes, n.Info.Name)
    	}
    
    	ui.render(w, req, "graph", rpt, errList, legend, webArgs{
    		HTMLBody: template.HTML(string(svg)),
    		Nodes:    nodes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    	result := true
    	bits := uint64(0)
    	start := 0
    	wid := 1 // 1-bit (binary); sometimes 4-bit (hex)
    	for i := 0; i <= len(p); i++ {
    		// Imagine a trailing - at the end of the pattern to flush final suffix
    		c := byte('-')
    		if i < len(p) {
    			c = p[i]
    		}
    		if i == start && wid == 1 && c == 'x' { // leading x for hex
    			start = i + 1
    			wid = 4
    			continue
    		}
    		switch c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	}
    
    	// Ensure [start,end) is nondecreasing.
    	if start > end {
    		start, end = end, start
    	}
    
    	if start < root.End() && end > root.Pos() {
    		if start == end {
    			end = start + 1 // empty interval => interval of size 1
    		}
    		exact = visit(root)
    
    		// Reverse the path:
    		for i, l := 0, len(path); i < l/2; i++ {
    			path[i], path[l-1-i] = path[l-1-i], path[i]
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    	return m.recorder
    }
    
    // Start mocks base method.
    func (m *MockCgroupNotifier) Start(eventCh chan<- struct{}) {
    	m.ctrl.T.Helper()
    	m.ctrl.Call(m, "Start", eventCh)
    }
    
    // Start indicates an expected call of Start.
    func (mr *MockCgroupNotifierMockRecorder) Start(eventCh any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/crypto/tls/quic.go

    		conn: conn,
    	}
    }
    
    // Start starts the client or server handshake protocol.
    // It may produce connection events, which may be read with [QUICConn.NextEvent].
    //
    // Start must be called at most once.
    func (q *QUICConn) Start(ctx context.Context) error {
    	if q.conn.quic.started {
    		return quicError(errors.New("tls: Start called more than once"))
    	}
    	q.conn.quic.started = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

        }
    
        public void "can start and stop with system capture enabled"() {
            loggingManager.captureSystemSources()
    
            final LoggingSystem.Snapshot stdOutSnapshot = Mock(LoggingSystem.Snapshot.class)
            final LoggingSystem.Snapshot stdErrSnapshot = Mock(LoggingSystem.Snapshot.class)
    
            when:
            loggingManager.start()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"start": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n  [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            void add(long key, Index index) {
                if (stdOut.start < 0) {
                    stdOut.start = index.stdOut.start;
                }
                if (stdErr.start < 0) {
                    stdErr.start = index.stdErr.start;
                }
                if (index.stdOut.stop > stdOut.stop) {
                    stdOut.stop = index.stdOut.stop;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/compile.go

    				stats = fmt.Sprintf("[%d ns %d allocs %d bytes]", time, nAllocs, nBytes)
    			} else {
    				stats = fmt.Sprintf("[%d ns]", time)
    			}
    
    			if f.Log() {
    				f.Logf("  pass %s end %s\n", p.name, stats)
    				printFunc(f)
    			}
    			f.HTMLWriter.WritePhase(phaseName, fmt.Sprintf("%s <span class=\"stats\">%s</span>", phaseName, stats))
    		}
    		if p.time || p.mem {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top