Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 126 for scope_ (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CoupledProjectsListener.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.project.ProjectState
    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.Scope
    
    
    @EventScope(Scope.Build::class)
    interface CoupledProjectsListener {
        /**
         * Notified when the build logic for a [referrer] project accesses the mutable state of some other [target] project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/DefaultBeanStateReaderLookup.kt

    import org.gradle.internal.serialize.graph.BeanStateReaderLookup
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.util.concurrent.ConcurrentHashMap
    
    
    @ServiceScope(Scope.BuildTree::class)
    class DefaultBeanStateReaderLookup(
        private val constructors: BeanConstructors,
        private val instantiatorFactory: InstantiatorFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/UndeclaredBuildInputListener.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.Scope
    import java.io.File
    
    
    @EventScope(Scope.BuildTree::class)
    interface UndeclaredBuildInputListener {
        /**
         * Called when an undeclared system property read happens.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedExecutionAccessListener.kt

    package org.gradle.internal.cc.impl
    
    import org.gradle.execution.ExecutionAccessChecker
    import org.gradle.internal.classpath.InstrumentedExecutionAccess
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class InstrumentedExecutionAccessListener(
        private val executionAccessChecker: ExecutionAccessChecker
    ) : InstrumentedExecutionAccess.Listener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.Closeable
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheClassLoaderScopeRegistryListener(
        private
        val listenerManager: ClassLoaderScopeRegistryListenerManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/log/options.go

    // SetDefaultOutputLevel sets the minimum log output level for a given scope.
    // This can be overwritten by flags
    func (o *Options) SetDefaultOutputLevel(scope string, level Level) {
    	sl := scope + ":" + levelToString[level]
    	levels := strings.Split(o.defaultOutputLevels, ",")
    	if scope == DefaultScopeName {
    		// see if we have an entry without a scope prefix (which represents the default scope)
    		for i, ol := range levels {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentStatus.java

     */
    
    package org.gradle.internal.instrumentation.agent;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A build service to query the status of the Gradle's Java agents. Prefer using this service to accessing the {@link AgentControl} directly.
     */
    @ServiceScope(Scope.Global.class)
    public interface AgentStatus {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/RelevantProjectsRegistry.kt

    import org.gradle.execution.plan.Node
    import org.gradle.internal.build.BuildState
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.util.Path
    
    
    @ServiceScope(Scope.Build::class)
    class RelevantProjectsRegistry(
        private val build: BuildState,
        private val projectStateRegistry: ProjectStateRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    	// Scopes maps syntax.Nodes to the scopes they define. Package scopes are not
    	// associated with a specific node but with all files belonging to a package.
    	// Thus, the package scope can be found in the type-checked Package object.
    	// Scopes nest, with the Universe scope being the outermost scope, enclosing
    	// the package scope, which contains (one or more) files scopes, which enclose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import com.google.common.base.Preconditions
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import kotlin.reflect.KProperty
    
    
    /**
     * Maintains the current state of the build configuration input tracking.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top