Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,945 for bstart (0.29 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            when:
            renderer.onOutput(start(1))
            console.flush()
    
            then:
            progressArea.display == []
        }
    
        def "parent progress operation without message is ignored when renderable child completes"() {
            when:
            renderer.onOutput(start(1))
            renderer.onOutput(start(id: 2, parentId: 1, status: ":foo"))
            renderer.onOutput(start(id: 3, parentId: null, status: ":bar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

            BuildOperationState operationStateUnderTest
    
            when:
            def contextUnderTest = operationRunner.start(operationDetailsBuilder)
    
            then:
            1 * timeProvider.currentTime >> 123L
            1 * listener.start(_, _) >> { BuildOperationDescriptor descriptor, BuildOperationState operationState ->
                descriptorUnderTest = descriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. tensorflow/cc/training/coordinator_test.cc

        if (start != nullptr) start->WaitForNotification();
        while (!coord_->ShouldStop() && counter->load() < until) {
          (*counter)++;
          Env::Default()->SleepForMicroseconds(10 * 1000);
        }
        coord_->RequestStop().IgnoreError();
      }
      void SetStatusThread(const Status& status, BlockingCounter* counter,
                           Notification* start) {
        start->WaitForNotification();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 23 09:10:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

            def output = output()
    
            when:
            output.text(eol)
            output.text(eol)
            output.text("$eol$eol")
    
            then:
            result.toString() == "{eol}{start}{eol}{start}{eol}{start}{eol}"
    
            where:
            [type, eol] << EOLS
        }
    
        def "appends eol to current line [#type]"() {
            def output = output()
    
            when:
            output.text("some text")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K 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. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

            }
            def action2 = {
                thread.blockUntil.action1Started
                instant.action2Done
            }
    
            when:
            async {
                start {
                    lifecycle.use(action1)
                }
                start {
                    lifecycle.use(action2)
                }
            }
    
            then:
            instant.action1Done > instant.action2Done
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// alignment should be different from that of stextOffset.
    			return start - *stextOffset, true
    		}
    
    		return start - loadSegment.Vaddr, true
    	}
    	if start%pageSize != 0 && stextOffset != nil && *stextOffset%pageSize == start%pageSize {
    		// ChromeOS remaps its kernel to 0 + start%pageSize. Nothing
    		// else should come down this path. Empirical values:
    		//       start=0x198 limit=0x2f9fffff offset=0
    		//       VADDR=0xffffffff81000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/break.go

    	start := i
    	for start > 0 && (s[start-1] == ' ' || s[start-1] == '\t') {
    		start--
    	}
    	end := i + 1
    	for end < len(s) && (s[end] == ' ' || s[end] == '\t') {
    		end++
    	}
    	// TODO: Do tabs count? That would be a mess.
    	if i >= 2 && s[i-1] == ' ' && s[i-2] == ' ' {
    		return &HardBreak{}, start, end, true
    	}
    	return &SoftBreak{}, start, end, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top