Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for usually (0.4 sec)

  1. src/cmd/go/testdata/script/autocgo.txt

    [!cgo] skip
    [cross] skip
    
    # Assume we're on a system that can enable cgo normally.
    env CGO_ENABLED=
    go env CGO_ENABLED
    stdout 1
    
    # Clearing CC and removing everything but Go from the PATH should usually
    # disable cgo: no C compiler anymore (unless the baked-in defaultCC is an
    # absolute path and exists.
    env CC=
    env PATH=$GOROOT/bin
    go env CGO_ENABLED
    [!abscc] stdout 0
    [abscc] stdout 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 02:01:30 UTC 2022
    - 625 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

        features {
            publishBuildStatusToGithub(model)
        }
    
        tcParallelTests(splitNumber)
    
        requirements {
            // Smoke tests is usually heavy and the build time is twice on EC2 agents
            requiresNotEc2Agent()
        }
    
        applyTestDefaults(
            model,
            this,
            ":smoke-test:$task",
            timeout = 120,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 16:49:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionNavigationTargetsProvider.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    public abstract class KaResolveExtensionNavigationTargetsProvider {
        /**
         * Provides a [PsiElement] which will be opened on a navigation request for [element].
         *
         * Usually returns a single result. Might return an empty collection if there is no navigation target.
         * Also, might multiple targets in a case of ambiguity or multiple targets for a [symbol]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
        public val annotations: List<KaAnnotation>
            get() = this
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

        private val inlineFunctionsWithBody: MutableSet<KtDeclarationWithBody> = mutableSetOf()
    
        /**
         * Collects all inline function calls in an [element] (usually a file) and follows each transitively.
         */
        fun analyze(element: KtElement) {
            val project = element.project
            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    #
    # Before Go 1.16, we extracted each module zip to a temporary directory with
    # a random name, then renamed that into place with os.Rename. On Windows,
    # this failed with ERROR_ACCESS_DENIED when another process (usually an
    # anti-virus scanner) opened files in the temporary directory. This test
    # simulates that behavior, verifying golang.org/issue/36568.
    #
    # Since 1.16, we extract to the final directory, but we create a .partial file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

        name = "Smoke Ide Tests"
        description = "Tests against IDE sync process"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        requirements {
            // These tests are usually heavy and the build time is twice on EC2 agents
            requiresNotEc2Agent()
        }
    
        applyTestDefaults(
            model = model,
            buildType = this,
            gradleTasks = ":smoke-ide-test:smokeIdeTest",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    
    /**
     * Type substitutor. Performs substitution of a type parameters inside a type to some fixed type.
     * Usually can be represented as a map from type parameter to it corresponding substitution.
     *
     * Example of a substitution:
     * ```
     * substitutor = { T -> Int, S -> Long }
     * substitute(Map<T, S>, substitutor) = Map<Int, Long>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
     * produce a merged provider which is more efficient than the naive sequential composite provider.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

        private val transitiveDependentsByKtModule = createConcurrentSoftMap<KtModule, Set<KtModule>>()
    
        private val refinementDependentsByKtModule: Map<KtModule, Set<KtModule>> by lazy {
            // Refinement dependents will usually only be requested for expect classes, so it's better to compute them lazily as they're not
            // needed for all projects.
            buildDependentsMap(modules) { it.transitiveDependsOnDependencies.asSequence() }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top