Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,061 for machine1 (0.14 sec)

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

    // tag::apply-plugin[]
    plugins {
        `cpp-application`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    application {
        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
    - 306 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            assert matcher.matches()
            return matcher.group(1)
        }
    
        static ArchitectureInternal readArch(List<String> lines) {
            def archString = readFirstHeaderValue(lines, "Machine:", "Maschine:")
            switch (archString) {
                case "Intel 80386":
                    return Architectures.forInput("x86")
                case "Advanced Micro Devices X86-64":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Any variations across machines will result in cache misses.
    
    Never re-release a non-changing binary dependency with the same version number but different contents: if this happens with a plugin dependency, you will never be able to explain why you don’t see cache reuse between machines (it’s because they have different versions of that artifact).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

        /**
         * A Hybrid node tries to resolve a name using the nameserver first. If
         * that fails use the broadcast address. This is the default if a nameserver
         * is provided. This is the behavior of Microsoft Windows machines.
         */
    
        public static final int H_NODE = 3;
    
        /**
         * Unknown MAC Address
         */
        public static final byte[] UNKNOWN_MAC_ADDRESS = new byte[] {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            createDirs("app", "hello")
            settingsFile << "include 'app', 'hello'"
            def app = new CppAppWithLibrary()
    
            given:
            buildFile << """
                project(':app') {
                    apply plugin: 'cpp-application'
                    application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/cppLibrary/kotlin/build.gradle.kts

            implementation("io.qt:network:5.1")
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.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
    - 598 bytes
    - Viewed (0)
  7. src/cmd/go/internal/auth/netrc_test.go

    	"reflect"
    	"testing"
    )
    
    var testNetrc = `
    machine incomplete
    password none
    
    machine api.github.com
      login user
      password pwd
    
    machine incomlete.host
      login justlogin
    
    machine test.host
    login user2
    password pwd2
    
    machine oneline login user3 password pwd3
    
    machine ignore.host macdef ignore
      login nobody
      password nothing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 21:11:28 UTC 2019
    - 1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/snippets/cpp/cppApplication/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'cpp-application'
    }
    // end::apply-plugin[]
    
    // tag::configure-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
    - 317 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'cpp-unit-test'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        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
    - 312 bytes
    - Viewed (0)
Back to top