Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 630 for nack (0.3 sec)

  1. hack/golangci.yaml.in

    linters-settings: # please keep this alphabetized
      custom:
        logcheck:
          # Installed there by hack/verify-golangci-lint.sh.
          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              {{include "hack/logcheck.conf" | indent 10 | trim}}
      forbidigo:
        analyze-types: true
        forbid:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. hack/golangci-hints.yaml

    linters-settings: # please keep this alphabetized
      custom:
        logcheck:
          # Installed there by hack/verify-golangci-lint.sh.
          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. hack/golangci-strict.yaml

    linters-settings: # please keep this alphabetized
      custom:
        logcheck:
          # Installed there by hack/verify-golangci-lint.sh.
          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/log/slog/record.go

    	if cap(r.back) > len(r.back) {
    		end := r.back[:len(r.back)+1][len(r.back)]
    		if !end.isEmpty() {
    			// Don't panic; copy and muddle through.
    			r.back = slices.Clip(r.back)
    			r.back = append(r.back, String("!BUG", "AddAttrs unsafely called on copy of Record made without using Record.Clone"))
    		}
    	}
    	ne := countEmptyGroups(attrs[i:])
    	r.back = slices.Grow(r.back, len(attrs[i:])-ne)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. hack/verify-go-workspace.sh

    # `yamlfmt`. Run `hack/update-yamlfmt.sh` to actually format sources.
    #
    # Usage: `hack/verify-go-workspace.sh`.
    
    
    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: Fri Mar 01 06:06:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. hack/verify-generated-docs.sh

    # files) are generated correctly(just verifies the generation process).
    # Usage: `hack/verify-generated-docs.sh`.
    
    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: Fri Mar 01 06:07:33 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. hack/update-golangci-lint-config.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    
    # Remove all files, some of them might be obsolete.
    rm -f hack/golangci*.yaml
    
    generate () {
        out="$1"
        shift
        echo "Generating $out from hack/golangci.yaml.in with ./cmd/gotemplate $*"
        go run ./cmd/gotemplate <hack/golangci.yaml.in >"${out}" "$@"
    }
    
    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. platforms/documentation/docs/src/docs/userguide/img/swift-application-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugSwift -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileTestCpp -> linkTest -> installTest -> runTest -> test -> check -> build [dir=back]
      compileDebugCpp -> linkTest [dir=back]
      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
      compileDebugCpp [style="dashed,filled", fillcolor=grey]
      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. hack/verify-golangci-lint.sh

       -c <config|"none">: use the specified configuration or none instead of the default hack/golangci.yaml
       [packages]: check specific packages or directories instead of everything
    EOF
      exit 1
    }
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    export GOBIN="${KUBE_OUTPUT_BIN}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top