Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 648 for endLine (0.15 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

    import org.gradle.util.GradleVersion;
    import org.junit.platform.engine.ConfigurationParameters;
    import org.junit.platform.engine.DiscoveryFilter;
    import org.junit.platform.engine.DiscoverySelector;
    import org.junit.platform.engine.EngineDiscoveryListener;
    import org.junit.platform.engine.EngineDiscoveryRequest;
    import org.junit.platform.engine.ExecutionRequest;
    import org.junit.platform.engine.TestDescriptor;
    import org.junit.platform.engine.TestEngine;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. internal/bucket/bandwidth/measurement.go

    func (m *bucketMeasurement) updateExponentialMovingAverage(endTime time.Time) {
    	// Calculate aggregate avg bandwidth and exp window avg
    	m.lock.Lock()
    	defer func() {
    		m.startTime = endTime
    		m.lock.Unlock()
    	}()
    
    	if m.startTime.IsZero() {
    		return
    	}
    
    	if endTime.Before(m.startTime) {
    		return
    	}
    
    	duration := endTime.Sub(m.startTime)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 03 20:41:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/RetainStacktraceForInheritedTestMethodsTest.groovy

            //         at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
            //         at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:125)
            //         at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:132)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractOperationResult.java

    public abstract class AbstractOperationResult extends AbstractResult implements InternalOperationResult {
        protected AbstractOperationResult(long startTime, long endTime, String outcomeDescription) {
            super(startTime, endTime, outcomeDescription);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1008 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOperationMapper.java

            long startTime = finishEvent.getStartTime();
            long endTime = finishEvent.getEndTime();
            ExecuteTaskBuildOperationType.Result result = (ExecuteTaskBuildOperationType.Result) finishEvent.getResult();
            boolean incremental = result != null && result.isIncremental();
    
            if (state.getUpToDate()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/work/internal/DefaultWorkItemSuccessResult.java

    public class DefaultWorkItemSuccessResult extends DefaultOperationSuccessResult implements WorkItemSuccessResult {
    
        public DefaultWorkItemSuccessResult(long startTime, long endTime) {
            super(startTime, endTime);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProjectConfigurationSuccessResult.java

        public DefaultProjectConfigurationSuccessResult(long startTime, long endTime, List<? extends InternalPluginApplicationResult> pluginApplicationResults) {
            super(startTime, endTime, "succeeded", pluginApplicationResults);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. internal/bucket/bandwidth/monitor_test.go

    	"reflect"
    	"testing"
    	"time"
    )
    
    const (
    	oneMiB uint64 = 1024 * 1024
    )
    
    func TestMonitor_GetReport(t *testing.T) {
    	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)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/junitplatform-engine/groovy/build.gradle

        testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    }
    
    // tag::filter-engine[]
    tasks.withType(Test).configureEach {
        useJUnitPlatform {
            includeEngines 'junit-vintage'
            // excludeEngines 'junit-jupiter'
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 507 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/junitplatform-engine/kotlin/build.gradle.kts

        testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    
    // tag::filter-engine[]
    tasks.withType<Test>().configureEach {
        useJUnitPlatform {
            includeEngines("junit-vintage")
            // excludeEngines("junit-jupiter")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 510 bytes
    - Viewed (0)
Back to top