Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ToolingApiConnection (8.38 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiConnection.groovy

            initTrait(modelBuilder, stdout, stderr)
            this.modelBuilder = modelBuilder
        }
    }
    
    /**
     * This trait is used to add the missing methods to the ToolingApiConnection class without actually deriving from ProjectConnection.
     * While still allowing the ToolingApiConnection to be used as a ProjectConnection.
     * This avoids loading the ProjectConnection class from the test code and postbones loading to the tooling api magic.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiConnector.groovy

            this.stderr = stderr
            this.stdout = stdout
            this.connector = connector
        }
    
        def connect() {
            new ToolingApiConnection(connector.connect(), stdout, stderr) as ProjectConnection
        }
    
        def searchUpwards(boolean searchUpwards) {
            connector.searchUpwards(searchUpwards)
            this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top