Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 313 for workaround (0.16 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

    import org.gradle.api.Project
    import org.gradle.api.Task
    import org.gradle.api.provider.Provider
    import org.gradle.build.event.BuildEventsListenerRegistry
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.support.serviceOf
    
    /**
     * In build-logic and main build, register a BuildService instance separately,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/packages/KotlinStandalonePackageProvider.kt

            val filesInScope = files.filter { scope.contains(it.virtualFile) }
            val packages: MutableMap<FqName, MutableSet<Name>> = mutableMapOf() // the explicit type is here to workaround KTIJ-21172
            filesInScope.forEach { file ->
                var currentPackage = FqName.ROOT
                for (subPackage in file.packageFqName.pathSegments()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    // Direct usage is discouraged as the moment.
    // Try to use NewAlias instead.
    func newAlias(tname *types.TypeName, rhs types.Type) *Alias {
    	a := types.NewAlias(tname, rhs)
    	// TODO(go.dev/issue/65455): Remove kludgy workaround to set a.actual as a side-effect.
    	Unalias(a)
    	return a
    }
    
    // Enabled reports whether [NewAlias] should create [types.Alias] types.
    //
    // This function is expensive! Call it sparingly.
    func Enabled() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KaAbstractResolver.kt

    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.psi.*
    
    @KaAnalysisApiInternals
    abstract class KaAbstractResolver : KaResolver() {
        // TODO: remove this workaround after KT-68499
        protected fun resolveDefaultAnnotationArgumentReference(
            reference: KtDefaultAnnotationArgumentReference,
        ): Collection<KaSymbol> = with(analysisSession) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cadvisor/util.go

    }
    
    // UsingLegacyCadvisorStats returns true if container stats are provided by cadvisor instead of through the CRI.
    // CRI integrations should get container metrics via CRI.
    // TODO: cri-o relies on cadvisor as a temporary workaround. The code should
    // be removed. Related issue:
    // https://github.com/kubernetes/kubernetes/issues/51798
    func UsingLegacyCadvisorStats(runtimeEndpoint string) bool {
    	return strings.HasSuffix(runtimeEndpoint, CrioSocketSuffix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 05:08:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

        }
    
        val apiExtensionsFileCollection = files(apiExtensionsOutputDir).builtBy(generateKotlinDependencyExtensions)
    
        kotlinMainSourceSet.srcDir(apiExtensionsFileCollection)
    
        // Workaround for https://github.com/gradle/gradle/issues/24131
        // See gradlebuild.unittest-and-compile.gradle.kts
        configurations["transitiveSourcesElements"].outgoing.artifact(apiExtensionsOutputDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_statements.txt

    [short] skip
    
    # Workaround for issue 64014 -- for the portion of this test that
    # verifies that caching works correctly, the cache should theoretically
    # always behave reliably/deterministically, however if other tests are
    # concurrently accessing the cache while this test is running, it can
    # lead to cache lookup failures, which manifest as test failures here.
    # To avoid such flakes, use a separate isolated GOCACHE for this test.
    env GOCACHE=$WORK/cache
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsDslSchema.kt

     *  missing single-arg [Settings.include] (or missing vararg support) prevents this from happening,
     *  and we use the [SettingsInternal.include] single-argument workaround for now. */
    internal
    fun settingsEvaluationSchema(settings: Settings): EvaluationAndConversionSchema =
        buildEvaluationAndConversionSchema(
            SettingsInternal::class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

            //for every method found in class meta, create a javadoc link
            classRepository.each {name, ClassMetaData metaData ->
                linkRepository.put(name, new ClassLinkMetaData(metaData))
            }
    
            // workaround to IBM JDK bug
            def createDslDocModelClosure = this.&createDslDocModel.curry(classDocbookDirectory.get().asFile, mainDocbookTemplate, classRepository)
    
            def doc = mainDocbookTemplate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionEngineFactory.java

    import org.gradle.internal.vfs.VirtualFileSystem;
    
    import static org.gradle.internal.execution.steps.AfterExecutionOutputFilter.NO_FILTER;
    
    /**
     * Note that this is kept as a Java source file as a workaround for IntelliJ editing
     * being very slow with deeply nested constructor calls in Groovy source files.
     */
    public class TestExecutionEngineFactory {
        public static ExecutionEngine createExecutionEngine(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top