Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 150 for X86_64 (0.09 sec)

  1. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `cpp-unit-test`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  2. tensorflow/c/README.md

      - [Linux GPU](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libtensorflow-gpu-linux-x86_64.tar.gz)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 23 01:38:30 UTC 2018
    - 539 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/cpp/cppLibrary/groovy/build.gradle

        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    // end::configure-target-machines[]
    
    // tag::configure-linkages[]
    library {
        linkage = [Linkage.STATIC, Linkage.SHARED]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 601 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/swiftApplication/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `swift-application`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    application {
        targetMachines = listOf(machines.linux.x86_64, machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

    model {
        platforms {
            x86 {
                architecture "x86"
            }
            x86_64 {
                architecture "x86_64"
            }
            arm {
                architecture "arm"
            }
        }
        components {
            main {
                targetPlatform "x86"
                targetPlatform "x86_64"
                targetPlatform "arm"
            }
        }
    }
    
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

            }
        }
    }
    // end::cpp-compiler-options-per-variants[]
    
    // tag::cpp-select-target-machines[]
    application {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/swiftApplication/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'swift-application'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    application {
        targetMachines = [
            machines.linux.x86_64, machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 256 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

            }
        }
    }
    // end::cpp-compiler-options-per-variants[]
    
    // tag::cpp-select-target-machines[]
    application {
        targetMachines = listOf(machines.windows.x86, machines.windows.x86_64, machines.macOS.x86_64, machines.linux.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/swift/swiftLibrary/groovy/build.gradle

            implementation "io.qt:network:5.1"
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = [
            machines.linux.x86_64,
            machines.macOS.x86_64
        ]
    }
    // end::configure-target-machines[]
    
    // tag::configure-linkages[]
    library {
        linkage = [Linkage.STATIC, Linkage.SHARED]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 590 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/swiftXCTest/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'xctest'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    xctest {
        targetMachines = [
            machines.linux.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
Back to top