Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,061 for machine1 (0.2 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachineBuilder.java

         */
        TargetMachine getX86();
    
        /**
         * Returns a {@link TargetMachine} for the operating system of this machine and the x86 64-bit architecture
         */
        TargetMachine getX86_64();
    
        /**
         * Returns a {@link TargetMachine} for the operating system of this machine and the specified architecture.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/syscall/route_freebsd.go

    func init() {
    	conf, _ := Sysctl("kern.conftxt")
    	for i, j := 0, 0; j < len(conf); j++ {
    		if conf[j] != '\n' {
    			continue
    		}
    		s := conf[i:j]
    		i = j + 1
    		if len(s) > len("machine") && s[:len("machine")] == "machine" {
    			s = s[len("machine"):]
    			for k := 0; k < len(s); k++ {
    				if s[k] == ' ' || s[k] == '\t' {
    					s = s[1:]
    				}
    				break
    			}
    			freebsdConfArch = s
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 05 21:38:13 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/StandardSystemProperty.java

      JAVA_HOME("java.home"),
    
      /** Java Virtual Machine specification version. */
      JAVA_VM_SPECIFICATION_VERSION("java.vm.specification.version"),
    
      /** Java Virtual Machine specification vendor. */
      JAVA_VM_SPECIFICATION_VENDOR("java.vm.specification.vendor"),
    
      /** Java Virtual Machine specification name. */
      JAVA_VM_SPECIFICATION_NAME("java.vm.specification.name"),
    
      /** Java Virtual Machine implementation version. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/docker.md

    Linux-Container werden mit demselben Linux-Kernel des Hosts (Maschine, virtuellen Maschine, Cloud-Servers, usw.) ausgeführt. Das bedeutet einfach, dass sie sehr leichtgewichtig sind (im Vergleich zu vollständigen virtuellen Maschinen, die ein gesamtes Betriebssystem emulieren).
    
    Auf diese Weise verbrauchen Container **wenig Ressourcen**, eine Menge vergleichbar mit der direkten Ausführung der Prozesse (eine virtuelle Maschine würde viel mehr verbrauchen).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/sys_freebsd.go

    	conf, _ := syscall.Sysctl("kern.conftxt")
    	for i, j := 0, 0; j < len(conf); j++ {
    		if conf[j] != '\n' {
    			continue
    		}
    		s := conf[i:j]
    		i = j + 1
    		if len(s) > len("machine") && s[:len("machine")] == "machine" {
    			s = s[len("machine"):]
    			for k := 0; k < len(s); k++ {
    				if s[k] == ' ' || s[k] == '\t' {
    					s = s[1:]
    				}
    				break
    			}
    			if s == "amd64" {
    				align = 8
    			}
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

        }
    
        def "can parse output with no installations"() {
            given:
            def output = """
    Unable to find any JVMs matching version "(null)".
    Matching Java Virtual Machines (0):
    
    Default Java Virtual Machines (0):
    
    No Java runtime present, try --request to install.
    """
            when:
            def result = DefaultOsXJavaHomeCommand.parse(new StringReader(output))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/StandardSystemProperty.java

      JAVA_HOME("java.home"),
    
      /** Java Virtual Machine specification version. */
      JAVA_VM_SPECIFICATION_VERSION("java.vm.specification.version"),
    
      /** Java Virtual Machine specification vendor. */
      JAVA_VM_SPECIFICATION_VENDOR("java.vm.specification.vendor"),
    
      /** Java Virtual Machine specification name. */
      JAVA_VM_SPECIFICATION_NAME("java.vm.specification.name"),
    
      /** Java Virtual Machine implementation version. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/manually.md

    When referring to the remote machine, it's common to call it **server**, but also **machine**, **VM** (virtual machine), **node**. Those all refer to some type of remote machine, normally running Linux, where you run programs.
    
    ## Install the Server Program
    
    When you install FastAPI, it comes with a production server, Uvicorn, and you can start it with the `fastapi run` command.
    
    But you can also install an ASGI server manually:
    
    === "Uvicorn"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/net/mail/message_test.go

    		addrsStr string
    		exp      []*Address
    	}{
    		// Bare address
    		{
    			`jdoe@machine.example`,
    			[]*Address{{
    				Address: "jdoe@machine.example",
    			}},
    		},
    		// RFC 5322, Appendix A.1.1
    		{
    			`John Doe <jdoe@machine.example>`,
    			[]*Address{{
    				Name:    "John Doe",
    				Address: "jdoe@machine.example",
    			}},
    		},
    		// RFC 5322, Appendix A.1.2
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeNativeProjectIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can create xcode project for unbuildable component"() {
            given:
            makeSingleProject()
            buildFile << configureTargetMachines("machines.os('os-family')")
            componentUnderTest.writeToProject(testDirectory)
    
            when:
            succeeds("xcode")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top