Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 925 for Machines (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Target machines - defaults to the build host::
    The target machine expresses which machines the application expects to run.
    A target machine is identified by its operating system and architecture.
    Gradle uses the target machine to decide which tool chain to choose based on availability on the host machine.
    
    The target machine can be configured as follows:
    
    .Configure application target machines
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue23781.go

    //go:build amd64
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 260 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    Target machines - defaults to the tested component (if present) or build host (otherwise)::
    The target machine expresses which machines the application expects to run.
    A target machine is identified by its operating system and architecture.
    Gradle uses the target machine to decide which tool chain to choose based on availability on the host machine.
    
    The target machine can be configured as follows:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                application {
                    baseName = 'test'
                    targetMachines = [machines.windows.x86, machines.linux.x86, machines.macOS.x86_64]
                }
                publishing {
                    repositories { maven { url '$mavenRepo.uri' } }
                }
            """
            app.writeToProject(testDirectory)
    
            when:
            run('publish')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

         *
         * @param action the action to execute on incoming connection. The supplied action is not required to be thread-safe.
         * @param allowRemote If true, only allow connections from remote machines. If false, allow only from the local machine.
         * @return the address of the endpoint which the connector is listening on.
         */
        ConnectionAcceptor accept(Action<ConnectCompletion> action, boolean allowRemote);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            given:
            buildFile << """
                apply plugin: 'cpp-application'
    
                application.targetMachines = [machines.${currentHostOperatingSystemFamilyDsl}.x86, machines.${currentHostOperatingSystemFamilyDsl}.x86_64]
            """
    
            def app = new CppApp()
            app.writeToProject(testDirectory)
            file('src/main/headers/ignore.cpp') << 'broken!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue15252.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test makes sure that we use all 64 bits of an
    // index, even on 32 bit machines.  It also tests that nacl
    // can compile 64 bit indexes loaded from ODOTPTR properly.
    
    package main
    
    type T struct {
    	i int64
    }
    
    func f(t *T) byte {
    	b := [2]byte{3, 4}
    	return b[t.i]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 14 21:19:12 UTC 2016
    - 612 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
            expect:
            succeeds "help"
        }
    
        def "fails configuration when no target machine is configured"() {
            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultTargetMachineFactoryTest.groovy

    import spock.lang.Specification
    
    class DefaultTargetMachineFactoryTest extends Specification {
        def factory = new DefaultTargetMachineFactory(TestUtil.objectFactory())
    
        def "can use created target machines in Set"() {
            def windows1 = factory.windows
            def windows2 = factory.windows
            def linux1 = factory.linux.x86_64
            def linux2 = factory.linux.x86_64
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/internal/bytealg/indexbyte_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Avoid IndexByte and IndexByteString on Plan 9 because it uses
    // SSE instructions on x86 machines, and those are classified as
    // floating point instructions, which are illegal in a note handler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:30:15 UTC 2023
    - 776 bytes
    - Viewed (0)
Back to top