Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,145 for Ng (0.14 sec)

  1. plugins/ng/_ng

    #compdef ng
    
    setopt localoptions extendedglob
    
    if (( CURRENT == 2 )); then
      local -a cmds alias
      # Sample output (ng help):
      # Available Commands:
      #   add Adds support for an external library to your project.
      for line in ${(@f)"$(ng help 2>/dev/null | sed -n '/^  /p')"}; do
        if [[ "$line" =~ '^  ([^ ]+) \(([^)]+)\) (.*)$' ]]; then
          alias=(${match[1]} ${(s:, :)match[2]})
          cmds+=(${^alias}:"${match[3]//:/}")
    Plain Text
    - Registered: 2023-03-16 12:35
    - Last Modified: 2022-10-03 15:03
    - 2K bytes
    - Viewed (0)
  2. plugins/flag-icon-css/flags/1x1/ng.svg

    ng.svg...
    SVG Image
    - Registered: 2023-03-13 07:18
    - Last Modified: 2021-11-24 23:12
    - 257 bytes
    - Viewed (0)
  3. packages/one-dark-syntax/styles/syntax-legacy/ng.less

    .syntax--ng {
      &.syntax--interpolation {
        color: @hue-5;
    
        &.syntax--begin, &.syntax--end {
          color: @hue-2;
        }
    
        .syntax--function {
          color: @hue-5;
    
          &.syntax--begin, &.syntax--end {
            color: @hue-2;
          }
        }
    
        .syntax--bool {
          color: @hue-6;
        }
    
        .syntax--bracket {
          color: @mono-1;
        }
      }
    
      &.syntax--pipe, &.syntax--operator {
    Others
    - Registered: 2023-03-20 05:20
    - Last Modified: 2021-02-19 05:55
    - 682 bytes
    - Viewed (0)
  4. packages/one-light-syntax/styles/syntax-legacy/ng.less

    .syntax--ng {
      &.syntax--interpolation {
        color: @hue-5;
    
        &.syntax--begin, &.syntax--end {
          color: @hue-2;
        }
    
        .syntax--function {
          color: @hue-5;
    
          &.syntax--begin, &.syntax--end {
            color: @hue-2;
          }
        }
    
        .syntax--bool {
          color: @hue-6;
        }
    
        .syntax--bracket {
          color: @mono-1;
        }
      }
    
      &.syntax--pipe, &.syntax--operator {
    Others
    - Registered: 2023-03-20 05:20
    - Last Modified: 2021-02-19 05:55
    - 682 bytes
    - Viewed (0)
  5. plugins/flag-icon-css/flags/4x3/ng.svg

    ng.svg...
    SVG Image
    - Registered: 2023-03-13 07:18
    - Last Modified: 2021-11-24 23:12
    - 257 bytes
    - Viewed (0)
  6. pages.fr/common/airmon-ng.md

    # airmon-ng
    
    > Active le mode surveillance sur les appareils sans fils.
    > Plus d'informations : <https://www.aircrack-ng.org/doku.php?id=airmon-ng>.
    
    - Liste les appareils sans fils et leurs statuts :
    
    `sudo airmon-ng`
    
    - Allume le mode surveillance sur un appareil spécifique :
    
    `sudo airmon-ng start {{wlan0}}`
    
    - Tue les processus nuisibles qui utilisent les appareils sans fils :
    
    `sudo airmon-ng check kill`
    
    Plain Text
    - Registered: 2022-12-23 14:50
    - Last Modified: 2022-07-21 16:14
    - 523 bytes
    - Viewed (0)
  7. src/angular/ng-package.json

    {
      "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
      "dest": "../../dist/angular",
      "lib": {
        "entryFile": "../swiper-angular.ts"
      }
    Json
    - Registered: 2023-01-26 16:55
    - Last Modified: 2021-08-19 10:27
    - 160 bytes
    - Viewed (0)
  8. aio/content/examples/ajs-quick-reference/src/assets/images/ng-logo.png

    ng-logo.png...
    PNG Image
    - Registered: 2023-03-15 21:55
    - Last Modified: 2017-09-22 00:05
    - 7.1K bytes
    - Viewed (0)
  9. src/data/roadmaps/angular/content/103-angular-cli/103-ng-test.md

    # Ng test
    
    ng test is used to runs unit tests in angular project.
    
    `ng test <project> [options]` | `ng t <project> [options]`
    
    
    Visit the following resources to learn more:
    
    - [Ng test - Angular.io](https://angular.io/cli/test)
    Plain Text
    - Registered: 2023-03-17 02:38
    - Last Modified: 2023-02-21 12:25
    - 301 bytes
    - Viewed (0)
  10. src/roadmaps/angular/content/103-angular-cli/101-ng-serve.md

    # Ng serve
    
    ng serve — This command builds, deploy, serves and every time watches your code changes. if find any change in code it builds and serves that code automatically. How do Angular builds? After coding our Angular apps using TypeScript, we use the Angular CLI command to build the app.
    
    Visit the following resources to learn more:
    
    - [Ng serve - Angular.io](https://angular.io/cli/serve)
    Plain Text
    - Registered: 2023-02-17 02:38
    - Last Modified: 2023-01-02 00:47
    - 479 bytes
    - Viewed (0)
Back to top