Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,191 for START (0.03 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ContinuousOperation.java

        public ContinuousOperation setStart(long start) {
            this.start = start;
            return this;
        }
    
        public ContinuousOperation setFinish(long finish) {
            this.finish = finish;
            return this;
        }
    
        public long getStartTime() {
            return start;
        }
    
        @Override
        public long getElapsedTime() {
            return finish - start;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/go/printer/gobuild.go

    }
    
    func (p *printer) lineAt(start int) []byte {
    	pos := start
    	for pos < len(p.output) && !isNL(p.output[pos]) {
    		pos++
    	}
    	if pos < len(p.output) {
    		pos++
    	}
    	return p.output[start:pos]
    }
    
    func (p *printer) commentTextAt(start int) string {
    	if start < len(p.output) && p.output[start] == tabwriter.Escape {
    		start++
    	}
    	pos := start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. internal/bucket/bandwidth/monitor_test.go

    	type fields struct {
    		activeBuckets map[BucketOptions]*bucketMeasurement
    		endTime       time.Time
    		update2       uint64
    		endTime2      time.Time
    	}
    	start := time.Now()
    	m0 := newBucketMeasurement(start)
    	m0.incrementBytes(0)
    	m1MiBPS := newBucketMeasurement(start)
    	m1MiBPS.incrementBytes(oneMiB)
    
    	test1Want := make(map[BucketOptions]Details)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessBuilderInstrumentationInDynamicGroovyIntegrationTest.groovy

                [fromStringList(), "new ProcessBuilder(command).start()", "", ""],
                [fromStringArray(), "new ProcessBuilder(command)?.start()", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  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/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)
  8. 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)
  9. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

        def "can execute generated Unix start script in Bash"() {
            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("bash")
    
            then:
            outputContains('Hello World!')
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.DashAvailable])
        def "can execute generated Unix start script in Dash"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/runtime/trace/trace_test.go

    	if IsEnabled() {
    		t.Skip("skipping because -test.trace is set")
    	}
    	Stop()
    	buf := new(bytes.Buffer)
    	if err := Start(buf); err != nil {
    		t.Fatalf("failed to start tracing: %v", err)
    	}
    	if err := Start(buf); err == nil {
    		t.Fatalf("succeed to start tracing second time")
    	}
    	Stop()
    	Stop()
    }
    
    func saveTrace(t *testing.T, buf *bytes.Buffer, name string) {
    	if !*saveTraces {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top