Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,061 for machine1 (0.65 sec)

  1. 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)
  2. docs/integrations/veeam/README.md

    ### Create a backup job
    
    #### Backup Virtual Machines with Veeam Backup and Replication
    
    - Under Home > Jobs > Backup in Navigation Pane, click on Backup Job button in the ribbon and choose Virtual Machine. Follow the on screen wizard.
    
    - On the Storage screen, choose the Scale-out Backup Repository that was configured previously.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/snippets/swift/swiftXCTest/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        xctest
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    xctest {
        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
    - 227 bytes
    - Viewed (0)
  5. ci/devinfra/docker_windows/Dockerfile

        [Environment]::SetEnvironmentVariable('HOME', 'C:\Users\ContainerAdministrator\', 'Machine'); \
        [Environment]::SetEnvironmentVariable('HOMEDRIVE', 'C:', 'Machine'); \
        [Environment]::SetEnvironmentVariable('HOMEPATH', '\Users\ContainerAdministrator\', 'Machine'); \
        [Environment]::SetEnvironmentVariable('GOROOT', 'C:\Program Files\Go\', 'Machine'); \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    ====
    
    [[sec:select_swift_target_machines]]
    === Selecting target machines
    
    By default, Gradle will attempt to create a Swift binary variant for the host operating system and architecture.
    It is possible to override this by specifying the set of `TargetMachine` on the `application` or `library` script block:
    
    .Setting target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/ComponentWithTargetMachines.java

    import org.gradle.nativeplatform.TargetMachine;
    
    /**
     * Represents a component that targets multiple target machines.
     *
     * @since 5.2
     */
    public interface ComponentWithTargetMachines {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/swift/swiftLibrary/kotlin/build.gradle.kts

            api("io.qt:core:5.1")
            implementation("io.qt:network:5.1")
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = listOf(machines.linux.x86_64, machines.macOS.x86_64)
    }
    // end::configure-target-machines[]
    
    // tag::configure-linkages[]
    library {
        linkage = listOf(Linkage.STATIC, Linkage.SHARED)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 575 bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                details == 'If you don\'t declare the normalization, outputs can\'t be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly'
                solutions == [ 'Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    ====
    
    [[sec:select_cpp_target_machines]]
    === Selecting target machines
    
    By default, Gradle will attempt to create a {cpp} binary variant for the host operating system and architecture.
    It is possible to override this by specifying the set of `TargetMachine` on the `application` or `library` script block:
    
    .Setting target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top