Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 780 for retLine (0.21 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			haveRetArg         bool
    			retLine            []int
    		)
    
    		flushRet := func() {
    			if fn != nil && fn.vars["ret"] != nil && !haveRetArg && len(retLine) > 0 {
    				v := fn.vars["ret"]
    				resultStr := fmt.Sprintf("%d-byte ret+%d(FP)", v.size, v.off)
    				if abi == "ABIInternal" {
    					resultStr = "result register"
    				}
    				for _, line := range retLine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            }
    
            int getRetainedFilesInCurrentBuild() {
                def retainedInformation = spec.result.getPostBuildOutputLineThatContains("Virtual file system retains information about ")
                def numberMatcher = retainedInformation =~ /Virtual file system retains information about (\d+) files, (\d+) directories and (\d+) missing files until next build/
                return numberMatcher[0][1] as int
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    This can happen if you mount a project directory or subdirectory from a network drive.
    Gradle doesn't retain information about unsupported file systems between builds when enabled by default.
    If you explicitly enable file system watching, Gradle retains information about unsupported file systems between builds.
    
    == Logging
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

                }
                return null;
            }
        }
    
        /**
         * Retains strong references to the keys and values via the key's ClassLoader. This allows the ClassLoader to be collected.
         */
        private static class DefaultClassMap<V> extends AbstractCrossBuildInMemoryCache<Class<?>, V> {
            // Currently retains strong references to types that are not loaded using a VisitableURLClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild/shade/extension/ShadedJarExtension.kt

         */
        abstract val unshadedPackages: SetProperty<String>
    
        /**
         * Do not retain classes in the ignore packages hierarchies, unless reachable from some other retained class.
         */
        abstract val ignoredPackages: SetProperty<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /Virtual file system retained information about \d+ files, \d+ directories and \d+ missing files since last build/
            result.output =~ /Received \d+ file system events during the current build while watching \d+ locations/
            result.output =~ /Virtual file system retains information about \d+ files, \d+ directories and \d+ missing files until next build/
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. pkg/ledger/ledger.go

    // Package ledger implements a modified map with three unique characteristics:
    // 1. every unique state of the map is given a unique hash
    // 2. prior states of the map are retained for a fixed period of time
    // 2. given a previous hash, we can retrieve a previous state from the map, if it is still retained.
    package ledger
    
    import (
    	"encoding/base64"
    	"time"
    
    	"github.com/spaolacci/murmur3"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheRetainingDataFromPreviousBuildTest.groovy

        @Override
        CrossBuildInMemoryCache<String, Object> newCache() {
            return factory.newCacheRetainingDataFromPreviousBuild { value -> true }
        }
    
        def "retains values from the previous session"() {
            def function = Mock(Function)
    
            when:
            def cache = newCache()
            cache.get("a", function)
            cache.get("b", function)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

    /**
     * A factory for {@link CrossBuildInMemoryCache} instances.
     *
     * Note that this implementation should only be used to create global scoped services.
     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     *
     * The lifecycle of details and result objects are effectively undetermined.
     * The build scan plugin will retain the objects for a short time after the operation has
     * completed, in order to "process" them on a separate thread.
     * It can be assumed that this processing happens relatively quickly,
     * after which the objects are no longer retained.
     *
     * Consideration should be given to the package space of the details and result types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top