Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for fastTest (0.27 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            and: "only the fast tests are run"
            def xmlResults = getTestResultsFileAsXml(dslDir, "org.gradle.junitplatform.TagTest")
            assertTestsRunCount(xmlResults, 1)
            assertTestRun(xmlResults, "fastTest()")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testing/testng-groups")
        def "can filter tests by TestNG group with #dsl dsl"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                // if we need to update artifactScope of nearest to use farthest artifactScope, use the
                                // nearest version, but farthest artifactScope
                                nearest.disable();
                                farthest.getArtifact()
                                        .setVersion(nearest.getArtifact().getVersion());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

                    completeEvent
            )
        }
    
        void createsAnAggregateResultForEmptyTestSuite() {
            given:
            def suite = new DefaultTestSuiteDescriptor("15", "FastTests");
            def startEvent = new TestStartEvent(100L)
            def completeEvent = new TestCompleteEvent(200L)
    
            when:
            adapter.started(suite, startEvent)
            adapter.completed('15', completeEvent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

        @J2ObjCIncompatible // ClassValue
        enum ClassValueValidator implements GetCheckedTypeValidator {
          INSTANCE;
    
          /*
           * Static final fields are presumed to be fastest, based on our experience with
           * UnsignedBytesBenchmark. TODO(cpovirk): benchmark this
           */
          private static final ClassValue<Boolean> isValidClass =
              new ClassValue<Boolean>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	ipType := v1beta1.IPAddressType
    	hostnameType := v1beta1.HostnameAddressType
    	clienttest.Wrap(t, kclient.New[*v1beta1.Gateway](c.client)).CreateOrUpdate(&v1beta1.Gateway{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "eastwest-gwapi",
    			Namespace: "istio-system",
    			Labels:    map[string]string{label.TopologyNetwork.Name: "nw2"},
    		},
    		Spec: v1beta1.GatewaySpec{
    			GatewayClassName: "istio",
    			Addresses: []v1beta1.GatewayAddress{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

        }
    
        @Test
        void testScopeUpdate() throws InvalidVersionSpecificationException, ArtifactResolutionException {
            /* farthest = compile */
            checkScopeUpdate(Artifact.SCOPE_COMPILE, Artifact.SCOPE_COMPILE, Artifact.SCOPE_COMPILE);
            checkScopeUpdate(Artifact.SCOPE_COMPILE, Artifact.SCOPE_PROVIDED, Artifact.SCOPE_COMPILE);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    		return err
    	}
    
    	if c.IsConfig() {
    		// this is a traditional primary cluster, install the eastwest gateway
    
    		// there are a few tests that require special gateway setup which will cause eastwest gateway fail to start
    		// exclude these tests from installing eastwest gw for now
    		if !i.cfg.DeployEastWestGW {
    			return nil
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/testing/fstest/testfs.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package fstest implements support for testing implementations and users of file systems.
    package fstest
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    	"reflect"
    	"slices"
    	"strings"
    	"testing/iotest"
    )
    
    // TestFS tests a file system implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion_test.go

    			validationIgnorer: crdvalidation.NewValidationIgnorer(
    				"istio-system/^not-allowed-echo-",
    			),
    		},
    		{name: "serviceentry"},
    		{name: "eastwest"},
    		{name: "eastwest-tlsoption"},
    		{name: "eastwest-labelport"},
    		{name: "eastwest-remote"},
    		{name: "alias"},
    		{name: "mcs"},
    		{name: "route-precedence"},
    		{name: "waypoint"},
    		{name: "isolation"},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

        static final GetCheckedTypeValidator BEST_VALIDATOR = getBestValidator();
    
        enum WeakSetValidator implements GetCheckedTypeValidator {
          INSTANCE;
    
          /*
           * Static final fields are presumed to be fastest, based on our experience with
           * UnsignedBytesBenchmark. TODO(cpovirk): benchmark this
           */
          /*
           * A CopyOnWriteArraySet<WeakReference> is faster than a newSetFromMap of a MapMaker map with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top