Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 428 for retLine (0.14 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. 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)
  5. 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)
  6. 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)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/DefaultFileSystemWatchingStatistics.java

            public VirtualFileSystemStatistics(Multiset<FileType> retained) {
                this.retained = retained;
            }
    
            public int getRetained(FileType fileType) {
                return retained.count(fileType);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

    }
    
    
    internal
    data class StandardEditorPosition(
        private val line: Int,
        private val column: Int = 0
    ) : EditorPosition, Serializable {
    
        override fun getLine() = line
    
        override fun getColumn() = column
    }
    
    
    internal
    abstract class AbstractKotlinDslScriptsModelBuilder : ToolingModelBuilder {
    
        companion object {
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

        /**
         * The line number within the file.
         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is line number 1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/tidy.go

    with a non-zero code if the diff is not empty.
    
    The -go flag causes tidy to update the 'go' directive in the go.mod
    file to the given version, which may change which module dependencies
    are retained as explicit requirements in the go.mod file.
    (Go versions 1.17 and higher retain more requirements in order to
    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top