Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for necessarily (0.45 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     * stub-indexing binary libraries). And in general, querying the symbol names provider might be faster since its sets are cached, which is
     * not necessarily the case for declaration providers (e.g. the IDE declaration provider hitting the index without caching).
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

     * test data.
     *
     * [AbstractSessionInvalidationTest] is a base class for invalidation tests of `KaSession` and `LLFirSession`, which share the test
     * data but not necessarily the result data (see also [resultFileSuffix]).
     */
    abstract class AbstractSessionInvalidationTest<SESSION> : AbstractAnalysisApiBasedTest() {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pkg/kubelet/configmap/configmap_manager.go

    }
    
    func (s *simpleConfigMapManager) RegisterPod(pod *v1.Pod) {
    }
    
    func (s *simpleConfigMapManager) UnregisterPod(pod *v1.Pod) {
    }
    
    // configMapManager keeps a cache of all configmaps necessary
    // for registered pods. Different implementation of the store
    // may result in different semantics for freshness of configmaps
    // (e.g. ttl-based implementation vs watch-based implementation).
    type configMapManager struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/secret/secret_manager.go

    }
    
    func (s *simpleSecretManager) RegisterPod(pod *v1.Pod) {
    }
    
    func (s *simpleSecretManager) UnregisterPod(pod *v1.Pod) {
    }
    
    // secretManager keeps a store with secrets necessary
    // for registered pods. Different implementations of the store
    // may result in different semantics for freshness of secrets
    // (e.g. ttl-based implementation vs watch-based implementation).
    type secretManager struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

                }
            }
        }
    
        static void checkEnvironmentVariableUnset(String key) {
            // We can't "unset" the variable with the API executer provides, but it isn't necessary, thanks to the filtering in
            // build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt
            if (System.getenv().containsKey(key)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    dirName = layout.buildDirectory.file('dirName.txt')
                }
    
                tasks.register('answer', Consumer) {
                    // TODO:configuration should this `dependsOn` be necessary here?
                    dependsOn 'producer'
    
                    Provider<String> computedDirName = computeDirName.flatMap { it.dirName }.map { it.asFile.text }
                    def file = layout.buildDirectory.$provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

    /**
     * Declaration provider factory for Kotlin/Native forward declarations.
     *
     * The declarations from the provider are used as a source **representation** for forward declaration symbols.
     * The special provider is necessary because forward declarations are mere qualified names by themselves.
     * It is a responsibility of the implementor to make the source representation correct.
     * Symbol's properties are not affected by its source representation.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/build.gradle.kts

    of its abstractions with JVM-specific abstractions or implementations.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build, and is a necessary
    dependency for any projects working directly with Test tasks.
    """
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         * then you can avoid [KaAnnotated.annotationsByClassId] call,
         * because effectively you already have all necessary information in [KaAnnotationApplicationInfo]
         */
        public val hasArguments: Boolean
    
        @Deprecated("Use 'hasArguments' instead.", replaceWith = ReplaceWith("hasArguments"))
        public val isCallWithArguments: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
                This is necessary because the beanshell project migrated coordinates from org.beanshell in version 2.0b4 to org.apache-extras.beanshell
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top