Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,675 for scope_ (0.11 sec)

  1. pkg/config/analysis/scope/scope.go

     limitations under the License.
    */
    
    package scope
    
    import "istio.io/istio/pkg/log"
    
    var (
    	// Analysis is a logging scope used by configuration analysis component.
    	Analysis = log.RegisterScope("analysis", "Scope for configuration analysis runtime")
    	// Processing is a logging scope used by configuration processing pipeline.
    	Processing = log.RegisterScope("processing", "Scope for configuration processing runtime")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 951 bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/Scope.java

     * under the License.
     */
    package org.apache.maven.di;
    
    import java.lang.annotation.Annotation;
    import java.util.function.Supplier;
    
    public interface Scope {
    
        <T> Supplier<T> scope(Key<T> key, Annotation scope, Supplier<T> unscoped);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1022 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    void AddCtrlEdge(const Scope& scope, Operation a, Operation b) {
      scope.graph()->AddControlEdge(a.node(), b.node());
    }
    
    void AddCtrlEdge(const Scope& scope, Output a, Operation b) {
      AddCtrlEdge(scope, a.op(), b);
    }
    
    void AddCtrlEdge(const Scope& scope, Operation a, Output b) {
      AddCtrlEdge(scope, a, b.op());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/security/oauth2-scopes.md

                            * `security_scopes` 参数的属性 `scopes` 是包含上述声明的所有作用域的**列表**,因此:
                                * `security_scopes.scopes` 包含用于*路径操作*的 `["me", "items"]`
                                * `security_scopes.scopes` 包含*路径操作* `read_users_me` 的 `["me"]`,因为它在依赖项里被声明
                                * `security_scopes.scopes` 包含用于*路径操作* `read_system_status` 的 `[]`(空列表),并且它的依赖项 `get_current_user` 也没有声明任何 `scope`
    
    !!! tip "提示"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 22:43:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            scope.exportClassLoader.getResource("local") == null
            scope.exportClassLoader instanceof URLClassLoader
            scope.exportClassLoader.parent == root.exportClassLoader
    
            scope.localClassLoader instanceof URLClassLoader
            scope.localClassLoader.parent == scope.exportClassLoader
            scope.localClassLoader.getResource("export").text == "bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/service_lookup.go

    			if ns == ExportToNamespaceLocal {
    				scopes = append(scopes, resourceNamespace)
    			} else {
    				scopes = append(scopes, ns)
    			}
    		}
    	}
    	return scopes
    }
    
    func GetDestinationHost(sourceNs resource.Namespace, exportTo []string, host string,
    	serviceEntryHosts map[ScopedFqdn]*v1alpha3.ServiceEntry,
    ) *v1alpha3.ServiceEntry {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildModelControllerServices.java

    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.scopes.BuildScopeServices;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Contributes build scoped services.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildModelControllerServices {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 13:37:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/groovyScope/tests/scope.sample.conf

    executable: gradle
    args: runScript
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 82 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/cache/scopes/BuildScopedCacheBuilderFactory.java

     * limitations under the License.
     */
    
    package org.gradle.cache.scopes;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Factory for creating build scoped {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle directory of the build.
     */
    @ServiceScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top