Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for test_app (0.55 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

                apply plugin: 'cpp-application'
                application.baseName = 'test_app'
             """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(tasks.debug.allToInstall, ':assemble')
    
            file("build/obj/main/debug").assertIsDir()
            executable("build/exe/main/debug/test_app").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    @PlexusTest
    class TestApi {
    
        Session session;
    
        @Inject
        RepositorySystem repositorySystem;
    
        @Inject
        org.apache.maven.project.ProjectBuilder projectBuilder;
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/c/BUILD

            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_custom_op_library(
        name = "test_op1.so",
        srcs = ["test_op1.cc"],
    )
    
    tf_kernel_library(
        name = "test_op_kernel",
        srcs = ["test_op.cc"],
        deps = [
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
        ],
        alwayslink = 1,
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

        repositories { maven { url '${mavenRepo.uri}' } }
    }
    
    project(':other-java') {
        apply plugin: 'java-library'
    }
    
    project(':java') {
        apply plugin: 'java-library'
        dependencies {
            api 'test:api:1.0'
            implementation project(':other-java')
            implementation files('file-dep.jar')
            compileOnly 'test:compile-only:1.0'
            compileOnlyApi 'test:compile-only-api:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. tensorflow/cc/BUILD

            "//tensorflow/core:lib_internal",
            "//tensorflow/core:tensorflow",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_gen_op_wrappers_cc(
        name = "test_op",
        op_lib_names = [
            "test_op",
        ],
    )
    
    cc_library(
        name = "queue_runner",
        srcs = ["training/queue_runner.cc"],
        hdrs = ["training/queue_runner.h"],
        deps = [
            ":coordinator",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

      // 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
    - 18.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    namespace internal {
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Outputs a message explaining invalid registration of different
    // fixture class for the same test case. This may happen when
    // TEST_P macro is used to define two tests with the same name
    // but in different namespaces.
    GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name,
                                              const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

    import pytest
    from dirty_equals import IsDict
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    
    
    @pytest.fixture(name="app")
    def get_app():
        from docs_src.request_forms_and_files.tutorial001_an import app
    
        return app
    
    
    @pytest.fixture(name="client")
    def get_client(app: FastAPI):
        client = TestClient(app)
        return client
    
    
    def test_post_form_no_body(client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    			NegotiatedSerializer:   codecs,
    			Scheme:                 scheme,
    		}
    	}
    
    	apis := []APIGroupInfo{
    		testAPI(schema.GroupVersion{Group: "", Version: "v1"}),
    		testAPI(schema.GroupVersion{Group: extensionsGroupName, Version: "v1"}),
    		testAPI(schema.GroupVersion{Group: "batch", Version: "v1"}),
    	}
    
    	err = s.InstallLegacyAPIGroup("/apiPrefix", &apis[0])
    	assert.NoError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py

    import pytest
    from dirty_equals import IsDict
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    
    
    @pytest.fixture(name="app")
    def get_app():
        from docs_src.request_forms_and_files.tutorial001 import app
    
        return app
    
    
    @pytest.fixture(name="client")
    def get_client(app: FastAPI):
        client = TestClient(app)
        return client
    
    
    def test_post_form_no_body(client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top