Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for test_app (0.16 sec)

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

            compileDebug.debuggable
            !compileDebug.optimized
    
            def linkDebug = project.tasks.linkDebug
            linkDebug instanceof LinkExecutable
            linkDebug.linkedFile.get().asFile == projectDir.file("build/exe/main/debug/" + OperatingSystem.current().getExecutableName("TestApp"))
            linkDebug.debuggable
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

    class BinaryNativePlatformIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
        def testApp = new PlatformDetectingTestApp()
        def os = OperatingSystem.current()
    
        def setup() {
            buildFile << """
    plugins {
        id 'cpp'
    }
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
    """
    
            testApp.writeSources(file("src/main"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/InstallExecutableIntegrationTest.groovy

    class InstallExecutableIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
        def testApp = new PlatformDetectingTestApp()
        def os = OperatingSystem.current()
    
        def setup() {
            buildFile << """
    plugins {
        id 'cpp'
    }
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
    """
    
            testApp.writeSources(file("src/main"))
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

        void "forks process"() {
            given:
            def out = new ByteArrayOutputStream()
            def err = new ByteArrayOutputStream()
    
            def execHandle = handle()
                    .args(args(TestApp.class, "arg1", "arg2"))
                    .setStandardOutput(out)
                    .setErrorOutput(err)
                    .build()
    
            when:
            def result = execHandle.start().waitForFinish()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/examples/customization/test_ops_test.py

    import os
    import tensorflow as tf
    
    from tensorflow.compiler.mlir.tfr.python import test_utils
    from tensorflow.python.framework import test_ops
    from tensorflow.python.platform import test
    
    
    class TestOpsDefsTest(test_utils.OpsDefsTest):
    
      def test_test_ops(self):
        attr = tf.function(test_ops.test_attr)(tf.float32)
        self.assertAllClose(attr.numpy(), 100.0)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:41:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/regexp/testdata/testregex.c

    					test |= TEST_VERIFY;
    					test &= ~(TEST_AND|TEST_OR);
    					state.verify = state.passed;
    					continue;
    				case '&':
    					test |= TEST_VERIFY|TEST_AND;
    					test &= ~TEST_OR;
    					continue;
    				case '|':
    					test |= TEST_VERIFY|TEST_OR;
    					test &= ~TEST_AND;
    					continue;
    				case ';':
    					test |= TEST_OR;
    					test &= ~TEST_AND;
    					continue;
    
    				case '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalHelloWorldApp.java

    import org.gradle.integtests.fixtures.SourceFile;
    
    import java.util.List;
    
    public abstract class IncrementalHelloWorldApp extends CommonHeaderHelloWorldApp {
        public TestApp getAlternate() {
            return new TestApp() {
                @Override
                public SourceFile getMainSource() {
                    return getAlternateMainSource();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

            assertTrue(content.contains("ใƒ†ใ‚นใƒˆ"));
        }
    
        public void test_getText_ooow_as() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test_as.odt");
            Map<String, String> params = new HashMap<String, String>();
            params.put("resourceName", "test_as.odt");
            ExtractData extractData = jodExtractor.getText(in, params);
            String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-barebone/build.gradle.kts

        api(intellijCore())
    
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
        testImplementation(kotlinTest("junit"))
        testImplementation(projectTests(":compiler:tests-common"))
        testApi(projectTests(":compiler:test-infrastructure-utils"))
        testApi(projectTests(":compiler:test-infrastructure"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 763 bytes
    - Viewed (0)
  10. 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)
Back to top