Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ElementId (0.04 seconds)

  1. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/Builders.kt

        }
    }
    
    class ElementId(val id: String) : Serializable {
        override fun toString(): String {
            return id
        }
    }
    
    sealed class ArchitectureElement(
        val name: String,
        val id: ElementId
    ) : Serializable
    
    class Platform(name: String, id: ElementId, val uses: List<ElementId>, val children: List<ArchitectureModule>) : ArchitectureElement(name, id)
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 3K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    if (isOpen) {\n      this.collapse($(treeviewMenu), parentLi)\n    } else {\n      this.expand($(treeviewMenu), parentLi)\n    }\n  }\n\n  // Private\n\n  _setupListeners() {\n    const elementId = this._element.attr('id') !== undefined ? `#${this._element.attr('id')}` : ''\n    $(document).on('click', `${elementId}${this._config.trigger}`, event => {\n      this.toggle(event)\n    })\n  }\n\n  _expandSidebar() {\n    if ($('body').hasClass(CLASS_NAME_SIDEBAR_COLLAPSED)) {\n      $(this._config.s...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 132.4K bytes
    - Click Count (0)
Back to Top