Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for z0 (0.02 sec)

  1. pkg/apis/resource/validation/validation_resourceslice_test.go

    			slice:        testResourceSlice(badName, goodName, driverName),
    		},
    		"generate-name": {
    			slice: func() *resource.ResourceSlice {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops.mlir

      }
      func.return
    
    // CHECK:      %[[OP_A:[a-z0-9]*]] = "tf.opA"
    // CHECK:      %[[OP_B:[a-z0-9]*]] = "tf.opB"
    // CHECK:      %[[OP_C:[a-z0-9]*]] = "tf.opC"
    // CHECK:      %[[OP_D:[a-z0-9]*]] = "tf.opD"
    // CHECK:      %[[OP_E:[a-z0-9]*]] = "tf.opE"
    // CHECK:      %[[OP_F:[a-z0-9]*]] = "tf.opF"
    // CHECK:      %[[OP_G:[a-z0-9]*]] = "tf.opG"
    // CHECK:      %[[OP_H:[a-z0-9]*]] = "tf.opH"
    // CHECK:      %[[OP_I:[a-z0-9]*]] = "tf.opI"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    		},
    		{
    			name:        "dns1035Label",
    			expr:        `format.dns1035Label().validate("contains a space")`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

    }
    
    // CHECK: func private @[[CLUSTER_0]]
    // CHECK-SAME: (%[[CLUSTER_0_ARG_0:[a-z0-9]*]]: tensor<?xi32>) -> tensor<?xi32>
    // CHECK: %[[B_OUTPUT:[0-9]*]] = "tf.B"(%[[CLUSTER_0_ARG_0]])
    // CHECK: return %[[B_OUTPUT]]
    
    // CHECK: func private @[[CLUSTER_1]]
    // CHECK-SAME: (%[[CLUSTER_1_ARG_0:[a-z0-9]*]]: tensor<?xi32>, %[[CLUSTER_1_ARG_1:[a-z0-9]*]]: tensor<?xi32>) -> tensor<?xi32>
    // CHECK: %[[E_OUTPUT:[0-9]*]] = "tf.E"(%[[CLUSTER_1_ARG_0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. hack/verify-openapi-docs-urls.sh

    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
      grep -oE '"description": ".*",?$' "$full_repo_path" | grep -oE 'https?:\/\/[-a-zA-Z0-9._+]{1,256}\.[a-zA-Z0-9]{1,6}\b([-a-zA-Z0-9:%_+.~&/=]*[a-zA-Z0-9])' >> "${TMP_URLS}" || true
    done
    sort -u "${TMP_URLS}" -o "${TMP_URLS}"
    
    RESULT=0
    while read -r URL; do
      if ! curl --head --location --fail --silent "$URL" > /dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/templates/root-project/checkstyle.xml

            <module name="PackageName">
                <property name="format" value="^[a-z]+(\\.[a-z][a-z0-9_]*)*\$"/>
            </module>
            <module name="ParameterName"/>
            <module name="StaticVariableName"/>
            <module name="TypeName">
                <property name="format" value="^[A-Z][a-zA-Z0-9_]*\$"/>
            </module>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 856 bytes
    - Viewed (0)
  7. src/net/lookup_windows_test.go

    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		ns = append(ns, &NS{absDomainName(ans[2])})
    	}
    	return
    }
    
    func nslookupCNAME(name string) (cname string, err error) {
    	var r string
    	if r, err = nslookup("cname", name); err != nil {
    		return
    	}
    	// mail.golang.com canonical name = golang.org.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/net/netip/export_test.go

    // Copyright 2021 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.
    
    package netip
    
    import "unique"
    
    var (
    	Z0    = z0
    	Z4    = z4
    	Z6noz = z6noz
    )
    
    type Uint128 = uint128
    
    type AddrDetail = addrDetail
    
    func Mk128(hi, lo uint64) Uint128 {
    	return uint128{hi, lo}
    }
    
    func MkAddr(u Uint128, z unique.Handle[AddrDetail]) Addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:15 UTC 2024
    - 730 bytes
    - Viewed (0)
  9. test/codegen/math.go

    	negone := -1.0
    
    	// amd64:"DIVSD"
    	z0 := zero / zero
    	// amd64:"MULSD"
    	z1 := zero * inf
    	// amd64:"SQRTSD"
    	z2 := math.Sqrt(negone)
    	return z0 + z1 + z2
    }
    
    func nanGenerate32() float32 {
    	zero := float32(0.0)
    	// amd64:-"DIVSS"
    	inf := 1 / zero // +inf. We can constant propagate this one.
    
    	// amd64:"DIVSS"
    	z0 := zero / zero
    	// amd64:"MULSS"
    	z1 := zero * inf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/split-merged-operands.mlir

      // CHECK-DAG:  %[[CST_1:.*]] = "tfl.pseudo_const"() <{value = dense<0.000000e+00> : tensor<4x4xf32>}> : () -> tensor<4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top