Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,406 for nack (0.11 sec)

  1. docs/de/docs/tutorial/middleware.md

    * Dann gibt sie die **Response** zurück.
    
    !!! note "Technische Details"
        Wenn Sie Abhängigkeiten mit `yield` haben, wird der Exit-Code *nach* der Middleware ausgeführt.
    
        Wenn es Hintergrundaufgaben gab (später dokumentiert), werden sie *nach* allen Middlewares ausgeführt.
    
    ## Erstellung einer Middleware
    
    Um eine Middleware zu erstellen, verwenden Sie den Dekorator `@app.middleware("http")` über einer Funktion.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:26:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. build/dependencies.yaml

      # dependency check exists to ensure we're pinned to a known good version.
      #
      # ref: https://github.com/kubernetes/kubernetes/pull/98845
      - name: "zeitgeist"
        version: "v0.5.3"
        refPaths:
        - path: hack/verify-external-dependencies-version.sh
          match: sigs.k8s.io/zeitgeist@v.*
    
      # CNI plugins
      - name: "cni"
        version: 1.5.0
        refPaths:
        - path: cluster/gce/config-common.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. 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)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            ArtifactFilter resolutionFilter = request.getResolutionFilter();
            RepositorySystemSession session = getSession(request.getLocalRepository());
    
            // TODO: hack because metadata isn't generated in m2e correctly and i want to run the maven i have in the
            // workspace
            if (source == null) {
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K 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. 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)
  8. 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)
  9. 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)
  10. src/unsafe/unsafe.go

    //		return *(*uint64)(unsafe.Pointer(&f))
    //	}
    //
    // (2) Conversion of a Pointer to a uintptr (but not back to Pointer).
    //
    // Converting a Pointer to a uintptr produces the memory address of the value
    // pointed at, as an integer. The usual use for such a uintptr is to print it.
    //
    // Conversion of a uintptr back to Pointer is not valid in general.
    //
    // A uintptr is an integer, not a reference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top