Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PBXShellScriptBuildPhase (0.43 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

        private static final NSString DEFAULT_SHELL_SCRIPT = new NSString("");
    
        public PBXShellScriptBuildPhase() {
            this.inputPaths = new ArrayList<>();
            this.outputPaths = new ArrayList<>();
        }
    
        @Override
        public String isa() {
            return "PBXShellScriptBuildPhase";
        }
    
        /**
         * Returns the list (possibly empty) of files passed as input to the shell script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/internal-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.ide.xcode.internal.xcodeproj.PBXReference.path don't use symmetrical @Nullable
    Accessors for org.gradle.ide.xcode.internal.xcodeproj.PBXShellScriptBuildPhase.shellPath don't use symmetrical @Nullable
    Accessors for org.gradle.ide.xcode.internal.xcodeproj.PBXShellScriptBuildPhase.shellScript don't use symmetrical @Nullable
    Accessors for org.gradle.ide.xcode.internal.xcodeproj.PBXTarget.productName don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

        }
    
        private PBXTarget toXCTestPbxTarget(XcodeTarget xcodeTarget) {
            PBXShellScriptBuildPhase hackBuildPhase = new PBXShellScriptBuildPhase();
            hackBuildPhase.setShellPath("/bin/sh");
            hackBuildPhase.setShellScript("# Script to generate specific Swift files Xcode expects when running tests.\n"
                + "set -eu\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.ide.xcode.internal.xcodeproj.PBXShellScriptBuildPhase> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PBXShellScriptBuildPhase.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top