Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,156 for scope_ (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    import org.gradle.internal.service.ServiceRegistry;
    
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.File;
    import java.util.Optional;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/groovyScope/kotlin/src/main/groovy/scope.groovy

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 551 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/cache/scopes/ScopedCacheBuilderFactory.java

     */
    
    package org.gradle.cache.scopes;
    
    import org.gradle.cache.CacheBuilder;
    
    import java.io.File;
    
    /**
     * A factory for creating {@link CacheBuilder}s that are scoped to a particular context.
     */
    public interface ScopedCacheBuilderFactory {
        /**
         * Creates a builder for a Gradle version-specific cache with the given key in this scope.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeSubstitution.kt

    import org.jetbrains.kotlin.analysis.api.fir.scopes.KaFirDelegatingNamesAwareScope
    import org.jetbrains.kotlin.analysis.api.fir.scopes.KaFirDelegatingTypeScope
    import org.jetbrains.kotlin.analysis.api.impl.base.scopes.KaCompositeScope
    import org.jetbrains.kotlin.analysis.api.impl.base.scopes.KaCompositeTypeScope
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    import org.jetbrains.kotlin.analysis.api.scopes.KaTypeScope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

        private final Class<? extends Scope> scope;
        private final boolean strict;
    
        public ServiceScopeValidator(Class<? extends Scope> scope, boolean strict) {
            this.scope = scope;
            this.strict = strict;
        }
    
        @Override
        public List<Class<? extends Annotation>> getAnnotations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java

        private Set<String> scopes;
    
        /**
         * Create a new filter with the specified scopes and their implied scopes enabled.
         *
         * @param scopes The scopes to enable, along with all implied scopes, may be {@code null}.
         */
        public CumulativeScopeArtifactFilter(Collection<String> scopes) {
            this.scopes = new HashSet<>();
    
            addScopes(scopes);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceRegistryBuilderTest.groovy

    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ServiceRegistryBuilderTest extends Specification {
    
        def "creates a scope-validating service registry when setting a scope"() {
            def scopedBuilder = ServiceRegistryBuilder.builder()
                .scope(Scope.Build)
    
            when:
            scopedBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/EventScope.java

     * Events are not visible to listeners in descendent scopes.
     *
     * <p>This annotation is used primarily to indicate to developers the scopes where this listener are available. There is also
     * some validation when a broadcaster or listener of this type is used in an incorrect scope.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface EventScope {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

            } else {
                val newId = scopes.putInstance(scope)
                writeSmallInt(newId)
                if (scope.parent == null) {
                    writeBoolean(false)
                } else {
                    writeBoolean(true)
                    writeScope(scope.parent)
                }
                writeString(scope.name)
                if (scope.origin is ClassLoaderScopeOrigin.Script) {
                    writeBoolean(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top