Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for testDebug (0.47 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            name        | taskName              | objDir
            "main"      | "compileCpp"          | "main"
            "mainDebug" | "compileDebugCpp"     | "main/debug"
            "test"      | "compileTestCpp"      | "test"
            "testDebug" | "compileTestDebugCpp" | "test/debug"
        }
    
        def "adds link and install task for executable"() {
            def baseName = project.objects.property(String)
            baseName.set("test_app")
    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/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            "main"      | "compileSwift"          | "main"
            "mainDebug" | "compileDebugSwift"     | "main/debug"
            "test"      | "compileTestSwift"      | "test"
            "testDebug" | "compileTestDebugSwift" | "test/debug"
        }
    
        def "adds link and install task for executable"() {
            def executable = Stub(DefaultSwiftExecutable)
            def executableFile = project.objects.fileProperty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/log/LoggerTest.java

            assertThat(Logger.getLogger(getClass()), is(sameInstance(Logger.getLogger(getClass()))));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testDebug() throws Exception {
            logger.debug("debug");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testInfo() throws Exception {
            logger.info("info");
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

            mainMetadata.variant("releaseRuntime").availableAt.coords == "some.group:test_release:1.2"
    
            def debug = repo.module('some.group', 'test_debug', '1.2')
            debug.assertPublished()
            debug.assertArtifactsPublished(withStaticLibrarySuffix("test_debug-1.2"), "test_debug-1.2.pom", "test_debug-1.2.module")
            debug.artifactFile(type: staticLibraryExtension).assertIsCopyOf(staticLibrary("build/lib/main/debug/test").file)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            def debug = repo.module('some.group', 'test_debug', '1.2')
            debug.assertPublished()
            debug.assertArtifactsPublished(withSharedLibrarySuffix("test_debug-1.2"), withLinkLibrarySuffix("test_debug-1.2"), "test_debug-1.2.pom", "test_debug-1.2.module")
            debug.artifactFile(type: sharedLibraryExtension).assertIsCopyOf(sharedLibrary("build/lib/main/debug/test").file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  6. istioctl/pkg/admin/istiodconfig_test.go

    				client:         ctrzClientNoScopejHandler,
    				outputLogLevel: "test:debug",
    			},
    			wantErr: true,
    		},
    		{
    			name: "stackTraceLevelState.run() should throw an error if the /scopej endpoint is missing",
    			state: &stackTraceLevelState{
    				client:          ctrzClientNoScopejHandler,
    				stackTraceLevel: "test:debug",
    			},
    			wantErr: true,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

            mainMetadata.variant("releaseRuntime").availableAt.coords == "some.group:test_release:1.2"
    
            def debug = mavenRepo.module('some.group', 'test_debug', '1.2')
            debug.assertPublished()
            debug.assertArtifactsPublished(executableName("test_debug-1.2"), "test_debug-1.2.pom", "test_debug-1.2.module")
            debug.artifactFile(type: executableExtension).assertIsCopyOf(executable("build/exe/main/debug/test").file)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateSchemeFileTask.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.io.File;
    
    import static org.gradle.ide.xcode.internal.DefaultXcodeProject.BUILD_DEBUG;
    import static org.gradle.ide.xcode.internal.DefaultXcodeProject.TEST_DEBUG;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/DefaultXcodeProject.java

    public class DefaultXcodeProject implements XcodeProject {
        public static final String BUILD_DEBUG = "Debug";
        public static final String BUILD_RELEASE = "Release";
        public static final String TEST_DEBUG = "__GradleTestRunner_Debug";
    
        private final Groups groups;
        private List<XcodeTarget> targets = new ArrayList<XcodeTarget>();
        private File locationDir;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            getAllBinaries().stream().filter(it -> !Objects.equals(it.getBuildConfigurationName(), TEST_DEBUG)).forEach(configureBuildSettings(xcodeTarget, target));
    
            NSDictionary testRunnerSettings = target.getBuildConfigurationList().getBuildConfigurationsByName().getUnchecked(TEST_DEBUG).getBuildSettings();
    
            if (!xcodeTarget.getCompileModules().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top