Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for west (0.32 sec)

  1. src/cmd/compile/internal/test/test.go

    // Copyright 2016 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 173 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ir/testdata/test.mlir

    func.func @test(%ch: !tfrt.chain, %arg0: !corert.tensorhandle, %arg1_th: !corert.tensorhandle) {
      %cpu = corert.get_op_handler %ch "cpu"
      %0 = corert.executeop(%cpu) "tf.Relu"(%arg0) { T = f32 } : 1
      %arg1 = tfrt_fallback_async.corert_tensorhandle_to_fallback_tensor %arg1_th {_tfrt_cost = 1 : i64, device = "/CPU:0"} : (!corert.tensorhandle) -> (!tfrt_fallback.tf_tensor)
      %1 = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "tf.Relu"(%arg1) { T = f32 } : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 496 bytes
    - Viewed (0)
  3. src/cmd/cover/testdata/test.go

    const panicIndex = 3
    
    // This test appears first because the index of its counters is known to main.go
    func testPanic() {
    	defer func() {
    		recover()
    	}()
    	check(LINE, 1)
    	panic("should not get next line")
    	check(LINE, 0) // this is GoCover.Count[panicIndex]
    	// The next counter is in testSimple and it will be non-zero.
    	// If the panic above does not trigger a counter, the test will fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/program/test.js

    // Test Java Script
    
    function foo() {
    	var bar = "ใƒ†ใ‚นใƒˆ";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 63 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/analysis/testdata/test.mlir

    func.func @test(%ch: !tfrt.chain, %arg0: !corert.tensorhandle, %arg1_th: !corert.tensorhandle) {
      %cpu = corert.get_op_handler %ch "cpu"
      %0 = corert.executeop(%cpu) "tf.Relu"(%arg0) { T = f32 } : 1
      %arg1 = tfrt_fallback_async.corert_tensorhandle_to_fallback_tensor %arg1_th {_tfrt_cost = 1 : i64, device = "/CPU:0"} : (!corert.tensorhandle) -> (!tfrt_fallback.tf_tensor)
      %1 = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "tf.Relu"(%arg1) { T = f32 } : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 29 18:20:20 UTC 2022
    - 496 bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

        - [kubectl delete: < v1.4.0 client vs >=v1.4.0 cluster](#kubectl-delete--v140-client-vs-v140-cluster)
        - [DELETE operation in REST API](#delete-operation-in-rest-api)
      - [Action Required Before Upgrading](#action-required-before-upgrading)
    - [optionally, remove the old secret](#optionally-remove-the-old-secret)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. tools/go-stress-test

        esac
        shift
    done
    
    RESULTS=/tmp/test-results"$(dirname ${binary})"
    mkdir -p "${RESULTS}"
    code=0
    
    for testname in $("${binary}" -test.list "${RUN}" | grep '^Test'); do
      stress -f --max-time "${TIME:-10s}" --max-runs "${RUNS:-1000}" "${binary}" -test.run '^'"${testname}"'$' -test.count "${COUNT}" -test.v &> "${RESULTS}/${testname}"
      # shellcheck disable=SC2181
      if [[ $? != 0 ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. hack/test-go.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs all *_test.go files. It is equivalent to `make test`.
    # Usage: `hack/test-go.sh` or `make test`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.13.md

    * test/e2e/e2e.test: ([#69105](https://github.com/kubernetes/kubernetes/pull/69105), [@pohly](https://github.com/pohly))
       * -viper-config can be used to set also the options defined by command line flags
       * the default config file is "e2e.yaml/toml/json/..." and the test starts when no such config is found (as before) but if -viper-config is used, the config file must exist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  10. hack/make-rules/test-integration.sh

    KUBE_TEST_VMODULE=${KUBE_TEST_VMODULE:-""}
    
    kube::test::find_integration_test_dirs() {
      (
        cd "${KUBE_ROOT}"
        # The "./" syntax here produces Go-compatible package names.
        find ./test/integration/ -name '*_test.go' -print0 \
          | xargs -0n1 dirname \
          | LC_ALL=C sort -u
        find ./staging/src/k8s.io/apiextensions-apiserver/test/integration/ -name '*_test.go' -print0 \
          | xargs -0n1 dirname \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top