Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,675 for scope_ (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginRequestApplicator.java

    import org.gradle.api.internal.plugins.PluginManagerInternal;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.service.scopes.StatefulListener;
    import org.gradle.plugin.management.internal.PluginRequestInternal;
    import org.gradle.plugin.management.internal.PluginRequests;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven3ScopeManagerConfiguration.java

    import static org.eclipse.aether.impl.scope.BuildScopeQuery.select;
    import static org.eclipse.aether.impl.scope.BuildScopeQuery.singleton;
    import static org.eclipse.aether.impl.scope.BuildScopeQuery.union;
    
    /**
     * Maven3 scope configurations. Configures scope manager to support Maven3 scopes.
     * <p>
     * This manager supports the old Maven 3 dependency scopes.
     *
     * @since 2.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * The ID of a single build invocation.
     *
     * Here, the term "build" is used to represent the overall invocation.
     * For example, buildSrc shares the same build scope ID as the overall build.
     * All composite participants also share the same build scope ID.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    // MatchingScopes takes the input specified list of scopes and input object. Returns the set of scopes resource matches.
    func (p *pvcEvaluator) MatchingScopes(item runtime.Object, scopes []corev1.ScopedResourceSelectorRequirement) ([]corev1.ScopedResourceSelectorRequirement, error) {
    	return []corev1.ScopedResourceSelectorRequirement{}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  5. docs_src/security/tutorial005_py39.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

    import org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.renderers.KaRendererKeywordFilter
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeLike
    import org.jetbrains.kotlin.analysis.api.scopes.KaTypeScope
    import org.jetbrains.kotlin.analysis.api.symbols.DebugSymbolRenderer
    import org.jetbrains.kotlin.analysis.api.types.KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/BuildScopeListenerRegistrationListener.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.Build.class)
    public interface BuildScopeListenerRegistrationListener {
    
        /**
         * Called when registering a build scope listener.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

                .dependsOn(m1, scope: 'compile')
                .dependsOn(m2, scope: 'runtime')
                .dependsOn(notRequired, scope: 'test')
                .dependsOn(notRequired, scope: 'provided')
                .publish()
            def m6 = mavenRepo.module('test', 'test6', '1.0')
                .dependsOn(m3, scope: 'compile')
                .dependsOn(m4, scope: 'runtime')
                .dependsOn(notRequired, scope: 'test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  9. istioctl/cmd/options_test.go

          --log_caller: Comma-separated list of scopes for which to include caller information, scopes can be any of \[.*\]
          --log_output_level: Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>,... where scope can be one of \[.*\] and level can be one of \[.*\]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 14 02:38:54 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10PackageScope.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaPackageSymbol
    import org.jetbrains.kotlin.resolve.scopes.MemberScope
    
    internal class KaFe10PackageScope(
        scope: MemberScope,
        private val owner: KaPackageSymbol,
        analysisContext: Fe10AnalysisContext
    ) : KaFe10ScopeMember(scope, constructors = emptyList(), analysisContext) {
        override fun getPackageSymbols(nameFilter: KaScopeNameFilter): Sequence<KaPackageSymbol> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top