Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,061 for machine1 (0.15 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. src/debug/elf/elf.go

    // Machine is found in Header.Machine.
    type Machine uint16
    
    const (
    	EM_NONE          Machine = 0   /* Unknown machine. */
    	EM_M32           Machine = 1   /* AT&T WE32100. */
    	EM_SPARC         Machine = 2   /* Sun SPARC. */
    	EM_386           Machine = 3   /* Intel i386. */
    	EM_68K           Machine = 4   /* Motorola 68000. */
    	EM_88K           Machine = 5   /* Motorola 88000. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K 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