Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for Nison (0.23 sec)

  1. CHANGELOG.md

      [#7957](https://github.com/yarnpkg/yarn/pull/7957) - [**Maël Nison**](https://twitter.com/arcanis)
    
    - Generates relative paths when calling `yarn set version`
    
      [#7931](https://github.com/yarnpkg/yarn/pull/7931) - [**Maël Nison**](https://twitter.com/arcanis)
    
    - Throws an exception when the `.yarnrc.yml` file is invalid yaml
    
      [#7931](https://github.com/yarnpkg/yarn/pull/7931) - [**Maël Nison**](https://twitter.com/arcanis)
    
    ## 1.22.0
    
    Plain Text
    - Registered: 2023-03-19 04:56
    - Last Modified: 2021-07-26 17:33
    - 22.5K bytes
    - Viewed (0)
  2. .mailmap

    Lucas Pardue <******@****.***> <******@****.***>
    Luke Bayes <******@****.***>
    Lydia Kats <******@****.***>
    Maciej Małecki <******@****.***> <******@****.***>
    Maël Nison <nison******@****.***> <******@****.***>
    MaleDong <******@****.***> <******@****.***>
    Malte-Thorben Bruns <******@****.***>
    Malte-Thorben Bruns <******@****.***> <******@****.***>
    Plain Text
    - Registered: 2023-03-14 21:40
    - Last Modified: 2022-05-29 13:24
    - 28.7K bytes
    - Viewed (2)
  3. docs/_style/prism-master/components/prism-bison.js

    Prism.languages.bison = Prism.languages.extend('c', {});
    
    Prism.languages.insertBefore('bison', 'comment', {
    	'bison': {
    		// This should match all the beginning of the file
    		// including the prologue(s), the bison declarations and
    		// the grammar rules.
    		pattern: /^[\s\S]*?%%[\s\S]*?%%/,
    		inside: {
    			'c': {
    				// Allow for one level of nested braces
    				pattern: /%\{[\s\S]*?%\}|\{(?:\{[^}]*\}|[^{}])*\}/,
    				inside: {
    					'delimiter': {
    JavaScript
    - Registered: 2023-03-16 20:08
    - Last Modified: 2018-12-19 06:09
    - 973 bytes
    - Viewed (0)
  4. docs/_style/prism-master/components/prism-bison.min.js

    Prism.languages.bison=Prism.languages.extend("c",{}),Prism.languages.insertBefore("bison","comment",{bison:{pattern:/^[\s\S]*?%%[\s\S]*?%%/,inside:{c:{pattern:/%\{[\s\S]*?%\}|\{(?:\{[^}]*\}|[^{}])*\}/,inside:{delimiter:{pattern:/^%?\{|%?\}$/,alias:"punctuation"},"bison-variable":{pattern:/[$@](?:<[^\s>]+>)?[\w$]+/,alias:"variable",inside:{punctuation:/<|>/}},rest:Prism.languages.c}},comment:Prism.languages.c.comment,string:Prism.languages.c.string,property:/\S+(?=:)/,keyword:/%\w+/,number:{pa...
    JavaScript
    - Registered: 2023-03-16 20:08
    - Last Modified: 2018-12-19 06:09
    - 586 bytes
    - Viewed (0)
  5. AUTHORS

    Evan Plaice <******@****.***>
    Simon Zünd <******@****.***>
    simon3000 <******@****.***>
    Marcos Casagrande <******@****.***>
    Ruwan Geeganage <******@****.***>
    Maël Nison <nison******@****.***>
    Gerson Niño <******@****.***>
    freestraws <******@****.***>
    Daniel Beckert <******@****.***>
    Rivaldo Junior <******@****.***>
    Rongjian Zhang <******@****.***>
    Plain Text
    - Registered: 2023-03-14 21:40
    - Last Modified: 2022-06-12 05:54
    - 128.7K bytes
    - Viewed (4)
  6. docs/_style/prism-master/examples/prism-bison.html

    <h2>Comments</h2>
    <pre><code>// Single-line comment
    /* Multi-line
    comment */</code></pre>
    
    <h2>C prologue and Bison declarations</h2>
    <pre><code>%{
      #include &lt;stdio.h>
      #include &lt;math.h>
      int yylex (void);
      void yyerror (char const *);
    %}
    
    %define api.value.type {double}
    %token NUM
    %union { char *string; }
    %%
    %%</code></pre>
    
    <h2>Grammar rules</h2>
    <pre><code>%%
    exp:
    HTML
    - Registered: 2023-03-16 20:08
    - Last Modified: 2018-12-19 06:09
    - 2.1K bytes
    - Viewed (0)
  7. CHANGELOG.md

    - Guillaume Chau ([@Akryum](https://github.com/Akryum))
    - Haoqun Jiang ([@sodatea](https://github.com/sodatea))
    - Marcel Lindig ([@nullpilot](https://github.com/nullpilot))
    - Maël Nison ([@arcanis](https://github.com/arcanis))
    - Pavan Kumar Sunkara ([@pksunkara](https://github.com/pksunkara))
    - Tao Wei ([@taoweicn](https://github.com/taoweicn))
    - Thomas Kint ([@tkint](https://github.com/tkint))
    Plain Text
    - Registered: 2023-03-14 23:15
    - Last Modified: 2022-02-17 11:19
    - 330.9K bytes
    - Viewed (0)
  8. docs/_style/prism-master/tests/languages/bison/c_feature.test

    ":"],
    L36:		"\r\n\tNUM ",
    L37:		["c", [
    L38:			["delimiter", "{"],
    L39:			["bison-variable", ["$$"]], ["operator", "="],
    L40:			["function", "f"], ["punctuation", "("],
    L41:			["bison-variable", ["$3"]], ["punctuation", ","],
    L42:			["bison-variable", ["$4"]], ["punctuation", ")"], ["punctuation", ";"],
    L43:			["bison-variable", ["@$"]], ["punctuation", "."], "first_column ", ["operator", "="],
    L44:			["bison-variable", ["@1"]], ["punctuation", "."], "first_column", ["punctuation", ";"],
    ...
    Others
    - Registered: 2023-03-16 20:08
    - Last Modified: 2018-12-19 06:09
    - 1.5K bytes
    - Viewed (0)
  9. kokoro/linux/dockerfile/test/php_32bit/Dockerfile

      bison \
      php5 \
      libcurl4-openssl-dev \
      libssl-dev \
      libxml2-dev \
      unzip \
      zlib1g-dev \
      pkg-config \
      && apt-get clean
    
    # Install other dependencies
    RUN wget http://ftp.gnu.org/gnu/bison/bison-2.6.4.tar.gz -O /var/local/bison-2.6.4.tar.gz
    RUN cd /var/local \
      && tar -zxvf bison-2.6.4.tar.gz \
      && cd /var/local/bison-2.6.4 \
      && ./configure \
      && make \
    Plain Text
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-02-04 17:50
    - 5.9K bytes
    - Viewed (0)
  10. kokoro/linux/dockerfile/test/php/Dockerfile

      && apt-get clean
    
    # Install other dependencies
    RUN ln -sf /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
    RUN wget http://ftp.gnu.org/gnu/bison/bison-2.6.4.tar.gz -O /var/local/bison-2.6.4.tar.gz
    RUN cd /var/local \
      && tar -zxvf bison-2.6.4.tar.gz \
      && cd /var/local/bison-2.6.4 \
      && ./configure \
      && make \
      && make install
    
    # Install composer
    RUN curl -sS https://getcomposer.org/installer | php
    Plain Text
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-02-04 17:50
    - 5.5K bytes
    - Viewed (0)
Back to top