Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 462 for machine1 (0.23 sec)

  1. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/cpp/AbstractCppComponentIntegrationTest.groovy

            and:
            buildFile << configureTargetMachines("machines.linux", "machines.macOS", "machines.windows")
    
            expect:
            succeeds taskNameToAssembleDevelopmentBinary
            result.assertTasksExecutedAndNotSkipped getTasksToAssembleDevelopmentBinary(currentOsFamilyName.toLowerCase()), ":${taskNameToAssembleDevelopmentBinary}"
        }
    
        @RequiresInstalledToolChain(ToolChainRequirement.SUPPORTS_32_AND_64)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

                    }
    
                    components.withType(CppComponent) {
                        linkage = [Linkage.STATIC]
                        targetMachines = [machines.windows.architecture('${currentArchitecture}'), machines.linux.architecture('${currentArchitecture}'), machines.macOS.architecture('${currentArchitecture}')]
                    }
                }
                project(':deck') {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/AbstractNativeUnitTestIntegrationTest.groovy

            Assume.assumeFalse(componentUnderTestDsl == null)
    
            given:
            makeSingleProject()
            writeTests()
            configureTargetMachines("machines.os('${currentOsFamilyName}').x86, machines.os('${currentOsFamilyName}').x86_64")
            configureTestTargetMachines("machines.os('${currentOsFamilyName}').x86_64")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/AbstractSwiftIntegrationTest.groovy

        def "ignores duplicate target machines"() {
            given:
            makeSingleProject()
            settingsFile << "rootProject.name = '${componentUnderTest.projectName}'"
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.${currentHostOperatingSystemFamilyDsl}", "machines.${currentHostOperatingSystemFamilyDsl}")
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultTargetMachineFactoryTest.groovy

    import spock.lang.Specification
    
    class DefaultTargetMachineFactoryTest extends Specification {
        def factory = new DefaultTargetMachineFactory(TestUtil.objectFactory())
    
        def "can use created target machines in Set"() {
            def windows1 = factory.windows
            def windows2 = factory.windows
            def linux1 = factory.linux.x86_64
            def linux2 = factory.linux.x86_64
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top