Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for testCmp (0.12 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            def executableFile = project.objects.fileProperty()
            executable.name >> name
            executable.names >> Names.of(name)
            executable.module >> Providers.of("TestApp")
            executable.baseName >> Providers.of("test_app")
            executable.executableFile >> executableFile
            executable.targetMachine >> Stub(SwiftPlatform)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            assertThat(WildcardType.class.isInstance(GenericsUtil.getElementTypeOfSet(t3)), is(true));
        }
    
        /**
         * @throws Exception
         */
        public void testMap() throws Exception {
            final Method m1 = MapType.class.getMethod("mapOfStringToObject");
            final Type t1 = m1.getGenericReturnType();
            assertThat(GenericsUtil.isTypeOf(t1, Map.class), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

    apply plugin: "cpp"
    
    model {
        components {
            main(NativeExecutableSpec)
            all {
                binaries {
                    all {
                        sources {
                            testCpp(CppSourceSet) {
                                source.srcDir "src/test/cpp"
                                exportedHeaders.srcDir "src/test/headers"
                            }
                            testC(CSourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/encoding/hex/hex_test.go

    	dumper.Close()
    	dumper.Write([]byte(`gopher`))
    
    	expected := ""
    	if out.String() != expected {
    		t.Fatalf("got:\n%#v\nwant:\n%#v", out.String(), expected)
    	}
    }
    
    func TestDump(t *testing.T) {
    	var in [40]byte
    	for i := range in {
    		in[i] = byte(i + 30)
    	}
    
    	out := []byte(Dump(in[:]))
    	if !bytes.Equal(out, expectedHexDump) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      // You can implement all the usual class fixture members here.
    };
    
    // Then, use the TEST_P macro to define as many parameterized tests
    // for this fixture as you want. The _P suffix is for "parameterized"
    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

                test.testLogging {
                    showStandardStreams = true
                    showExceptions = true
                }
            """
    
            def testProjectDir = file("testTmp").tap { it.mkdirs() }
    
            file("src/test/groovy/my/MyTest.groovy") << """
                package my
                import org.gradle.testfixtures.*
                import org.gradle.testkit.runner.GradleRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/cc_ops_test.cc

    #include <string>
    
    #include "tensorflow/cc/client/client_session.h"
    #include "tensorflow/cc/framework/testutil.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/cc/ops/test_op.h"
    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/tensor_testutil.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace ops {
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo`
    	// If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList`
    	// It does not support list numeric index.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/amd64/versions_test.go

    		{1.6, 2},
    		{2.4, 2},
    		{2.5, 2},
    		{2.6, 3},
    	} {
    		if got := math.RoundToEven(tt.x); got != tt.want {
    			t.Errorf("RoundToEven(%f) = %f, want %f", tt.x, got, tt.want)
    		}
    	}
    }
    
    func TestFMA(t *testing.T) {
    	for _, tt := range []struct {
    		x, y, z, want float64
    	}{
    		{2, 3, 4, 10},
    		{3, 4, 5, 17},
    	} {
    		if got := math.FMA(tt.x, tt.y, tt.z); got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    	})
    	t.Run("MergePcombine", func(t *testing.T) {
    		t.Parallel()
    		testMergeCombinePrograms(t, s)
    	})
    	t.Run("Dump", func(t *testing.T) {
    		t.Parallel()
    		testDump(t, s)
    	})
    	t.Run("Percent", func(t *testing.T) {
    		t.Parallel()
    		testPercent(t, s)
    	})
    	t.Run("PkgList", func(t *testing.T) {
    		t.Parallel()
    		testPkgList(t, s)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top