Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for epstest (0.56 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

         --no-split-project     Disables option --split-project.
    
         --test-framework     Set the test framework to be used.
                              Available values are:
                                   cpptest
                                   junit
                                   junit-jupiter
                                   kotlintest
                                   scalatest
                                   spock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    1. Clean the cache directory to avoid any hits from previous builds (`rm -rf $GRADLE_USER_HOME/caches/build-cache-*`)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/UnsignedBytes.java

          /*
           * The following static final fields exist for performance reasons.
           *
           * In UnsignedBytesBenchmark, accessing the following objects via static final fields is the
           * fastest (more than twice as fast as the Java implementation, vs ~1.5x with non-final static
           * fields, on x86_32) under the Hotspot server compiler. The reason is obviously that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.mainComponent.baseName == 'app'
            project.testComponent instanceof CppTestSuite
            project.testComponent.name == 'test'
            project.testComponent.baseName == 'appTest'
            project.testComponent.binaries[0].compilationDetails.userHeaderSearchPaths == [file('src/test/headers'), file('src/main/headers')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    For testing with the build cache, the build cache directory should be cleaned between tests.
    The easiest way to accomplish this is to configure the local build cache to use a temporary directory.
    
    === Example: Clean build cache between tests
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pilot/test/xds/fake.go

    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/collections"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent_test.go

    			resp = xdsc.RequestResponseAck(t, nil)
    		})
    	}, retry.Timeout(time.Second*15), retry.Delay(time.Millisecond*200))
    
    	sdsStreams := map[string]*xds.AdsTest{}
    	gotKeys := []string{}
    	for _, res := range xdstest.ExtractSecretResources(t, resp.Resources) {
    		sds := xds.NewSdsTest(t, setupDownstreamConnectionUDS(t, security.WorkloadIdentitySocketPath)).
    			WithMetadata(meta).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    			listeners := xdstest.ExtractListenerNames(builder.gatewayListeners)
    			sort.Strings(listeners)
    			sort.Strings(tt.expectedListeners)
    			if !reflect.DeepEqual(listeners, tt.expectedListeners) {
    				t.Fatalf("Expected listeners: %v, got: %v\n%v", tt.expectedListeners, listeners, proxyGateway.MergedGateway.MergedServers)
    			}
    			xdstest.ValidateListeners(t, builder.gatewayListeners)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    `greeting-plugin` is simply a Java project that produces a JAR containing the plugin classes.
    
    The easiest way to package and publish a plugin to a repository is to use the <<java_gradle_plugin.adoc#java_gradle_plugin,Gradle Plugin Development Plugin>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    		// yresults.
    		yparams := y.params
    		yresults := y.results
    
    		if x.TypeParams().Len() > 0 {
    			// We must ignore type parameter names when comparing x and y. The
    			// easiest way to do this is to substitute x's type parameters for y's.
    			xtparams := x.TypeParams().list()
    			ytparams := y.TypeParams().list()
    
    			var targs []Type
    			for i := range xtparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top