Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 553 for endLine (0.39 sec)

  1. tools/bug-report/pkg/bugreport/flags.go

    	if startTime == "" && endTime == "" {
    		config.TimeFilterApplied = false
    	} else {
    		config.TimeFilterApplied = true
    	}
    
    	config.EndTime = time.Now()
    	config.Since = config2.Duration(duration)
    	if endTime != "" {
    		var err error
    		config.EndTime, err = time.Parse(time.RFC3339, endTime)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/DefaultOperationFailureResult.java

        private final long startTime;
        private final long endTime;
        private final List<? extends Failure> failures;
    
        public DefaultOperationFailureResult(long startTime, long endTime, List<? extends Failure> failures) {
            this.startTime = startTime;
            this.endTime = endTime;
            this.failures = failures;
        }
    
        @Override
        public long getStartTime() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/SimpleTestResult.groovy

        Throwable exception = exceptions[0]
        List<TestFailure> failures
        long startTime = 0
        long endTime = startTime + 100
        long testCount = 1
        long successfulTestCount = 1
        long failedTestCount = 0
        long skippedTestCount = 0
    
        SimpleTestResult(long endTime = 100) {
            this.endTime = endTime
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public void setStartTime(long startTime) {
            this.startTime = startTime;
        }
    
        public long getEndTime() {
            return endTime;
        }
    
        public void setEndTime(long endTime) {
            this.endTime = endTime;
        }
    
        public String getVersionUnderTest() {
            return versionUnderTest;
        }
    
        public void setVersionUnderTest(String versionUnderTest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/FileDownloadOperationMapper.java

            long endTime = finishEvent.getEndTime();
            AbstractOperationResult result = createFileDownloadResult(operationResult, finishEvent.getFailure(), finishEvent.getStartTime(), endTime);
            return new DefaultOperationFinishedProgressEvent(endTime, descriptor, result);
        }
    
        @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/processlog/processlog_test.go

    			startTime:         "2020-06-29T23:37:27.336155Z",
    			endTime:           "2020-06-29T23:37:27.349559Z",
    			timeFilterApplied: true,
    		},
    		{
    			name:              "input_log_of_json_format",
    			inputLogFilePath:  "input/format_json.log",
    			wantOutputLogPath: "output/format_json_with_time_filter.log",
    			startTime:         "2023-05-10T17:43:55.356647Z",
    			endTime:           "2023-05-10T17:43:55.356691Z",
    			timeFilterApplied: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

            map.put("id", id);
    
            if (parentId != null) {
                map.put("parentId", parentId);
            }
    
            map.put("startTime", startTime);
            map.put("endTime", endTime);
            map.put("duration", endTime - startTime);
    
            if (details != null) {
                map.put("details", details);
                map.put("detailsClassName", detailsClassName);
            }
    
            if (result != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/DefaultTestResult.java

        }
    
        public DefaultTestResult(ResultType resultType, long startTime, long endTime, long testCount, long successfulCount, long failedCount, List<TestFailure> failures) {
            this.resultType = resultType;
            this.startTime = startTime;
            this.endTime = endTime;
            this.testCount = testCount;
            this.successfulCount = successfulCount;
            this.failedCount = failedCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * An **engine service** as defined by the Platform Interface (see the README).
     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/trace/gen.go

    	var startStack, endStack trace.Stack
    	var startG, endG trace.GoID
    	startTime, endTime := ctx.startTime, ctx.endTime
    	if task.Start != nil {
    		startStack = task.Start.Stack()
    		startG = task.Start.Goroutine()
    		startTime = task.Start.Time()
    	}
    	if task.End != nil {
    		endStack = task.End.Stack()
    		endG = task.End.Goroutine()
    		endTime = task.End.Time()
    	}
    	arg := struct {
    		ID     uint64 `json:"id"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top