Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for exercise (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

            succeeds()
        }
    
        // Documents actual behaviour for backwards compatibility, not necessarily desired behaviour
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior: Groovy method inheritance"
        )
        def "inherited convention method is preferred over property with closure value"() {
            given:
            createDirs("child")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_location_roundtrip.mlir

    // This is a rare example of a test where exact output checking makes
    // sense.
    //
    // To debug this test, it is most useful to look at the output of the first
    // tf-opt invocation.
    
    
    
    // This test case exercises the "tf_executor.island wraps" syntax.
    // When parsing it back, we should recover all 3 locations (the
    // tf_executor.island, tf.Identity, and tf_executor.yield).
    
    // CHECK-LABEL: "func.func"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 05 14:24:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. operator/pkg/util/merge_iop_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.path, func(t *testing.T) {
    			b, err := os.ReadFile(tc.path)
    			if err != nil {
    				t.Fatal(err)
    			}
    			// overlaying tree over itself exercises all paths for merging
    			if _, err := OverlayIOP(string(b), string(b)); err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    // TestOverlayIOPExhaustiveness exhaustiveness check of `OverlayIOP`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixture.groovy

     * with the listener subscribing as the root project is loaded.
     *
     * This exercises the store-and-replay behaviour of the notification dispatcher
     * that allows a listener to observe all of the notifications from the very start of the build.
     *
     * This fixture reflectively exercises the details/results objects of the notifications,
     * ensuring that they are “usable”.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/math/rand/v2/race_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rand_test
    
    import (
    	. "math/rand/v2"
    	"sync"
    	"testing"
    )
    
    // TestConcurrent exercises the rand API concurrently, triggering situations
    // where the race detector is likely to detect issues.
    func TestConcurrent(t *testing.T) {
    	const (
    		numRoutines = 10
    		numCycles   = 10
    	)
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 14:31:46 UTC 2023
    - 1005 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/race.go

    //go:build !compiler_bootstrap
    
    package test
    
    // The racecompile builder only builds packages, but does not build
    // or run tests. This is a non-test file to hold cases that (used
    // to) trigger compiler data races, so they will be exercised on
    // the racecompile builder.
    //
    // This package is not imported so functions here are not included
    // in the actual compiler.
    
    // Issue 55357: data race when building multiple instantiations of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 22:16:41 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            where:
            [description, code] << INVALID_CALL_FROM_LAZY_CONFIGURATION
        }
    
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior"
        )
        def "cannot execute #description on another project during lazy task creation action execution"() {
            createDirs("nested", "other")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_vendor_prune.txt

    # This test exercises that vendoring works properly using the workspace in the
    # the work_prune test case.
    
    go work vendor
    cmp vendor/modules.txt modules.txt.want
    cmp vendor/example.com/b/b.go b/b.go
    cmp vendor/example.com/q/q.go q1_1_0/q.go
    go list -m -f '{{.Version}}' example.com/q
    stdout '^v1.1.0$'
    
    go list -f '{{.Dir}}' example.com/q
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]q
    go list -f '{{.Dir}}' example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/vm_test.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestRegistration is an e2e test for registration. Most tests are in autoregister package, but this
    // exercises the full XDS flow.
    func TestRegistration(t *testing.T) {
    	// TODO: allow fake XDS to be "authenticated"
    	test.SetForTest(t, &features.ValidateWorkloadEntryIdentity, false)
    	ds := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    import (
    	"errors"
    	"fmt"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    // TestServerTracing exercises the trace generation features of Istio, based on the Envoy Trace driver for zipkin.
    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top