Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,873 for Younis (0.38 sec)

  1. src/css/layout/bounds.ts

    export class Bounds {
        constructor(readonly left: number, readonly top: number, readonly width: number, readonly height: number) {}
    
        add(x: number, y: number, w: number, h: number): Bounds {
            return new Bounds(this.left + x, this.top + y, this.width + w, this.height + h);
        }
    
        static fromClientRect(context: Context, clientRect: ClientRect): Bounds {
            return new Bounds(
    Plain Text
    - Registered: 2023-03-17 01:27
    - Last Modified: 2022-01-22 16:18
    - 2K bytes
    - Viewed (0)
  2. src/css/layout/__mocks__/bounds.ts

    export const {Bounds} = jest.requireActual('../bounds');
    export const parseBounds = (): typeof Bounds => {
        return new Bounds(0, 0, 200, 50);
    Plain Text
    - Registered: 2023-03-17 01:27
    - Last Modified: 2021-07-11 12:25
    - 148 bytes
    - Viewed (0)
  3. compiler/rustc_builtin_macros/src/deriving/bounds.rs

    ExtCtxt, span: Span, mitem: &MetaItem, item: &Annotatable, push: &mut dyn FnMut(Annotatable), is_const: bool, ) { let trait_def = TraitDef { span, path: path_std!(marker::Copy), skip_path_as_bound: false, needs_copy_as_bound_if_packed: false, additional_bounds: Vec::new(), supports_unions: true, methods: Vec::new(), associated_types: Vec::new(), is_const, }; trait_def.expand(cx, mitem, item, push); }...
    Others
    - Registered: 2023-03-20 03:55
    - Last Modified: 2023-01-30 01:00
    - 716 bytes
    - Viewed (0)
  4. test/fixtures/controller.line/stacking/bounds-data.png

    bounds-data.png...
    PNG Image
    - Registered: 2023-03-19 10:25
    - Last Modified: 2021-10-13 21:24
    - 19.1K bytes
    - Viewed (0)
  5. test/fixtures/controller.line/stacking/bounds-data.js

            borderColor: 'blue',
            data: [25, 50],
          }]
        },
        options: {
          scales: {
            x: {
              display: false
            },
            y: {
              stacked: true,
              bounds: 'data'
            }
          }
        }
      },
      options: {
        spriteText: true
      }
    JavaScript
    - Registered: 2023-03-19 10:25
    - Last Modified: 2021-05-29 21:32
    - 451 bytes
    - Viewed (0)
  6. docs/content/en/commands/hugo_config_mounts.md

    ---
    title: "hugo config mounts"
    slug: hugo_config_mounts
    url: /commands/hugo_config_mounts/
    ---
    ## hugo config mounts
    
    Print the configured file mounts
    
    ```
    hugo config mounts [flags]
    ```
    
    ### Options
    
    ```
      -h, --help   help for mounts
    ```
    
    ### Options inherited from parent commands
    
    ```
          --clock string               set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00
    Plain Text
    - Registered: 2023-03-17 10:01
    - Last Modified: 2023-01-17 11:52
    - 1.3K bytes
    - Viewed (0)
  7. integration/container/mounts_linux_test.go

    						}
    					}()
    
    					inspect, err := client.ContainerInspect(ctx, c.ID)
    					if err != nil {
    						t.Fatal(err)
    					}
    					if len(inspect.Mounts) != 1 {
    						t.Fatalf("unexpected number of mounts: %+v", inspect.Mounts)
    					}
    
    					m := inspect.Mounts[0]
    					if m.Propagation != test.expected {
    						t.Fatalf("got unexpected propagation mode, expected %q, got: %v", test.expected, m.Propagation)
    					}
    				})
    Go
    - Registered: 2023-02-01 12:04
    - Last Modified: 2022-11-11 18:47
    - 12.9K bytes
    - Viewed (0)
  8. docs/layouts/shortcodes/module-mounts-note.html

    Also see [Module Mounts Config](/hugo-modules/configuration/#module-config-mounts) for an alternative way to configure this directory (from Hugo 0.56)....
    HTML
    - Registered: 2023-03-17 10:01
    - Last Modified: 2019-10-21 08:22
    - 151 bytes
    - Viewed (0)
  9. src/data/best-practices/aws/content/avoid-fs-mounts.md

    # Avoid FS Mounts
    
    > Avoid filesystem mounts (FUSE, etc).
    
    Plain Text
    - Registered: 2023-03-17 02:38
    - Last Modified: 2023-03-09 16:54
    - 188 bytes
    - Viewed (0)
  10. daemon/mounts.go

    Brian Goff <******@****.***> 1521753063 -0400
    Go
    - Registered: 2023-03-15 12:04
    - Last Modified: 2018-05-25 18:21
    - 1.5K bytes
    - Viewed (0)
Back to top