• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • utils
  • yangutils
  • src
  • test
  • resources
  • MultiplePatternStatement.yang
  • Vidyashree Rama's avatar
    YANG string restriction listener + YANG Range restriction listener review comment fix · a2f73988 ...
    a2f73988
    Change-Id: I9e7af9c67f8fbf918d4e0d8ff147a560889ff264
    Vidyashree Rama authored 2016-04-13 19:11:32 +0000
MultiplePatternStatement.yang 218 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
module Test {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;
    leaf-list invalid-interval {
        type string {
            pattern "[a-zA-Z]";
            pattern "[a-z]";
         }
    }
}