Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,715 for machine (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmImplementation.java

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain;
    
    
    /**
     * Represents a filter for a implementation of a Java Virtual Machine.
     *
     * @since 6.8
     */
    public final class JvmImplementation {
    
        /**
         * Vendor-specific virtual machine implementation.
         *
         * Acts as a placeholder and matches any implementation from any vendor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:40:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

            def app = new CppAppWithLibrariesWithApiDependencies()
            def targetMachines = [machine(WINDOWS, currentArchitecture), machine(LINUX, currentArchitecture), machine(MACOS, currentArchitecture)]
    
            given:
            createDirs("deck", "card", "shuffle")
            settingsFile << "include 'deck', 'card', 'shuffle'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. docs/fr/docs/deployment/manually.md

    Lorsqu'on se réfère à la machine distante, il est courant de l'appeler **serveur**, mais aussi **machine**, **VM** (machine virtuelle), **nœud**. Tout cela fait référence à un type de machine distante, exécutant  Linux, en règle générale, sur laquelle vous exécutez des programmes.
    
    
    ## Installer le programme serveur
    
    Vous pouvez installer un serveur compatible ASGI avec :
    
    === "Uvicorn"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/cmd.go

    			Example usage:
    
    			    Create a two-machine cluster with one control-plane node
    			    (which controls the cluster), and one worker node
    			    (where your workloads, like Pods and Deployments run).
    
    			    ┌──────────────────────────────────────────────────────────┐
    			    │ On the first machine:                                    │
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

         */
        public boolean isCommunicationAddress(InetAddress address) {
            try {
                synchronized (lock) {
                    init();
                    return communicationAddresses.contains(address);
                }
            } catch (Exception e) {
                throw new RuntimeException("Could not determine the IP addresses for this machine.", e);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top