Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for set_container (0.46 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			// traverse
    			_get_node		: function (obj) {
    				var $obj = $(obj, this.get_container());
    				if($obj.is(".jstree") || obj == -1) { return -1; }
    				$obj = $obj.closest("li", this.get_container());
    				return $obj.length ? $obj : false;
    			},
    			_get_next		: function (obj, strict) {
    				obj = this._get_node(obj);
    				if(obj === -1) { return this.get_container().find("> ul > li:first-child"); }
    				if(!obj.length) { return false; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

        abstract boolean isSupportsBuildOperations()
    
        abstract DomainObjectCollection<T> getContainer()
    
        abstract T getA()
    
        abstract T getB()
    
        abstract T getC()
    
        abstract <S extends T> S getD()
    
        Class<T> getType() {
            return a.class
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top