Skip to content
Snippets Groups Projects
Select Git revision
  • 8c57f20eebede3cbe6ea2573d02a7ff9565bac3d
  • ex400 default
  • airoha-for-upstream
  • openwrt-24.10-airoha-uboot-fixes
  • airoha-for-upstream-en7523
  • iop-mediatek-20250604
  • ubi-fastmap
  • add-dtb-rescan
  • agnau-blorgoda
  • agnau-scratch
  • mediatek-20250604
  • iop-mediatek-20250304
  • iop-mediatek-20250304-loc
  • agnau-mtk-back
  • iop-mediatek-20250304-back
  • iop-mediatek-20220630
  • jani-multi-dtb
  • jani-multi-dtb-spl
  • mediatek-20220630
  • iop-mediatek-20220606
  • jani-env-update-mtk
  • jani-env-update-mtk-txt
  • v2025.10-rc4
  • v2025.10-rc3
  • v2025.10-rc2
  • v2025.10-rc1
  • v2025.07
  • v2025.07-rc5
  • v2025.07-rc4
  • v2025.07-rc3
  • v2025.07-rc2
  • v2025.07-rc1
  • v2025.04
  • v2025.04-rc5
  • v2025.04-rc4
  • v2025.04-rc3
  • v2025.04-rc2
  • v2025.04-rc1
  • v2025.01
  • v2025.01-rc6
  • v2025.01-rc5
  • v2025.01-rc4
42 results

lcd_console_rotation.c

Blame
  • OptionRegistry.ts 632 B
    import Registry = require('./Registry');
    
    type Option = boolean|number;
    
    /**
     * This class defines a registry for custom formats used within JSF.
     */
    class OptionRegistry extends Registry<Option> {
    
      constructor() {
        super();
        this.data['failOnInvalidTypes'] = true;
        this.data['defaultInvalidTypeProduct'] = null;
        this.data['useDefaultValue'] = false;
        this.data['requiredOnly'] = false;
        this.data['maxItems'] = null;
        this.data['maxLength'] = null;
        this.data['defaultMinItems'] = 0;
        this.data['defaultRandExpMax'] = 10;
        this.data['alwaysFakeOptionals'] = false;
      }
    }
    
    export = OptionRegistry;