Git Product home page Git Product logo
  • šŸ‘‹ Hi, Iā€™m @jang80alang
  • šŸ‘€ Iā€™m interested in ...
  • šŸŒ± Iā€™m currently learning ...
  • šŸ’žļø Iā€™m looking to collaborate on ...
  • šŸ“« How to reach me ...

5908514Z Current runner version: '2.278.0' 2021-07-10T04:59:33.5933961Z ##[group]Operating System 2021-07-10T04:59:33.5934858Z Ubuntu 2021-07-10T04:59:33.5935333Z 20.04.2 2021-07-10T04:59:33.5935720Z LTS 2021-07-10T04:59:33.5936180Z ##[endgroup] 2021-07-10T04:59:33.5936688Z ##[group]Virtual Environment 2021-07-10T04:59:33.5937365Z Environment: ubuntu-20.04 2021-07-10T04:59:33.5937864Z Version: 20210628.1 2021-07-10T04:59:33.5938820Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210628.1/images/linux/Ubuntu2004-README.md 2021-07-10T04:59:33.5940108Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210628.1 2021-07-10T04:59:33.5940920Z ##[endgroup] 2021-07-10T04:59:33.5942935Z ##[group]GITHUB_TOKEN Permissions 2021-07-10T04:59:33.5944388Z Actions: write 2021-07-10T04:59:33.5944910Z Checks: write 2021-07-10T04:59:33.5945443Z Contents: write 2021-07-10T04:59:33.5946017Z Deployments: write 2021-07-10T04:59:33.5946702Z Discussions: write 2021-07-10T04:59:33.5947338Z Issues: write 2021-07-10T04:59:33.5947832Z Metadata: read 2021-07-10T04:59:33.5948323Z Packages: write 2021-07-10T04:59:33.5948893Z PullRequests: write 2021-07-10T04:59:33.5949461Z RepositoryProjects: write 2021-07-10T04:59:33.5953461Z SecurityEvents: write 2021-07-10T04:59:33.5954044Z Statuses: write 2021-07-10T04:59:33.5954782Z ##[endgroup] 2021-07-10T04:59:33.5958023Z Prepare workflow directory 2021-07-10T04:59:33.6610628Z Prepare all required actions 2021-07-10T04:59:33.6621718Z Getting action download info 2021-07-10T04:59:34.0302994Z Download action repository 'actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f' 2021-07-10T04:59:35.7126697Z Download action repository 'actions/setup-node@c46424eee26de4078d34105d3de3cc4992202b1e'

jang80alang's Projects

docs icon docs

The open-source repo for docs.github.com

file.fnmatch-cat-cat-true-match-entire-string-file.fnmatch-cat-c icon file.fnmatch-cat-cat-true-match-entire-string-file.fnmatch-cat-c

File.fnmatch('cat', 'cat') #=> true # match entire string File.fnmatch('cat', 'category') #=> false # only match partial string File.fnmatch('c{at,ub}s', 'cats') #=> false # { } isn't supported by default File.fnmatch('c{at,ub}s', 'cats', File::FNM_EXTGLOB) #=> true # { } is supported on FNM_EXTGLOB File.fnmatch('c?t', 'cat') #=> true # '?' match only 1 character File.fnmatch('c??t', 'cat') #=> false # ditto File.fnmatch('c*', 'cats') #=> true # '*' match 0 or more characters File.fnmatch('c*t', 'c/a/b/t') #=> true # ditto File.fnmatch('ca[a-z]', 'cat') #=> true # inclusive bracket expression File.fnmatch('ca[^t]', 'cat') #=> false # exclusive bracket expression ('^' or '!') File.fnmatch('cat', 'CAT') #=> false # case sensitive File.fnmatch('cat', 'CAT', File::FNM_CASEFOLD) #=> true # case insensitive File.fnmatch('?', '/', File::FNM_PATHNAME) #=> false # wildcard doesn't match '/' on FNM_PATHNAME File.fnmatch('*', '/', File::FNM_PATHNAME) #=> false # ditto File.fnmatch('[/]', '/', File::FNM_PATHNAME) #=> false # ditto File.fnmatch('\?', '?') #=> true # escaped wildcard becomes ordinary File.fnmatch('\a', 'a') #=> true # escaped ordinary remains ordinary File.fnmatch('\a', '\a', File::FNM_NOESCAPE) #=> true # FNM_NOESCAPE makes '\' ordinary File.fnmatch('[\?]', '?') #=> true # can escape inside bracket expression File.fnmatch('*', '.profile') #=> false # wildcard doesn't match leading File.fnmatch('*', '.profile', File::FNM_DOTMATCH) #=> true # period by default. File.fnmatch('.*', '.profile') #=> true rbfiles = '**' '/' '*.rb' # you don't have to do like this. just write in single string. File.fnmatch(rbfiles, 'main.rb') #=> false File.fnmatch(rbfiles, './main.rb') #=> false File.fnmatch(rbfiles, 'lib/song.rb') #=> true File.fnmatch('**.rb', 'main.rb') #=> true File.fnmatch('**.rb', './main.rb') #=> false File.fnmatch('**.rb', 'lib/song.rb') #=> true File.fnmatch('*', 'dave/.profile') #=> true pattern = '*' '/' '*' File.fnmatch(pattern, 'dave/.profile', File::FNM_PATHNAME) #=> false File.fnmatch(pattern, 'dave/.profile', File::FNM_PATHNAME | File::FNM_DOTMATCH) #=> true pattern = '**' '/' 'foo' File.fnmatch(pattern, 'a/b/c/foo', File::FNM_PATHNAME) #=> true File.fnmatch(pattern, '/a/b/c/foo', File::FNM_PATHNAME) #=> true File.fnmatch(pattern, 'c:/a/b/c/foo', File::FNM_PATHNAME) #=> true File.fnmatch(pattern, 'a/.b/c/foo', File::FNM_PATHNAME) #=> false File.fnmatch(pattern, 'a/.b/c/foo', File::

go-cloud icon go-cloud

The Go Cloud Development Kit (Go CDK): A library and tools for open cloud development in Go.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.