Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for isProject (0.21 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectConfiguration.java

        private final DefaultVisualStudioProject vsProject;
        private final String name;
        private final String configurationName;
        private final String platformName = "Win32";
        private final VisualStudioTargetBinary binary;
    
        public VisualStudioProjectConfiguration(DefaultVisualStudioProject vsProject, String configurationName, VisualStudioTargetBinary binary) {
            this.vsProject = vsProject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCall.kt

    open class IJProject(val init: () -> Unit = {})
    
    class KotlinIDE : IJProject(init = {
        anySymbols
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 103 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCallWithLocalFunction.kt

    open class IJProject(val init: () -> Unit = {})
    
    @Suppress("UNUSED_VARIABLE")
    class KotlinIDE : IJProject(init = {
        fun foo() {
            val f = anySymbols
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 167 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperPrimaryConstructorCallWithLocalFunction.kt

    open class IJProject(val init: () -> Unit = {})
    
    @Suppress("UNUSED_VARIABLE")
    class KotlinIDE() : IJProject(init = {
        fun foo() {
            val f = anySymbols
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 169 bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            when:
            registry.addProjectConfiguration(executableBinary1)
            registry.addProjectConfiguration(executableBinary2)
    
            then:
            def vsProject = registry.getProjectConfiguration(executableBinary1).project
            vsProject.sourceFiles.files == [sourceCommon, source1, source2] as Set
        }
    
        private VisualStudioTargetBinary targetBinary(String variant, File... sources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorterSpec.groovy

        }
    
        def "sorts by comparing ProjectComponentSelector on left and ModuleComponentSelector on right"() {
            def d1 = newDependency(TestComponentIdentifiers.newSelector(":hisProject"), DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("org.gradle", "zzzz"), "3.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 18.6K bytes
    - Viewed (0)
Back to top