Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for collapsed (0.2 sec)

  1. src/main/webapp/js/admin/adminlte.min.js

    t.fn[e]=i,a._jQueryInterface},a}(jQuery),r=function(t){var e="CardWidget",i=".lte.cardwidget",n=t.fn[e],s={EXPANDED:"expanded"+i,COLLAPSED:"collapsed"+i,MAXIMIZED:"maximized"+i,MINIMIZED:"minimized"+i,REMOVED:"removed"+i},o={CARD:"card",COLLAPSED:"collapsed-card",WAS_COLLAPSED:"was-collapsed",MAXIMIZED:"maximized-card"},a={DATA_REMOVE:'[data-card-widget="remove"]',DATA_COLLAPSE:'[data-card-widget="collapse"]',DATA_MAXIMIZE:'[data-card-widget="maximize"]',CARD:"."+o.CARD,CARD_HEADER:".card-header",CARD_BODY:".card-...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 23.7K bytes
    - Viewed (3)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    `.${DATA_KEY}`\n  const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n  const Event = {\n    EXPANDED: `expanded${EVENT_KEY}`,\n    COLLAPSED: `collapsed${EVENT_KEY}`,\n    MAXIMIZED: `maximized${EVENT_KEY}`,\n    MINIMIZED: `minimized${EVENT_KEY}`,\n    REMOVED: `removed${EVENT_KEY}`\n  }\n\n  const ClassName = {\n    CARD: 'card',\n    COLLAPSED: 'collapsed-card',\n    WAS_COLLAPSED: 'was-collapsed',\n    MAXIMIZED: 'maximized-card',\n  }\n\n  const Selector = {\n    DATA_REMOVE: '[data-card-widget=\"remove\"]',\n...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  3. manifests/addons/dashboards/istio-performance-dashboard.json

            "type": "dashboard"
          }
        ]
      },
      "editable": true,
      "fiscalYearStartMonth": 0,
      "graphTooltip": 0,
      "links": [],
      "liveNow": false,
      "panels": [
        {
          "collapsed": false,
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "gridPos": {
            "h": 1,
            "w": 24,
            "x": 0,
            "y": 0
          },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 39.6K bytes
    - Viewed (0)
  4. scripts/mkdocs_hooks.py

                        first_child.read_source(config=config)
                        new_title = first_child.title or new_title
                # Creating a new section makes it render it collapsed by default
                # no idea why, so, let's just modify the existing one
                # new_section = Section(title=new_title, children=new_children)
                item.title = new_title
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Oct 24 20:26:06 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-extension-dashboard.json

            "type": "dashboard"
          }
        ]
      },
      "editable": true,
      "fiscalYearStartMonth": 0,
      "graphTooltip": 0,
      "links": [],
      "liveNow": false,
      "panels": [
        {
          "collapsed": false,
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "gridPos": {
            "h": 1,
            "w": 24,
            "x": 0,
            "y": 0
          },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 20K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/Constants.java

        public static final String VIRTUAL_HOST_VALUE_PROPERTY = "virtual.host.value";
    
        public static final String LOGIN_REQUIRED_PROPERTY = "login.required";
    
        public static final String RESULT_COLLAPSED_PROPERTY = "result.collapsed";
    
        public static final String LOGIN_LINK_ENALBED_PROPERTY = "login.link.enabled";
    
        public static final String THUMBNAIL_ENALBED_PROPERTY = "thumbnail.enabled";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot-dashboard.json

            "type": "dashboard"
          }
        ]
      },
      "editable": true,
      "fiscalYearStartMonth": 0,
      "graphTooltip": 1,
      "links": [],
      "liveNow": false,
      "panels": [
        {
          "collapsed": false,
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "gridPos": {
            "h": 1,
            "w": 24,
            "x": 0,
            "y": 0
          },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 61K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemPropertyAsBoolean(Constants.RESULT_COLLAPSED_PROPERTY, value);
        }
    
        default boolean isResultCollapsed() {
            return switch (getFesenType()) {
            case Constants.FESEN_TYPE_CLOUD, Constants.FESEN_TYPE_AWS -> false;
            default -> getSystemPropertyAsBoolean(Constants.RESULT_COLLAPSED_PROPERTY, false);
            };
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multiset.java

     * to implement the related methods as well. Finally, two collection views are provided: {@link
     * #elementSet} contains the distinct elements of the multiset "with duplicates collapsed", and
     * {@link #entrySet} is similar but contains {@link Entry Multiset.Entry} instances, each providing
     * both a distinct element and the count of that element.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 19.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.default_sort_value=Default Sort Value
    labels.virtual_host_value=Virtual Hosts
    labels.append_query_param_enabled=Append Params to URL
    labels.login_required=Login Required
    labels.result_collapsed=Similar Result Collapsed
    labels.login_link=Login Link
    labels.thumbnail=Thumbnail View
    labels.ignore_failure_type=Excluded Failure Type
    labels.failure_count_threshold=Failure Count Threshold
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
Back to top