Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 600 for Machines (0.21 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    ====
    
    [[sec:select_swift_target_machines]]
    === Selecting target machines
    
    By default, Gradle will attempt to create a Swift binary variant for the host operating system and architecture.
    It is possible to override this by specifying the set of `TargetMachine` on the `application` or `library` script block:
    
    .Setting target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/sys_nonlinux_arm.s

    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    //	}else
    //		return 0;
    TEXT	·Cas(SB),NOSPLIT,$0
    	JMP	·armcas(SB)
    
    // Non-linux OSes support only single processor machines before ARMv7.
    // So we don't need memory barriers if goarm < 7. And we fail loud at
    // startup (runtime.checkgoarm) if it is a multi-processor but goarm < 7.
    
    TEXT	·Load(SB),NOSPLIT|NOFRAME,$0-8
    	MOVW	addr+0(FP), R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    ====
    
    [[sec:select_cpp_target_machines]]
    === Selecting target machines
    
    By default, Gradle will attempt to create a {cpp} binary variant for the host operating system and architecture.
    It is possible to override this by specifying the set of `TargetMachine` on the `application` or `library` script block:
    
    .Setting target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Any variations across machines will result in cache misses.
    
    Never re-release a non-changing binary dependency with the same version number but different contents: if this happens with a plugin dependency, you will never be able to explain why you don’t see cache reuse between machines (it’s because they have different versions of that artifact).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeCppProjectIntegrationTest.groovy

            useXcodebuildTool()
    
            given:
            makeSingleProject()
            buildFile << configureTargetMachines("machines.${currentHostOperatingSystemFamilyDsl}.architecture('foo')")
            buildFile << configureToolChainSupport('foo')
    
            componentUnderTest.writeToProject(testDirectory)
            succeeds("xcode")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentIntegrationTest.groovy

            given:
            makeSingleProject()
            swift4Component.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
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/MutableTransformExecution.java

            visitInputArtifact(visitor);
        }
    
        private String normalizeAbsolutePath(String path) {
            // We try to normalize the absolute path, so the workspace id is stable between machines for cacheable transforms.
            if (path.startsWith(rootProjectLocation)) {
                return path.substring(rootProjectLocation.length());
            }
            return path;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cadvisor/testing/cadvisor_fake.go

    }
    
    // MachineInfo is a fake implementation of Interface.MachineInfo.
    func (c *Fake) MachineInfo() (*cadvisorapi.MachineInfo, error) {
    	// Simulate a machine with 1 core and 3.75GB of memory.
    	// We set it to non-zero values to make non-zero-capacity machines in Kubemark.
    	return &cadvisorapi.MachineInfo{
    		NumCores:       fakeNumCores,
    		InstanceID:     cadvisorapi.InstanceID(c.NodeName),
    		MemoryCapacity: fakeMemoryCapacity,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top