Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 8月 27, 2021
  2. 8月 26, 2021
    • Mark Florian's avatar
      Add LRU-like behaviour to incremental compilation · 3a7a35fb
      Mark Florian 创作于
      This adds least-recently-used-cache-like behaviour to the incremental
      webpack compiler. The `DEV_SERVER_INCREMENTAL_TTL` environment variable
      now determines the number of days that page bundles are considered
      "recent", and should be eagerly compiled. This number represents the
      trade-off between lazy/eager compilation versus low/high memory
      consumption of the webpack development server. A higher number means
      fewer pages needing to be compiled on demand, at the cost of higher
      memory consumption. A lower number means lower memory consumption, at
      the cost of more pages being compiled on demand. A value of `0` means
      that all pages in your history, regardless of how long ago you visited
      them, are eagerly compiled.
      
      This also makes the compiler record a history of visited pages even when
      disabled, so that if and when it _is_ enabled, that history can still be
      used to inform the LRU cache.
      
      The history-recording function is explicitly disabled in the case that
      webpack is running in CI.
      
      Part of https://gitlab.com/gitlab-org/gitlab/-/issues/300412.
      未验证
      3a7a35fb
    • Achilleas Pipinellis's avatar
      Merge branch 'DarwinJS-implementation-patterns' into 'master' · e1d1bcda
      Achilleas Pipinellis 创作于
      Docs: Implementation patterns for platform partners
      
      See merge request gitlab-org/gitlab!65887
      e1d1bcda
    • DarwinJS's avatar
      Update the AWS Installation documentation · 0947cb21
      DarwinJS 创作于
      - Move the existing manual install instructions page to a subpage
        and mark it as DEPRECATED in order to clear the 'install/aws'
        URL to be an index to all AWS documentation.
      - Created a new 'install/aws/index.md'
        - to give an overview of how the AWS opinionated documentation
          relates to and builds upon the reference architectures.
        - to have an index of sub-pages at the bottom.
      - Provides a new sub page for GitLab Cloud Native Hybrid on AWS EKS,
        which provides critical Bill Of Materials lists for the upcoming
        AWS Quick Start for GitLab Cloud Native on EKS.
      0947cb21
  3. 8月 25, 2021
加载中