Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,071 for nack (0.04 sec)

  1. CONTRIBUTING.md

    # Contribution guidelines
    
    So you want to hack on Istio? Yay! Please refer to Istio's overall
    [contribution guidelines](https://github.com/istio/community/blob/master/CONTRIBUTING.md)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 27 20:58:34 UTC 2017
    - 214 bytes
    - Viewed (0)
  2. src/go/types/context_test.go

    func TestContextHashCollisions(t *testing.T) {
    	if debug {
    		t.Skip("hash collisions are expected, and would fail debug assertions")
    	}
    	// Unit test the de-duplication fall-back logic in Context.
    	//
    	// We can't test this via Instantiate because this is only a fall-back in
    	// case our hash is imperfect.
    	//
    	// These lookups and updates use reasonable looking types in an attempt to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. hack/verify-test-code.sh

    # This script checks whether e2e test code which contains `Expect()` but not use
    # the e2e framework exists or not.
    # Usage: `hack/verify-test-code.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}"
    
    all_e2e_files=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 23 08:51:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. hack/get-build.sh

    # (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
    #  publication of the form <bucket>/<version> (e.g. "release/stable",'
    # "ci/latest-1").'
    
    # Usage `hack/get-build.sh [Version]`.
    # Example `hack/get-build.sh v1.16.4`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/cluster/common.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

    #include "xla/mlir/utils/error_util.h"
    #include "tensorflow/core/platform/status.h"
    
    // Error utilities for MLIR when interacting with code using Status returns.
    namespace mlir {
    
    // TensorFlow's Status is used for error reporting back to callers.
    using ::tensorflow::Status;
    
    // TF customized diagnostic handler that collects all the diagnostics reported
    // and can produce a Status to return to callers. This is for the case where
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. releasenotes/notes/46868.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/46868
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 18 15:47:54 UTC 2023
    - 232 bytes
    - Viewed (0)
  7. releasenotes/notes/workload-entry-service-select.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
     - |
       **Added** `PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES` feature back to Istio which was removed in 1.14.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 01 14:32:40 UTC 2022
    - 265 bytes
    - Viewed (0)
  8. src/runtime/vdso_linux_arm.go

    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6", 0x3ae75f6}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    // initialize to fall back to syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 13:21:27 UTC 2018
    - 669 bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/options.go

    		return etcdName, nil
    	}
    	klog.Warningf("%s variable unset - falling back to etcd-%s variable", etcdNameEnv, etcdHostnameEnv)
    	if etcdHostname, err := lookupEnv(etcdHostnameEnv); err == nil {
    		return fmt.Sprintf("etcd-%s", etcdHostname), nil
    	}
    	klog.Warningf("%s variable unset - falling back to etcd-%s variable", etcdHostnameEnv, hostnameEnv)
    	if hostname, err := lookupEnv(hostnameEnv); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue9862_run.go

    // run
    
    //go:build !nacl && !js && !wasip1 && gc
    
    // Copyright 2015 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.
    
    // Check for compile or link error.
    
    package main
    
    import (
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	out, err := exec.Command("go", "run", "fixedbugs/issue9862.go").CombinedOutput()
    	outstr := string(out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 662 bytes
    - Viewed (0)
Back to top