Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 443 for gint (0.14 sec)

  1. .github/workflows/helm-lint.yml

        steps:
          - name: Checkout
            uses: actions/checkout@v4
    
          - name: Install Helm
            uses: azure/setup-helm@v4
    
          - name: Run helm lint
            run: |
              cd helm/minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 09 09:13:09 UTC 2024
    - 551 bytes
    - Viewed (0)
  2. hack/verify-golangci-lint.sh

      if [[ "${arg}" == -* ]]; then
        golangci+=("${arg}")
      else
        targets+=("${arg}")
      fi
    done
    
    # Install golangci-lint
    echo "installing golangci-lint and logcheck plugin from hack/tools into ${GOBIN}"
    go -C "${KUBE_ROOT}/hack/tools" install github.com/golangci/golangci-lint/cmd/golangci-lint
    if [ "${golangci_config}" ]; then
      # This cannot be used without a config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. hack/lint-dependencies.sh

    # limitations under the License.
    
    # This script checks version dependencies of modules. It checks whether all
    # pinned versions of checked dependencies match their preferred version or not.
    # Usage: `hack/lint-dependencies.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. hack/verify-golangci-lint-config.sh

    # This script checks that all generated golangci-lint configurations
    # are up-to-date.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 954 bytes
    - Viewed (0)
  5. hack/verify-golangci-lint-pr.sh

    # golangci-lint. It does nothing when invoked as part of a normal "make
    # verify".
    
    set -o nounset
    set -o pipefail
    
    if [ ! "${PULL_NUMBER:-}" ]; then
      echo 'Not testing anything because this is not a pull request.'
      exit 0
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:14:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. hack/verify-golangci-lint-pr-hints.sh

    # golangci-lint. It does nothing when invoked as part of a normal "make
    # verify".
    
    set -o nounset
    set -o pipefail
    
    if [ ! "${PULL_NUMBER:-}" ]; then
      echo 'Not testing anything because this is not a pull request.'
      exit 0
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:14:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. hack/update-golangci-lint-config.sh

    # limitations under the License.
    
    # This script checks that golangci-strict.yaml and golangci.yaml remain in
    # sync. Lines that are intentionally different must have a comment which
    # mentions golangci.yaml or golangci-lint.yaml.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. .github/workflows/mint.yml

    name: Mint Tests
    
    on:
      pull_request:
        branches:
          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      mint-test:
        runs-on: mint
        timeout-minutes: 120
        steps:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. scripts/lint.sh

    Sebastián Ramírez <******@****.***> 1714435394 -0700
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 00:03:14 UTC 2024
    - 125 bytes
    - Viewed (0)
  10. docs/de/docs/deployment/index.md

    ## Deployment-Strategien
    
    Abhängig von Ihrem spezifischen Anwendungsfall und den von Ihnen verwendeten Tools gibt es mehrere Möglichkeiten, das zu tun.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top