Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,071 for nack (0.05 sec)

  1. cmd/fieldnamedocscheck/field_name_docs_check.go

    	// The rule is:
    	// 1. Get all back-tick quoted names in the doc
    	// 2. Skip the name which is already found mismatched.
    	// 3. Skip the name whose lowercase is different from the lowercase of tag names,
    	//    because some docs use back-tick to quote field value or nil
    	// 4. Check if the name is different from its tag name
    
    	// TODO: a manual pass adding back-ticks to the doc strings, then update the linter to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 18:32:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. hack/print-workspace-status.sh

    #
    # It is still useful for obtaining kube::version::get_version_vars without
    # sourcing Kubernetes build internals.
    #
    # Usage: `hack/print-workspace-status.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/version.sh"
    kube::version::get_version_vars
    
    # Prefix with STABLE_ so that these values are saved to stable-status.txt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 06 11:19:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. hack/jenkins/benchmark-dockerized.sh

    # As individual scripts make use of go modules, they can explicitly set GO111MODULE=on
    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install github.com/cespare/prettybench
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
    
    # Disable the Go race detector.
    export KUBE_RACE=" "
    # Disable coverage report
    export KUBE_COVER="n"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. hack/verify-cli-conventions.sh

    # is valid or not. And this checking is done for all kubectl sub-commands.
    # Usage: `hack/verify-cli-conventions.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
    
    GOPROXY=off go install ./cmd/clicheck
    
    if ! output=$(clicheck 2>&1)
    then
    	echo "$output"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. hack/verify-pkg-names.sh

    # limitations under the License.
    
    # This script verifies whether codes follow golang convention.
    # Usage: `hack/verify-pkg-names.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 21:06:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. hack/make-rules/verify.sh

      "verify-vendor-licenses.sh"
    )
    
    while IFS='' read -r line; do EXCLUDED_CHECKS+=("$line"); done < <(ls "${EXCLUDED_PATTERNS[@]/#/${KUBE_ROOT}/hack/}" 2>/dev/null || true)
    while IFS='' read -r line; do QUICK_CHECKS+=("$line"); done < <(ls "${QUICK_PATTERNS[@]/#/${KUBE_ROOT}/hack/}" 2>/dev/null || true)
    TARGET_LIST=()
    IFS=" " read -r -a TARGET_LIST <<< "${WHAT:-}"
    
    function is-excluded {
      for e in "${EXCLUDED_CHECKS[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/container/list/list.go

    // Front returns the first element of list l or nil if the list is empty.
    func (l *List) Front() *Element {
    	if l.len == 0 {
    		return nil
    	}
    	return l.root.next
    }
    
    // Back returns the last element of list l or nil if the list is empty.
    func (l *List) Back() *Element {
    	if l.len == 0 {
    		return nil
    	}
    	return l.root.prev
    }
    
    // lazyInit lazily initializes a zero List value.
    func (l *List) lazyInit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

      }
    
      {nameDllVisualStudioProject, nameDllVisualStudioFilters, nameLibVisualStudioProject, nameLibVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      {nameVisualStudioProject, nameVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      nameVisualStudioSolution -> visualStudio -> openVisualStudio [dir=back]
    
      nameVisualStudioSolution[label=<<i>projectName</i>VisualStudioSolution>]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. hack/e2e-node-test.sh

    # The "true" target of this makerule is `hack/make-rules/test-e2e-node.sh`.
    
    # This script runs `make test-e2e-node` command.
    # The command builds and runs node end-to-end tests.
    # Args:
    #  FOCUS: Regexp that matches the tests to be run.  Defaults to "".
    #  SKIP: Regexp that matches the tests that needs to be skipped.  Defaults
    # Usage: `hack/e2e-node-test.sh `.
    # Example: `hack/e2e-node-test.sh FOCUS=Kubelet SKIP=container`.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug_test.go

    			ResourceNames: []string{"80", "8080"},
    		})
    
    		node, _ := model.ParseServiceNodeWithMetadata(ads.ID, &model.NodeMetadata{})
    		verifySyncStatus(t, s.Discovery, node.ID, true, true)
    	})
    	t.Run("sync status not set when Nackd", func(t *testing.T) {
    		s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    		ads := s.ConnectADS()
    
    		ads.RequestResponseNack(t, &discovery.DiscoveryRequest{TypeUrl: v3.ClusterType})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top