Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for Xcode (0.06 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

            } else if (exitValue == 69) {
                // After an Xcode upgrade, running clang will frequently fail in a mysterious way.
                // Make the failure very obvious by throwing this back up to the user.
                String errorBufferAsString = errorBuffer.readAsString();
                if (errorBufferAsString.contains("Agreeing to the Xcode")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ide/xcode/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'xcode'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            // Eventually, this should only realize "help"
    
            Assume.assumeFalse(pluginName in [
                'xctest', // Almost, still realizes compileTestSwift
    
                'visual-studio',
                'xcode',
    
                'play-application',
            ])
    
            applyPlugin()
    
            buildFile """
                tasks.configureEach {
                    println("configuring \${it.path}")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXContainerItem.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Superclass in Xcode's object hierarchy, has no non-structural functionality here.
     */
    public abstract class PBXContainerItem extends PBXObject {
    
        @Override
        public String isa() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 903 bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXContainer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Superclass of all container types. This is here to reflect Xcode's object hierarchy, and does
     * not implement any special functionality.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 950 bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppStaticLibraryLinkageProjectIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode
    
    import org.gradle.nativeplatform.fixtures.app.CppLib
    import org.gradle.nativeplatform.fixtures.app.CppSourceElement
    
    class XcodeCppStaticLibraryLinkageProjectIntegrationTest extends AbstractXcodeCppProjectIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

            """Apple LLVM version ${version} (clang-${versionWithoutDots}0.0.38)
    Target: x86_64-apple-darwin16.7.0
    Thread model: posix
    InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
     "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.12.0 -E -fcolor-diagnostics -dM -o - -x c -
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/AbstractSwiftIntegrationTest.groovy

            failure.assertThatCause(Matchers.containsText("Swift compiler failed while compiling swift file(s)"))
        }
    
        // TODO Move this to AbstractSwiftComponentIntegrationTest when xcode test works properly with architecture
        def "can build for current machine when multiple target machines are specified"() {
            given:
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodeUtils.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal;
    
    import org.apache.commons.lang.StringUtils;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.io.File;
    import java.util.Arrays;
    
    public class XcodeUtils {
        private XcodeUtils() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXProjectItem.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    public abstract class PBXProjectItem extends PBXContainerItem {
        @Override
        public String isa() {
            return "PBXProjectItem";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 812 bytes
    - Viewed (0)
Back to top