Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getArchiveAction (0.28 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateSchemeFileTask.java

            configureBuildAction(schemeFile.getBuildAction());
            configureTestAction(schemeFile.getTestAction());
            configureLaunchAction(schemeFile.getLaunchAction());
            configureArchiveAction(schemeFile.getArchiveAction());
            configureAnalyzeAction(schemeFile.getAnalyzeAction());
            configureProfileAction(schemeFile.getProfileAction());
        }
    
        private void configureBuildAction(XcodeSchemeFile.BuildAction action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/internal/XcodeSchemeFile.java

        }
    
        public ProfileAction getProfileAction() {
            return new ProfileAction(getOrAppendNode(getXml(), "ProfileAction"));
        }
    
        public ArchiveAction getArchiveAction() {
            return new ArchiveAction(getOrAppendNode(getXml(), "ArchiveAction"));
        }
    
        public AnalyzeAction getAnalyzeAction() {
            return new AnalyzeAction(getOrAppendNode(getXml(), "AnalyzeAction"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top