Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,071 for nack (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    // Kind takes an unqualified kind and returns back a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns back a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. hack/generate-docs.sh

    # by default.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_HACK_ROOT=$(dirname "${BASH_SOURCE[0]}")
    
    echo "WARNING: hack/generate-docs.sh is an alias for hack/update-generated-docs.sh"
    echo "and will be removed in a future version."
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 03:38:56 UTC 2019
    - 1K bytes
    - Viewed (0)
  3. hack/verify-boilerplate.sh

    # limitations under the License.
    
    # This script checks boilerplate header for all files.
    # Usage: `hack/verify-boilerplate.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    boilerDir="${KUBE_ROOT}/hack/boilerplate"
    boiler="${boilerDir}/boilerplate.py"
    
    files_need_boilerplate=()
    while IFS=$'\n' read -r line; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 16 04:54:58 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/update-codegen.sh

    kube::codegen::gen_helpers \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
        "${SCRIPT_ROOT}/pkg/apis"
    
    kube::codegen::gen_client \
        --with-watch \
        --with-applyconfig \
        --output-dir "${SCRIPT_ROOT}/pkg/client" \
        --output-pkg "${THIS_PKG}/pkg/client" \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. hack/verify-shellcheck.sh

    # limitations under the License.
    
    # This script lints each shell script by `shellcheck`.
    # Usage: `hack/verify-shellcheck.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"
    
    # allow overriding docker cli, which should work fine for this script
    DOCKER="${DOCKER:-docker}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/internal/chacha8rand/chacha8_arm64.s

    	// store counter to memory to replicate its uint32 halfs back out
    	MOVW R2, 0(RSP)
    	VLD1R 0(RSP), [V12.S4]
    
    	// Add 0, 1, 2, 3 to counter stripes.
    	VADD V30.S4, V12.S4, V12.S4
    
    	// Zeros for remaining two matrix entries.
    	VEOR V13.B16, V13.B16, V13.B16
    	VEOR V14.B16, V14.B16, V14.B16
    	VEOR V15.B16, V15.B16, V15.B16
    
    	// Save seed state for adding back later.
    	VMOV V4.B16, V20.B16
    	VMOV V5.B16, V21.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/index.md

    Dieses Tutorial zeigt Ihnen Schritt für Schritt, wie Sie **FastAPI** und die meisten seiner Funktionen verwenden können.
    
    Jeder Abschnitt baut schrittweise auf den vorhergehenden auf. Diese Abschnitte sind aber nach einzelnen Themen gegliedert, sodass Sie direkt zu einem bestimmten Thema übergehen können, um Ihre speziellen API-Anforderungen zu lösen.
    
    Außerdem dienen diese als zukünftige Referenz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 12:11:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. hack/update-internal-modules.sh

    # See the License for the specific language governing permissions and
    # 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"
    
    # These are "internal" modules.  For various reasons, we want them to be
    # decoupled from their parent modules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/verify-codegen.sh

    cleanup
    
    mkdir -p "${TMP_DIFFROOT}"
    cp -a "${DIFFROOT}"/* "${TMP_DIFFROOT}"
    
    "${SCRIPT_ROOT}/hack/update-codegen.sh"
    echo "diffing ${DIFFROOT} against freshly generated codegen"
    ret=0
    diff -Naupr "${DIFFROOT}" "${TMP_DIFFROOT}" || ret=$?
    if [[ $ret -eq 0 ]]; then
      echo "${DIFFROOT} up to date."
    else
      echo "${DIFFROOT} is out of date. Please run hack/update-codegen.sh"
      exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 05 23:05:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. hack/verify-test-featuregates.sh

    # This script checks whether mutable global feature gate is invocated correctly
    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.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}"
    
    rc=0
    
    # find test files accessing the mutable global feature gate or interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top