Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getProjectConfiguration (0.47 sec)

  1. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            registry.addProjectConfiguration(executableBinary1)
            registry.addProjectConfiguration(executableBinary2)
    
            then:
            def vsConfig1 = registry.getProjectConfiguration(executableBinary1)
            def vsConfig2 = registry.getProjectConfiguration(executableBinary2)
            vsConfig1.project == vsConfig2.project
    
            and:
            vsConfig1.type == "Makefile"
            vsConfig1.project.name == "mainExe"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectResolver.java

            VisualStudioProjectRegistry projectRegistry = ((VisualStudioExtensionInternal) visualStudioExtension).getProjectRegistry();
            return projectRegistry.getProjectConfiguration(nativeBinary);
        }
    
        private ModelRegistry getComponentModel(VisualStudioTargetBinary nativeBinary) {
            String projectPath = nativeBinary.getProjectPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistry.java

            this.ideArtifactRegistry = ideArtifactRegistry;
            this.objectFactory = objectFactory;
            this.providerFactory = providerFactory;
        }
    
        public VisualStudioProjectConfiguration getProjectConfiguration(VisualStudioTargetBinary targetBinary) {
            String projectName = targetBinary.getVisualStudioProjectName();
            return getByName(projectName).getConfiguration(targetBinary);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

         * @return list
         */
        public List<ProjectProfile> getProjects() {
            return CollectionUtils.sort(projects.values(), Operation.slowestFirst());
        }
    
        public CompositeOperation<Operation> getProjectConfiguration() {
            List<Operation> operations = new ArrayList<>();
            for (ProjectProfile projectProfile : projects.values()) {
                operations.add(projectProfile.getConfigurationOperation());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileReportRenderer.java

                    @Override
                    public void render(BuildProfile model, SimpleHtmlWriter htmlWriter) throws IOException {
                        CompositeOperation<Operation> profiledProjectConfiguration = model.getProjectConfiguration();
    
                        htmlWriter.startElement("div").attribute("id", "tabs")
                            .startElement("ul").attribute("class", "tabLinks")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top