Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 475 for miny (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == Why use the build cache?
    
    The build cache can _significantly_ improve build performance for Android projects, in many cases by 30-40%.
    Many of the compilation and assembly tasks provided by the Android Gradle Plugin are cacheable, and more are made so with each new iteration.
    
    === Faster CI builds
    
    CI builds benefit particularly from the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/vardecl.go

    	_ = x
    	_ = y
    }
    
    func _() {
    	var x int
    	return x /* ERROR "too many return values" */
    	return math /* ERROR "too many return values" */ .Sin(0)
    }
    
    func _() int {
    	var x, y int
    	return x, y /* ERROR "too many return values" */
    }
    
    // Short variable declarations must declare at least one new non-blank variable.
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue36516.go

    var x unsafe.Pointer = unsafe.Pointer(&buf[0])
    
    func main() {
    	n := testing.AllocsPerRun(1000, func() {
    		x = unsafe.Pointer(uintptr(x) + 1)
    		x = unsafe.Pointer(uintptr(x) - 1)
    	})
    	if n > 0 {
    		panic(fmt.Sprintf("too many allocations; want 0 got %f", n))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 540 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue58742.go

    	return 0 // ERROR "not enough return values\n\thave (number)\n\twant (int, unknown type, string)"
    }
    
    func _() (int, UndefinedType /* ERROR "undefined: UndefinedType" */ ) {
    	return 0, 1, 2 // ERROR "too many return values\n\thave (number, number, number)\n\twant (int, unknown type)"
    }
    
    // test case from issue
    func _() UndefinedType /* ERROR "undefined: UndefinedType" */ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:21:51 UTC 2023
    - 708 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    == Too many entries in a single catalog
    
    This error indicates that a version catalog contains too many entries.
    Because of JVM file format restrictions, when Gradle generates dependency accessors, it has to put an upper limit to the number of aliases that a catalog may contain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    == Settings File Scripting
    
    There are many more properties and methods on the `Settings` object that you can use to configure your build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. cmd/erasure-sets_test.go

    		{"object", 37},
    		{"The Shining Script <v1>.pdf", 38},
    		{"Cost Benefit Analysis (2009-2010).pptx", 59},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 35},
    		{"SHØRT", 49},
    		{"There are far too many object names, and far too few bucket names!", 8},
    		{"a/b/c/", 159},
    		{"/a/b/c", 96},
    		{string([]byte{0xff, 0xfe, 0xfd}), 147},
    	}
    
    	// Tests hashing order to be consistent.
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/software/test-suites-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Base for test suites.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    
    This project is separate from testing-base to avoid needing to be Java 6 compatible.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 950 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_proxy_errors.txt

    # Server responses should be truncated to some reasonable number of lines.
    # (For now, exactly eight.)
    ! go list -m vcs-test.golang.org/auth/ormanylines@latest
    stderr '\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$'
    
    # Server responses should be truncated to some reasonable number of characters.
    ! go list -m vcs-test.golang.org/auth/oronelongline@latest
    ! stderr 'blah{40}'
    stderr '\tserver response: \[Truncated: too long\.\]$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 698 bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/generator/DependencyTreeTest.groovy

            def classCount = 4
    
            when:
            tree.calculateClassDependencies(0, 0, classCount)
    
            then:
            tree.getTransitiveChildClassIds(3) == [0, 1, 2]
        }
    
        def "arranges classes on many levels"() {
            //           12
            //    /      |     \
            //    3      7     11
            //  / | \  / | \  / | \
            //  0 1 2  4 5 6  8 9 10
    
            given:
            def maxLevel = 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top