Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 925 for Machines (0.17 sec)

  1. 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)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                    }
                    application {
                        targetMachines = [machines.macOS, machines.linux]
                    }
                }
                project(':greeter') {
                    apply plugin: 'swift-library'
                    library {
                        targetMachines = [machines.macOS, machines.linux]
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/AbstractCppUnitTestComponentIntegrationTest.groovy

            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
            expect:
            succeeds "check"
    
            and:
            outputContains("'${componentName}' component in project ':' does not target this operating system.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/badtraceback.go

    	// Run badLR1 on its own stack to minimize the stack size and
    	// exercise the stack bounds logic in the hex dump.
    	go badLR1()
    	select {}
    }
    
    //go:noinline
    func badLR1() {
    	// We need two frames on LR machines because we'll smash this
    	// frame's saved LR.
    	badLR2(0)
    }
    
    //go:noinline
    func badLR2(arg int) {
    	// Smash the return PC or saved LR.
    	lrOff := unsafe.Sizeof(uintptr(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 23:02:28 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            settingsFile << """
                rootProject.name = 'app'
            """
            buildFile << """
                apply plugin: 'cpp-application'
    
                application {
                    targetMachines = [machines.host().x86, machines.host().x86_64]
                }
            """
            def headerDir = file('src/main/headers')
            def src1 = file('src/main/cpp/app.cpp').createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_x86_test.go

    		t.Fatalf("HasAVX512F expected true when HasAVX512VL is true, got false")
    	}
    }
    
    func TestDisableSSE3(t *testing.T) {
    	if GetGOAMD64level() > 1 {
    		t.Skip("skipping test: can't run on GOAMD64>v1 machines")
    	}
    	runDebugOptionsTest(t, "TestSSE3DebugOption", "cpu.sse3=off")
    }
    
    func TestSSE3DebugOption(t *testing.T) {
    	MustHaveDebugOptionsSupport(t)
    
    	if godebug.New("#cpu.sse3").Value() != "off" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 18:30:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

        Attribute<TargetJvmEnvironment> TARGET_JVM_ENVIRONMENT_ATTRIBUTE = Attribute.of("org.gradle.jvm.environment", TargetJvmEnvironment.class);
    
        /**
         * A standard JVM environment (e.g. running on desktop or server machines).
         */
        String STANDARD_JVM = "standard-jvm";
    
        /**
         * An Android environment.
         */
        String ANDROID = "android";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/strconv/itoa.go

    				// Avoid using r = a%b in addition to q = a/b
    				// since 64bit division and modulo operations
    				// are calculated by runtime functions on 32bit machines.
    				q := u / 1e9
    				us := uint(u - q*1e9) // u % 1e9 fits into a uint
    				for j := 4; j > 0; j-- {
    					is := us % 100 * 2
    					us /= 100
    					i -= 2
    					a[i+1] = smallsString[is+1]
    					a[i+0] = smallsString[is+0]
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/pprof_callback.go

    	// it possible for sysmon to retake Ps, forcing C calls to go down the
    	// desired exitsyscall path.
    	//
    	// High GOMAXPROCS is used to increase opportunities for failure on
    	// high CPU machines.
    	const (
    		P = 16
    		G = 64
    	)
    	runtime.GOMAXPROCS(P)
    
    	f, err := os.CreateTemp("", "prof")
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(2)
    	}
    	defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top