Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,071 for nack (0.23 sec)

  1. hack/build-go.sh

    #     package, the build will produce executable files under $(OUT_DIR)/go/bin.
    #     If not specified, "everything" will be built.
    # Usage: `hack/build-go.sh`.
    # Example: `hack/build-go.sh WHAT=cmd/kubelet`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ "$#" -gt 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. releasenotes/notes/endpoint-slice.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Updated** the control plane to read `EndpointSlice` insead of `Endpoints`
      for service discovery for Kubernetes 1.21 or later. To switch back to the old
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 18:34:02 UTC 2021
    - 322 bytes
    - Viewed (0)
  3. test/fixedbugs/issue5260.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5260: Unicode BOM in exported string constant
    // cannot be read back during package import.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 18:45:18 UTC 2013
    - 289 bytes
    - Viewed (0)
  4. pkg/kubelet/config/mux_test.go

    	channelOne := mux.ChannelWithContext(ctx, "one")
    	if channelOne != mux.ChannelWithContext(ctx, "one") {
    		t.Error("Didn't get the same muxuration channel back with the same name")
    	}
    	channelTwo := mux.ChannelWithContext(ctx, "two")
    	if channelOne == channelTwo {
    		t.Error("Got back the same muxuration channel for different names")
    	}
    }
    
    type MergeMock struct {
    	source string
    	update interface{}
    	t      *testing.T
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 20:02:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/statusgen.go

    	Server *DiscoveryServer
    
    	// TODO: track last N Nacks and connection events, with 'version' based on timestamp.
    	// On new connect, use version to send recent events since last update.
    }
    
    func NewStatusGen(s *DiscoveryServer) *StatusGen {
    	return &StatusGen{
    		Server: s,
    	}
    }
    
    // Generate XDS responses about internal events:
    // - connection status
    // - NACKs
    // We can also expose ACKS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. docs/de/docs/reference/background.md

    Sie können einen Parameter in einer *Pfadoperation-Funktion* oder einer Abhängigkeitsfunktion mit dem Typ `BackgroundTasks` deklarieren und diesen danach verwenden, um die Ausführung von Hintergrundtasks nach dem Senden der Response zu definieren.
    
    Sie können `BackgroundTasks` direkt von `fastapi` importieren:
    
    ```python
    from fastapi import BackgroundTasks
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 21 22:26:48 UTC 2024
    - 438 bytes
    - Viewed (0)
  7. releasenotes/notes/33293.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
      - 33293
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 15:12:21 UTC 2021
    - 187 bytes
    - Viewed (0)
  8. hack/verify-govulncheck.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/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # make sure everything is committed
    kube::util::ensure_clean_working_dir
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. hack/verify-openapi-docs-urls.sh

    # This script checks the documentation (description) from the OpenAPI specification for URLs, and
    # verifies those URLs are valid.
    # Usage: `hack/verify-openapi-docs-links.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SPECROOT="${KUBE_ROOT}/api/openapi-spec"
    SPECV3PATH="${SPECROOT}/v3"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. hack/verify-prerelease-lifecycle-tags.sh

    # limitations under the License.
    
    # This script verifies whether codes follow golang convention.
    # Usage: `hack/verify-prerelease-lifecycle-tags.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Tags must be put on all non-alpha API types
    # prerelease-lifecycle-gen itself makes sure every type with TypeMeta in the 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 20:27:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top