Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.ListenerService
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.StatefulListener
    import spock.lang.Specification
    
    class DefaultListenerManagerInServiceRegistryTest extends Specification {
        def listenerManager = new DefaultListenerManager(Scope.BuildTree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/go/types/api.go

    	// Scopes maps ast.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: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. internal/config/identity/openid/openid.go

    		}
    
    		if scopeList := getCfgVal(Scopes); scopeList != "" {
    			var scopes []string
    			for _, scope := range strings.Split(scopeList, ",") {
    				scope = strings.TrimSpace(scope)
    				if scope == "" {
    					return c, config.Errorf("empty scope value is not allowed '%s', please refer to our documentation", scopeList)
    				}
    				scopes = append(scopes, scope)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

    import org.gradle.cache.internal.InMemoryCacheDecoratorFactory;
    import org.gradle.cache.internal.LegacyCacheCleanupEnablement;
    import org.gradle.cache.internal.scopes.DefaultGlobalScopedCacheBuilderFactory;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.execution.plan.ToPlannedNodeConverter;
    import org.gradle.execution.plan.ToPlannedNodeConverterRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

    import org.gradle.cache.internal.CrossBuildInMemoryCache;
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.state.Managed;
    import org.gradle.internal.state.ManagedFactory;
    import org.gradle.model.internal.asm.AsmClassGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. tests/test_security_oauth2.py

                            },
                            "username": {"title": "Username", "type": "string"},
                            "password": {"title": "Password", "type": "string"},
                            "scope": {"title": "Scope", "type": "string", "default": ""},
                            "client_id": IsDict(
                                {
                                    "title": "Client Id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. tests/test_security_oauth2_optional_description.py

                            },
                            "username": {"title": "Username", "type": "string"},
                            "password": {"title": "Password", "type": "string"},
                            "scope": {"title": "Scope", "type": "string", "default": ""},
                            "client_id": IsDict(
                                {
                                    "title": "Client Id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. tests/test_security_oauth2_optional.py

                            },
                            "username": {"title": "Username", "type": "string"},
                            "password": {"title": "Password", "type": "string"},
                            "scope": {"title": "Scope", "type": "string", "default": ""},
                            "client_id": IsDict(
                                {
                                    "title": "Client Id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top