Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,464 for nack (0.08 sec)

  1. 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)
  2. pkg/proxy/ipvs/README.md

    - [IPVS](#ipvs)
      - [What is IPVS](#what-is-ipvs)
      - [IPVS vs. IPTABLES](#ipvs-vs-iptables)
        - [When IPVS falls back to IPTABLES](#when-ipvs-falls-back-to-iptables)
      - [Run kube-proxy in IPVS mode](#run-kube-proxy-in-ipvs-mode)
        - [Prerequisite](#prerequisite)
        - [Local UP Cluster](#local-up-cluster)
        - [GCE Cluster](#gce-cluster)
        - [Cluster Created by Kubeadm](#cluster-created-by-kubeadm)
      - [Debug](#debug)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  3. hack/update-codegen.sh

            | xargs -0 rm -f
    
        if kube::protoc::check_protoc >/dev/null; then
          hack/_update-generated-protobuf-dockerized.sh "${apis[@]}"
        else
          kube::log::status "protoc ${PROTOC_VERSION} not found (can install with hack/install-protoc.sh); generating containerized..."
          build/run.sh hack/_update-generated-protobuf-dockerized.sh "${apis[@]}"
        fi
    }
    
    # Deep-copy generation
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. hack/golangci.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.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_SelfSubjectReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. 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)
  7. hack/update-vendor.sh

    add_generated_comments "
    // This is a generated file. Do not edit directly.
    // Ensure you've carefully read
    // https://git.k8s.io/community/contributors/devel/sig-architecture/vendor.md
    // Run hack/pin-dependency.sh to change pinned dependency versions.
    // Run hack/update-vendor.sh to update go.mod files and the vendor directory.
    "
    for repo in $(kube::util::list_staging_repos); do
      (
        cd "staging/src/k8s.io/${repo}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. 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)
  9. src/main/resources/fess_label_de.properties

    labels.searchlog_log_type_search_count_hour=Schlüsselwörter nach Stunde
    labels.searchlog_log_type_search_count_day=Schlüsselwörter nach Tag
    labels.searchlog_log_type_search_user_hour=Benutzer nach Stunde
    labels.searchlog_log_type_search_user_day=Benutzer nach Tag
    labels.searchlog_log_type_search_reqtimeavg_hour=Anfragedauer im Schnitt nach Stunde
    labels.searchlog_log_type_search_reqtimeavg_day=Anfragedauer im Schnitt nach Tag
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  10. 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)
Back to top