Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,061 for machine1 (0.3 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. cmd/kubeadm/app/cmd/cmd.go

    			    │ On the second machine:                                   │
    			    ├──────────────────────────────────────────────────────────┤
    			    │ worker# kubeadm join <arguments-returned-from-init>      │
    			    └──────────────────────────────────────────────────────────┘
    
    			    You can then repeat the second step on as many other machines as you like.
    
    		`),
    		SilenceErrors: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_library_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 library target machines
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/internal/goroot/gc.go

    	}
    	versionB, err := exec.Command(bin, "-dumpversion").Output()
    	if err != nil {
    		return
    	}
    	version := strings.TrimSpace(string(versionB))
    	machineB, err := exec.Command(bin, "-dumpmachine").Output()
    	if err != nil {
    		return
    	}
    	machine := strings.TrimSpace(string(machineB))
    
    	dirsEntries := strings.Split(string(allDirs), "\n")
    	const prefix = "libraries: ="
    	var dirs []string
    	for _, dirEntry := range dirsEntries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. CITATION.cff

    title: TensorFlow, Large-scale machine learning on heterogeneous systems
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_library_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 library target machines
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. pilot/pkg/features/tuning.go

    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    			"Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes. "+
    				"If set to 0 or unset, the max will be automatically determined based on the machine size",
    		).Get()
    		if v > 0 {
    			return v
    		}
    		procs := runtime.GOMAXPROCS(0)
    		// Heuristic to scale with cores. We end up with...
    		// 1: 20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

        def "create visual studio solution for component with multiple target machines"() {
            assumeFalse(toolChain.meets(WINDOWS_GCC))
    
            when:
            componentUnderTest.writeToProject(testDirectory)
            makeSingleProject()
            buildFile << """
                ${componentUnderTestDsl}.targetMachines = [machines.${currentHostOperatingSystemFamilyDsl}.x86, machines.${currentHostOperatingSystemFamilyDsl}.x86_64]
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top