Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,464 for nack (0.08 sec)

  1. hack/verify-internal-modules.sh

    # limitations under the License.
    
    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
    - 853 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/cpp-application-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. hack/verify-vendor-licenses.sh

    # or not. We should run `hack/update-vendor-licenses.sh` and commit the results,
    # if actually updates them.
    # Usage: `hack/verify-vendor-licenses.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: Wed Mar 06 05:44:43 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. hack/update-mocks.sh

    # limitations under the License.
    
    # This script generates mock files using mockgen.
    # Usage: `hack/update-mocks.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    echo 'installing mockgen'
    go -C "${KUBE_ROOT}/hack/tools" install go.uber.org/mock/mockgen
    
    function git_grep() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. hack/verify-openapi-spec.sh

    # We should run `hack/update-openapi-spec.sh` if OpenAPI specification is out of
    # date.
    # Usage: `hack/verify-openapi-spec.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: Wed Mar 06 05:44:41 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. hack/verify-yamlfmt.sh

    # `yamlfmt`. Run `hack/update-yamlfmt.sh` to actually format sources.
    #
    # Usage: `hack/verify-yamlfmt.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: Tue Aug 22 18:39:23 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. hack/verify-spelling.sh

    PATH="${GOBIN}:${PATH}"
    
    # Install tools we need
    go -C "${KUBE_ROOT}/hack/tools" install github.com/client9/misspell/cmd/misspell
    
    # Spell checking
    # All the skipping files are defined in hack/.spelling_failures
    skipping_file="${KUBE_ROOT}/hack/.spelling_failures"
    failing_packages=$(sed "s| | -e |g" "${skipping_file}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. hack/update-vanity-imports.sh

    # limitations under the License.
    
    # This script fixes the vanity imports programmatically.
    # Usage: `hack/update-vanity-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::verify_go_version
    
    go -C "${KUBE_ROOT}/hack/tools" install github.com/jcchavezs/porto/cmd/porto
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. hack/_update-generated-protobuf-dockerized.sh

    # Usage: 
    #     hack/update-generated-protobuf-dockerized.sh "${APIROOTS[@]}"
    #     An example APIROOT is: "k8s.io/api/admissionregistration/v1"
    
    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/protoc.sh"
    
    kube::protoc::check_protoc
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. hack/verify-conformance-requirements.sh

    # https://git.k8s.io/community/contributors/devel/sig-architecture/conformance-tests.md#conformance-test-requirements
    # Usage: `hack/verify-conformance-requirements.sh`.
    
    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
    
    cd "${KUBE_ROOT}"
    
    errors=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top