Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,061 for machine1 (0.15 sec)

  1. api/go1.11.txt

    pkg debug/elf, const EM_C166 = 116
    pkg debug/elf, const EM_C166 Machine
    pkg debug/elf, const EM_CDP = 215
    pkg debug/elf, const EM_CDP Machine
    pkg debug/elf, const EM_CE = 119
    pkg debug/elf, const EM_CE Machine
    pkg debug/elf, const EM_CLOUDSHIELD = 192
    pkg debug/elf, const EM_CLOUDSHIELD Machine
    pkg debug/elf, const EM_COGE = 216
    pkg debug/elf, const EM_COGE Machine
    pkg debug/elf, const EM_COOL = 217
    pkg debug/elf, const EM_COOL Machine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/swift/swiftLibrary/groovy/build.gradle

            api "io.qt:core:5.1"
            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)
  4. platforms/documentation/docs/src/snippets/cpp/cppLibrary/groovy/build.gradle

            implementation "io.qt:network:5.1"
        }
    }
    // 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)
  5. src/cmd/go/internal/auth/netrc.go

    		for ; i < len(f)-1; i += 2 {
    			// Reset at each "machine" token.
    			// “The auto-login process searches the .netrc file for a machine token
    			// that matches […]. Once a match is made, the subsequent .netrc tokens
    			// are processed, stopping when the end of file is reached or another
    			// machine or a default token is encountered.”
    			switch f[i] {
    			case "machine":
    				l = netrcLine{machine: f[i+1]}
    			case "default":
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/basic/groovy/build.gradle

            compileTask.get().compilerArgs.add '-O'
        }
    }
    // end::swift-compiler-options-per-variants[]
    
    // tag::swift-select-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
    - 1.1K bytes
    - Viewed (0)
  7. docs/de/docs/deployment/concepts.md

    ### Serverspeicher
    
    Wenn Ihr Code beispielsweise ein Machine-Learning-Modell mit **1 GB Größe** lädt und Sie einen Prozess mit Ihrer API ausführen, verbraucht dieser mindestens 1 GB RAM. Und wenn Sie **4 Prozesse** (4 Worker) starten, verbraucht jeder 1 GB RAM. Insgesamt verbraucht Ihre API also **4 GB RAM**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top