Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,162 for scope_ (0.1 sec)

  1. pkg/test/framework/scope.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // scope hold resources in a particular scope.
    type scope struct {
    	// friendly name for the scope for debugging purposes.
    	id string
    
    	parent *scope
    
    	resources []resource.Resource
    
    	closers []io.Closer
    
    	children []*scope
    
    	closeChan chan struct{}
    
    	topLevel bool
    
    	skipDump bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. cni/pkg/scopes/scopes.go

    //  limitations under the License.
    
    package scopes
    
    import (
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/pkg/log"
    )
    
    // Required to get global logging to work
    var (
    	CNIAgent  = log.RegisterScope(constants.CNIAgentLogScope, "CNI agent scope")
    	CNIPlugin = log.RegisterScope(constants.CNIPluginLogScope, "CNI plugin scope")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 894 bytes
    - Viewed (0)
  3. src/go/ast/scope.go

    }
    
    // NewScope creates a new scope nested in the outer scope.
    func NewScope(outer *Scope) *Scope {
    	const n = 4 // initial scope capacity
    	return &Scope{outer, make(map[string]*Object, n)}
    }
    
    // Lookup returns the object with the given name if it is
    // found in scope s, otherwise it returns nil. Outer scopes
    // are ignored.
    func (s *Scope) Lookup(name string) *Object {
    	return s.Objects[name]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    /**
     * @see ServiceScope
     */
    public interface Scope {
    
        /**
         * These services are reused across builds in the same process.
         *
         * <p>Global services are visible to all other services.</p>
         */
        interface Global extends Scope {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. 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)
  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