Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 925 for Machines (0.2 sec)

  1. src/runtime/os_linux_be64.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The standard Linux sigset type on big-endian 64-bit machines.
    
    //go:build linux && (ppc64 || s390x)
    
    package runtime
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 65
    	_SIG_BLOCK   = 0
    	_SIG_UNBLOCK = 1
    	_SIG_SETMASK = 2
    )
    
    type sigset uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 01:56:24 UTC 2022
    - 806 bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppToolChainChangesIntegrationTest.groovy

                        publicHeaders.from('src/main/headers')
                        targetMachines = [machines.host().x86]
                    }
                }
                project(':app') {
                    apply plugin: 'cpp-application'
                    application {
                        targetMachines = [machines.host().x86]
                    }
                    dependencies {
                        implementation project(':library')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. 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 (1)
  4. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    Target machines - defaults to the tested component (if present) or build host (otherwise)::
    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:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppApplicationProjectIntegrationTest.groovy

            """
    
            buildFile << """
                project(':app') {
                    apply plugin: 'cpp-application'
    
                    application {
                        targetMachines = [machines.os('os-family')]
                        dependencies {
                            implementation project(':greeter')
                        }
                    }
                }
                project(':greeter') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/cpu/cpu_s390x_test.go

    	// mapping of linux feature strings to S390X fields
    	mapping := make(map[string]*bool)
    	for _, option := range Options {
    		mapping[option.Name] = option.Feature
    	}
    
    	// these must be true on the machines Go supports
    	mandatory := make(map[string]bool)
    	mandatory["zarch"] = false
    	mandatory["eimm"] = false
    	mandatory["ldisp"] = false
    	mandatory["stfle"] = false
    
    	features, err := getFeatureList()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

                    }
    
                    components.withType(CppComponent) {
                        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: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftProjectInitDescriptor.java

                buildScriptBuilder.methodInvocation(null, "targetMachines.add", buildScriptBuilder.propertyExpression("machines.linux.x86_64"));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 19:41:01 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. 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)
Back to top