Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for test_app (0.22 sec)

  1. android-test-app/src/main/kotlin/okhttp/android/testapp/TestApplication.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp.android.testapp
    
    import android.app.Application
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 702 bytes
    - Viewed (0)
  2. tests/test_tutorial/test_custom_docs_ui/test_tutorial002.py

    
    def test_redoc_html(client: TestClient):
        response = client.get("/redoc")
        assert response.status_code == 200, response.text
        assert "/static/redoc.standalone.js" in response.text
    
    
    def test_api(client: TestClient):
        response = client.get("/users/john")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            fixture.writeAnnotationProcessorTo(file("b"))
    
            // The class that is the target of the processor
            file("c/src/main/${language.name}/TestApp.${language.name}") << '''
                @Helper
                class TestApp {
                    public static void main(String[] args) {
                        System.out.println(new TestAppHelper().getValue()); // generated class
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py

    def test_redoc_html(client: TestClient):
        response = client.get("/redoc")
        assert response.status_code == 200, response.text
        assert "https://unpkg.com/redoc@next/bundles/redoc.standalone.js" in response.text
    
    
    def test_api(client: TestClient):
        response = client.get("/users/john")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable that has diamond dependency"() {
            def testApp = new ExeWithDiamondDependencyHelloWorldApp()
            testApp.writeSources(file("src/main"), file("src/hello"), file("src/greetings"))
    
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/mavenExtensions/some-thing/pom.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.test</groupId>
        <artifactId>testApp</artifactId>
        <version>1.0</version>
        <packaging>pom</packaging>
        <name>A Test Project</name>
        <description>Some Test project</description>
        <build>
            <plugins>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

    from tensorflow.compiler.mlir.tfr.python import composite
    from tensorflow.compiler.mlir.tfr.python.tfr_gen import tfr_gen_from_module as tfr_gen
    from tensorflow.compiler.mlir.tfr.resources import gen_test_ops as test_ops
    from tensorflow.python.framework import dtypes
    from tensorflow.python.ops import gen_array_ops as array_ops
    from tensorflow.python.ops import gen_math_ops as math_ops
    from tensorflow.python.platform import test
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/tac-filter.mlir

    // expected-remark@below {{Tac filter (1) specified but not applied to any op}}
    // expected-remark@below {{Tac filter (2): filter type: op filter, filter_pattern: "^test_op"}}
    // expected-remark@below {{Tac filter (2) specified but not applied to any op}}
    module {
      // CHECK-LABEL: testFunctionSkiped
      // expected-remark@+1 {{filtered by tac filter (0)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 01:08:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. okhttp-coroutines/build.gradle.kts

      api(libs.squareup.okio)
      api(libs.kotlin.stdlib)
    
      testImplementation(libs.kotlin.test.annotations)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlin.test.junit)
      testApi(libs.assertk)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.kotlinx.coroutines.test)
      testImplementation(projects.mockwebserver3Junit5)
    }
    
    mavenPublishing {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 936 bytes
    - Viewed (0)
Back to top