Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 133 for Hashing (0.14 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProvider.kt

     * The FIR compiler calls [doesKotlinOnlyPackageExist]  very often, so the implementations should consider caching the results.
     */
    public abstract class KotlinPackageProvider : KotlinComposableProvider {
        /**
         * Checks if a package with given [FqName] exists in current [GlobalSearchScope] with a view from a given [platform].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/notes-template.md

    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for Tutorial - Debugging. PR [#2737](https://github.com/tiangolo/fastapi/pull/2737) by [@blt232018](https://github.com/blt232018).
    * 🌐 Add Chinese translation for Tutorial - Security - OAuth2 with Password (and hashing), Bearer with JWT tokens. PR [#2642](https://github.com/tiangolo/fastapi/pull/2642) by [@waynerv](https://github.com/waynerv).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/release/notes.md

    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Consequently, subsequent builds can be faster purely due to this optimization process.
    
    With the Daemon, perceived build times can drop dramatically between a project's 1^st^ and 10^th^ builds.
    
    === Memory Caching
    
    The Daemon enables in-memory caching across builds.
    This includes classes for plugins and build scripts.
    
    Similarly, the Daemon maintains in-memory caches of build data, such as the hashes of task inputs and outputs for incremental builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     * not necessarily the case for declaration providers (e.g. the IDE declaration provider hitting the index without caching).
     *
     * However, since symbol names providers may not be able to compute name sets per their contract, we may have to fall back to the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSessionProvider.kt

                // Nevertheless, a `KaFirSession`'s validity is based on the underlying `LLFirSession`, so removed analysis sessions for
                // library modules might still be valid. This is not a problem, though, because analysis session caching is not required for
                // correctness, but rather a performance optimization.
                analysisSessionProvider.clearCaches()
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

    public class DefaultTransformInvocationFactory implements TransformInvocationFactory {
        private static final StringInternalOption CACHING_DISABLED_PROPERTY = new StringInternalOption("org.gradle.internal.transform-caching-disabled", null);
    
        private final ExecutionEngine executionEngine;
        private final FileSystemAccess fileSystemAccess;
        private final InternalOptions internalOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a regression that the scheduler always goes through all Filter plugins. ([#114518](https://github.com/kubernetes/kubernetes/pull/114518), [@Huang-Wei](https://github.com/Huang-Wei))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	// This is intentionally empty because component config does not exists in the public api
    	// (empty mean all ComponentConfigs fields nil, and this is necessary for getting roundtrip passing)
    }
    
    func fuzzLocalEtcd(obj *kubeadm.LocalEtcd, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top