Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for findouter (0.08 sec)

  1. test/fixedbugs/issue43112.go

    type Object interface {
    	String() string
    }
    
    type Scope struct {
    	outer *Scope
    	elems map[string]Object
    }
    
    func (s *Scope) findouter(name string) (*Scope, Object) {
    	return s.outer.findouter(name)
    }
    
    func (s *Scope) Resolve(name string) (sym Symbol) {
    	if _, obj := s.findouter(name); obj != nil {
    		sym = obj.(Symbol)
    	}
    	return
    }
    
    type ScopeName struct {
    	scope *Scope
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 03:21:35 UTC 2020
    - 723 bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/component/internal/ComponentSpecFactory.java

                public <T extends DefaultComponentSpec> T create(ModelType<? extends ComponentSpec> publicType, ModelType<T> implementationType, String name, MutableModelNode componentNode) {
                    ComponentSpecIdentifier id = getId(findOwner(componentNode), name);
                    return DefaultComponentSpec.create(publicType.getConcreteClass(), implementationType.getConcreteClass(), id, componentNode);
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                OperationIdentifier owner = findOwner(buildOperationId);
                if (owner == null) {
                    return;
                }
    
                notificationListener.progress(new Progress(owner, progressEvent.getTime(), details));
            }
    
            private OperationIdentifier findOwner(OperationIdentifier id) {
                if (active.containsKey(id)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top