Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 570 for swiftc (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/swift-shared-library-task-graph.png

    swift-shared-library-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftapp/LinuxMain.swift.template

    Alex Semin <******@****.***> 1703619549 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 90 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftlibrary/LinuxMain.swift.template

    Alex Semin <******@****.***> 1703619549 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 88 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftlibrary/HelloTests.swift.template

    Alex Semin <******@****.***> 1703619549 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 298 bytes
    - Viewed (0)
  5. src/internal/abi/switch.go

    	if !go122InterfaceSwitchCache {
    		return false
    	}
    	// We need an atomic load instruction to make the cache multithreaded-safe.
    	// (AtomicLoadPtr needs to be implemented in cmd/compile/internal/ssa/_gen/ARCH.rules.)
    	switch goarch {
    	case "amd64", "arm64", "loong64", "mips", "mipsle", "mips64", "mips64le", "ppc64", "ppc64le", "riscv64", "s390x":
    		return true
    	default:
    		return false
    	}
    }
    
    type TypeAssert struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/toolchain/switch.go

    	}
    }
    
    // NeedSwitch reports whether Switch would attempt to switch toolchains.
    func (s *Switcher) NeedSwitch() bool {
    	return s.TooNew != nil && (HasAuto() || HasPath())
    }
    
    // Switch decides whether to switch to a newer toolchain
    // to resolve any of the saved errors.
    // It switches if toolchain switches are permitted and there is at least one TooNewError.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/basic/kotlin/build.gradle.kts

    // tag::apply-swift-plugin[]
    plugins {
        `swift-application` // or `swift-library`
    }
    
    version = "1.2.1"
    // end::apply-swift-plugin[]
    
    // tag::swift-dependency-mgmt[]
    application {
        dependencies {
            implementation(project(":common"))
        }
    }
    // end::swift-dependency-mgmt[]
    
    // tag::swift-compiler-options-all-variants[]
    tasks.withType(SwiftCompile::class.java).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftComponent.java

    /**
     * Configuration for a Swift component, such as a library or executable, defining the source files that make up the component plus other settings.
     *
     * <p>Swift component is composed of some Swift source files that are compiled and then linked into some binary.</p>
     *
     * <p>An instance of this type is added as a project extension by the Swift plugins.</p>
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5Test.groovy

                    """#if swift(>=6.0)
                            XCTFail("Compilation unit compiled with Swift 6+ instead of Swift 5.x");
                        #elseif swift(>=5.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 4- instead of Swift 5.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftBuildPerformanceTest.groovy

        }
    
        static String determineFileToChange(String testProject) {
            switch (testProject) {
                case 'mediumSwiftMulti':
                    return 'lib6api3/src/main/swift/Lib6Api3ImplApi2.swift'
                case 'bigSwiftApp':
                    return 'src/main/swift/AppImpl54Api3.swift'
                default:
                    throw new IllegalArgumentException("Invalid test project ${testProject}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top