Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,161 for scouse (0.13 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    			impersonationUserExtras: map[string][]string{"scopes": {"scope-a", "scope-b"}},
    			expectedUser: &user.DefaultInfo{
    				Name:   "system:admin",
    				Groups: []string{"system:authenticated"},
    				Extra:  map[string][]string{"scopes": {"scope-a", "scope-b"}},
    			},
    			expectedCode: http.StatusOK,
    		},
    		{
    			name: "percent-escaped-userextras",
    			user: &user.DefaultInfo{
    				Name:   "dev",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

    import org.gradle.execution.ExecutionAccessListener
    import org.gradle.internal.execution.WorkExecutionTracker
    import org.gradle.internal.service.scopes.ListenerService
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    
    
    @ServiceScope(Scope.BuildTree::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"petr1708": 0x44,
    	"pinyin":   0x45,
    	"polyton":  0x46,
    	"provenc":  0x47,
    	"puter":    0x48,
    	"rigik":    0x49,
    	"rozaj":    0x4a,
    	"rumgr":    0x4b,
    	"scotland": 0x4c,
    	"scouse":   0x4d,
    	"simple":   0x6f,
    	"solba":    0x66,
    	"sotav":    0x4e,
    	"spanglis": 0x4f,
    	"surmiran": 0x50,
    	"sursilv":  0x51,
    	"sutsilv":  0x52,
    	"synnejyl": 0x53,
    	"tarask":   0x54,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            return scopedRegistry(scope, false)
        }
    
        private static ScopedServiceRegistry strictScopedRegistry(Class<? extends Scope> scope) {
            return scopedRegistry(scope, true)
        }
    
        private static ScopedServiceRegistry scopedRegistry(Class<? extends Scope> scope, boolean strict) {
            return new ScopedServiceRegistry(scope, strict, "test service registry")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. fastapi/security/oauth2.py

            data = {}
            data["scopes"] = []
            for scope in form_data.scopes:
                data["scopes"].append(scope)
            if form_data.client_id:
                data["client_id"] = form_data.client_id
            if form_data.client_secret:
                data["client_secret"] = form_data.client_secret
            return data
        ```
    
        Note that for OAuth2 the scope `items:read` is a single scope in an opaque string.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenPom.groovy

    class MavenPom {
        final Map<String, MavenScope> scopes = [:]
    
        MavenPom(File pomFile) {
            def pom = new XmlParser().parse(pomFile)
            pom.dependencies.dependency.each { dep ->
                def scopeElement = dep.scope
                def scopeName = scopeElement ? scopeElement.text() : "runtime"
                def scope = scopes[scopeName]
                if (!scope) {
                    scope = new MavenScope()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 15 14:07:46 UTC 2021
    - 1.2K 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/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/tracker/internal/PluginVersionTracker.java

        public String findPluginVersionAt(ClassLoaderScope scope, String pluginId) {
            while (scope != null) {
                String pluginVersion = pluginVersionsPerScope.getOrDefault(scope.getOriginalScope(), emptyMap()).get(pluginId);
                if (pluginVersion != null) {
                    return pluginVersion;
                }
                ClassLoaderScope parent = scope.getParent();
                if (scope == parent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top