Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for scope_ (0.13 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

    ) {
        val lhs = arguments.firstOrNull() ?: return
        val scope = lhs.resolvedType.scope(
            useSiteSession = session,
            scopeSession = analysisSession.getScopeSessionFor(analysisSession.useSiteSession),
            callableCopyTypeCalculator = CallableCopyTypeCalculator.DoNothing,
            requiredMembersPhase = FirResolvePhase.STATUS,
        ) ?: return
    
        scope.processFunctionsByName(OperatorNameConventions.EQUALS) { functionSymbol ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

    import org.gradle.internal.buildtree.BuildModelParameters
    import org.gradle.internal.deprecation.DeprecationLogger
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.util.internal.SupportedEncryptionAlgorithm
    import java.io.File
    
    
    @ServiceScope(Scope.BuildTree::class)
    class ConfigurationCacheStartParameter(
        private val buildLayout: BuildLayout,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            // Merge the daemon services into the build process services
            // It would be better to separate these into different scopes, but many things still assume that daemon services are available in the global scope,
            // so keep them merged as a migration step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

    import org.gradle.cache.PersistentCache
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.internal.cc.impl.initialization.ConfigurationCacheStartParameter
    import org.gradle.internal.cc.base.logger
    import org.gradle.internal.extensions.stdlib.useToRun
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

    import org.gradle.internal.problems.failure.Failure
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.Closeable
    import java.io.File
    import java.nio.file.Files
    import java.util.concurrent.Callable
    import java.util.concurrent.TimeUnit
    import kotlin.contracts.contract
    
    
    @ServiceScope(Scope.BuildTree::class)
    class ConfigurationCacheReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.PropertyTrace
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.util.concurrent.ConcurrentHashMap
    
    
    /**
     * The environment state that was mutated at the configuration phase and has to be restored before running a build from the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Rodrigo B. de Oliveira <******@****.***> 1717818879 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 55 bytes
    - Viewed (0)
  8. pkg/test/framework/test.go

    	context2 "context"
    	"fmt"
    	"testing"
    	"time"
    
    	traceapi "go.opentelemetry.io/otel/trace"
    
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/tracing"
    )
    
    type Test interface {
    	// Label applies the given labels to this test.
    	Label(labels ...label.Instance) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                    }
                    return loadedClass!!
                }
    
            @Synchronized
            override fun onReuse() {
                scope?.let {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    it.onReuse()
                    require(loadedClass!!.classLoader == it.localClassLoader)
                }
            }
    
            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)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

    import org.gradle.internal.problems.failure.FailureFactory
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.problems.buildtree.ProblemReporter
    import org.gradle.problems.buildtree.ProblemReporter.ProblemConsumer
    import java.io.File
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheProblems(
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top