Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for projectType (0.3 sec)

  1. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPlugin.java

                        VisualStudioTargetBinary.ProjectType projectType = VisualStudioTargetBinary.ProjectType.DLL;
                        if (Linkage.STATIC.equals(linkage)) {
                            projectType = VisualStudioTargetBinary.ProjectType.LIB;
                        }
                        DefaultVisualStudioProject vsProject = extension.getProjectRegistry().createProject(project.getName() + projectType.getSuffix(), cppLibrary.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectMapperTest.groovy

            targetBinary.componentName >> values.get("componentName", "exeName")
            targetBinary.variantDimensions >> values.get("variantDimensions", ['buildTypeOne'])
            targetBinary.projectType >> values.get("projectType", EXE)
            return targetBinary
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/volume/util/fsquota/project.go

    		i, err := strconv.Atoi(match[2])
    		if err == nil {
    			return projectType{true, common.QuotaID(i), match[1], l}
    		}
    	}
    	return projectType{true, common.BadQuotaID, "", l}
    }
    
    func parseProjFile(f *os.File, parser func(l string) projectType) []projectType {
    	var answer []projectType
    	scanner := bufio.NewScanner(f)
    	for scanner.Scan() {
    		answer = append(answer, parser(scanner.Text()))
    	}
    	return answer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

        @Override
        void generateProjectSource(File projectDir, TestProject testProject, Map args) {
            def projectNumber = testProject.subprojectNumber == null ? -1 : testProject.subprojectNumber
            def projectArgs = [projectType: isLastLayer(depInfo.layerSizes, projectNumber) ? 'exe' : 'lib',
                               projectDeps: depInfo.dependencies[projectNumber - 1].collect {
                                   "project${it}"
                               },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.DLL
    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.EXE
    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.LIB
    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.NONE
    
    @UsesNativeServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppApplicationVisualStudioTargetBinary.java

            return projectName;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
        public ProjectType getProjectType() {
            return ProjectType.EXE;
        }
    
        @Override
        public boolean isExecutable() {
            return true;
        }
    
        @Override
        public String getBuildTaskPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

        }
    
        @Override
        public ProjectType getProjectType() {
            return binary instanceof SharedLibraryBinarySpec ? ProjectType.DLL
                : binary instanceof StaticLibraryBinarySpec ? ProjectType.LIB
                : binary instanceof NativeExecutableBinarySpec ? ProjectType.EXE
                : binary instanceof NativeTestSuiteBinarySpec ? ProjectType.EXE
                : ProjectType.NONE;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppSharedLibraryVisualStudioTargetBinary.java

            this.binary = binary;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
        public ProjectType getProjectType() {
            return ProjectType.DLL;
        }
    
        @Override
        public boolean isExecutable() {
            return false;
        }
    
        @Override
        public String getBuildTaskPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/BuildBuilderGenerator.groovy

         */
        @Input
        final ListProperty<String> args
    
        /**
         * Type of project to generate (cpp, java, swift, etc)
         */
        @Input
        String projectType
    
        /**
         * Number of projects to generate
         */
        @Input
        int projects
    
        /**
         * Number of source files to generate per project
         */
        @Input
        int sourceFiles
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppStaticLibraryVisualStudioTargetBinary.java

            this.binary = binary;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
        public ProjectType getProjectType() {
            return ProjectType.LIB;
        }
    
        @Override
        public boolean isExecutable() {
            return false;
        }
    
        @Override
        public String getBuildTaskPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top