Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for closest (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                get() = ******@****.***
        }
    
        private
        fun executionEngineFor(scriptHost: KotlinScriptHost<*>): ExecutionEngine {
            // get the ExecutionEngine from the closest available service scope
            // for the global one has no support for the build cache
            return (scriptHost.target as? Project)?.serviceOf()
                ?: executionEngine
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *     class Inner { // scope2  ClassId = Other.Inner
         *       fun foo() {
         *         // Distance to scopes for classes from <element> in the order from the closest:
         *         //   scope2 -> scope3 -> scope1
         *         <element>
         *       }
         *       companion object { // scope3  ClassId = Other.Inner.Companion
         *       }
         *     }
         *   }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

        public val implicitReceivers: List<KaImplicitReceiver> by validityAsserted(implicitReceivers)
    
        /**
         * Scopes for position, sorted according to their indexes in scope tower, i.e. the first scope is the closest one to position.
         */
        public val scopes: List<KaScopeWithKind> by validityAsserted(scopes)
    }
    
    public typealias KtScopeContext = KaScopeContext
    
    public class KaImplicitReceiver(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

                    )
                )
            )
        }
    
        @Test
        fun `Project target - script-plugin - empty`() {
    
            assertThat(
                "reduces to static program that closes target scope then applies base plugins",
                partialEvaluationOf(
                    Program.Empty,
                    ProgramKind.ScriptPlugin,
                    ProgramTarget.Project
                ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_load_err.txt

    # Verifies golang.org/issue/38568
    
    go list -e -deps ./scan
    stdout m/want
    
    go list -e -deps ./multi
    stdout m/want
    
    go list -e -deps ./constraint
    stdout m/want
    
    [cgo] go list -e -test -deps ./cgotest
    [cgo] stdout m/want
    
    [cgo] go list -e -deps ./cgoflag
    [cgo] stdout m/want
    
    
    # go list -e should include files with errors in GoFiles, TestGoFiles, and
    # other lists, assuming they match constraints.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        override val sharedIdentities = WriteIdentities()
    
        override val circularReferences = CircularReferences()
    
        /**
         * Closes the given [encoder] if it is [AutoCloseable].
         */
        override fun close() {
            (encoder as? AutoCloseable)?.close()
        }
    
        override fun beanStateWriterFor(beanType: Class<*>): BeanStateWriter =
            beanStateWriterLookup.beanStateWriterFor(beanType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    }
    
    // readCache repeatedly globs for go.mod files in the given cache, then opens
    // those files for reading. When the done chan is closed, readCache closes
    // files and returns.
    func readCache(gopath string, done <-chan struct{}) {
    	files := make(map[string]*os.File)
    	defer func() {
    		for _, f := range files {
    			f.Close()
    		}
    	}()
    
    	pattern := filepath.Join(gopath, "pkg/mod/rsc.io/quote@v1.5.2*/go.mod")
    	for {
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt

            }
        }
    
        private
        fun openJarFile(file: File) =
            openJars.computeIfAbsent(file, ::JarFile)
    
        override fun close() {
            openJars.values.forEach(JarFile::close)
        }
    }
    
    
    /**
     * See https://docs.oracle.com/javase/8/docs/technotes/tools/findingclasses.html#userclass
     */
    private
    val File.isClassPathArchive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. README.md

    **For more information, please visit the [official project homepage](https://gradle.org)**
    
    ## Getting Started
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         */
        fun loadOrCreateProjectMetadata(identityPath: Path, creator: () -> LocalComponentGraphResolveState): LocalComponentGraphResolveState
    
        /**
         * Flushes any remaining state to the cache and closes any resources
         */
        fun finalizeCacheEntry()
    
        // This is a temporary property to allow migration from a root build scoped cache to a build tree scoped cache
        val isLoaded: Boolean
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top