Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for v110 (0.2 sec)

  1. test/codegen/bits.go

    	if a[1]>>63 != 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]63"
    	if a[2]>>63 == 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]60"
    	if (a[3]>>60)&1 == 0 {
    		return 1
    	}
    	// amd64:"BTL\t[$]1"
    	if (a[4]>>1)&1 == 0 {
    		return 1
    	}
    	// amd64:"BTL\t[$]0"
    	if (a[5]>>0)&1 == 0 {
    		return 1
    	}
    	// amd64:"BTL\t[$]7"
    	if (a[6]>>5)&4 == 0 {
    		return 1
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. samples/tlssurvey/build.gradle.kts

    dependencies {
      implementation(projects.okhttp)
      implementation(projects.okhttpCoroutines)
      implementation(libs.conscrypt.openjdk)
    
      implementation("com.squareup.retrofit2:retrofit:2.11.0")
      implementation("com.squareup.retrofit2:converter-moshi:2.11.0")
      implementation(libs.squareup.moshi)
      implementation(libs.squareup.moshi.kotlin)
    
      ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.1")
    }
    
    tasks.compileJava {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 08 02:48:17 UTC 2024
    - 617 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/go/constant/example_test.go

    		mkComplex(one, one),
    	}
    
    	for _, v := range vs {
    		fmt.Printf("% d %s\n", constant.Sign(v), v)
    	}
    
    	// Output:
    	//
    	// -1 -1
    	// -1 (0 + -1i)
    	// -1 (1 + -1i)
    	// -1 (-1 + 1i)
    	// -1 (-1 + -1i)
    	//  0 0
    	//  0 (0 + 0i)
    	//  1 1
    	//  1 (0 + 1i)
    	//  1 (1 + 1i)
    }
    
    func ExampleVal() {
    	maxint := constant.MakeInt64(math.MaxInt64)
    	fmt.Printf("%v\n", constant.Val(maxint))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants_offset.mlir

      // CHECK: <{qtype = tensor<3x3x!quant.uniform<i32:f32:1, {1.000000e+00,5.000000e-01:1,2.500000e-01:1}>>, value = dense<1> : tensor<3x3xi32>}> : () -> tensor<3x3x!quant.uniform<i32:f32:1, {1.000000e+00,5.000000e-01:1,2.500000e-01:1}>>
      %0 = "tfl.pseudo_qconst"() { qtype = tensor<3x3x!quant.uniform<i32:f32:1, {1.0, 0.5:1, 0.25:1}>>, value = dense<1> : tensor<3x3xi32>} : () -> tensor<3x3x!quant.uniform<i32:f32:1, {1.0, 0.5:1, 0.25:1}>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/requirements.txt

    idna==3.7 \
        --hash=sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc \
        --hash=sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0
        # via requests
    importlib-metadata==6.11.0 \
        --hash=sha256:1231cf92d825c9e03cfc4da076a16de6422c863558229ea0b22b675657463443 \
        --hash=sha256:f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b
        # via opentelemetry-api
    itsdangerous==2.2.0 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/version_test.go

    			remoteVersion: "v1.11.5",
    			clientVersion: "v1.11.0",
    			output:        "v1.11.5",
    		},
    		{
    			name:          "valid: return the same version",
    			remoteVersion: "v1.11.0",
    			clientVersion: "v1.11.0",
    			output:        "v1.11.0",
    		},
    		{
    			name:          "invalid: client version is empty",
    			remoteVersion: "v1.12.1",
    			clientVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      // CHECK: <{qtype = tensor<3x3x!quant.uniform<i32:f32:1, {1.000000e+00,5.000000e-01:1,2.500000e-01:1}>>, value = dense<1> : tensor<3x3xi32>}> : () -> tensor<3x3x!quant.uniform<i32:f32:1, {1.000000e+00,5.000000e-01:1,2.500000e-01:1}>>
      %0 = "tfl.pseudo_qconst"() { qtype = tensor<3x3x!quant.uniform<i32:f32:1, {1.0, 0.5:1, 0.25:1}>>, value = dense<1> : tensor<3x3xi32>} : () -> tensor<3x3x!quant.uniform<i32:f32:1, {1.0, 0.5:1, 0.25:1}>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tests/integration/pilot/cni/cniversionskew_test.go

    )
    
    var (
    	i istio.Instance
    
    	apps = deployment.SingleNamespaceView{}
    )
    
    const (
    	// TODO: replace this with official 1.11 release once available.
    	NMinusOne    = "1.11.0-beta.1"
    	CNIConfigDir = "tests/integration/pilot/testdata/upgrade"
    )
    
    // Currently only test CNI with one version behind.
    var versions = []string{NMinusOne}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_GETEUID                 = 5105
    	SYS_GETEGID                 = 5106
    	SYS_SETPGID                 = 5107
    	SYS_GETPPID                 = 5108
    	SYS_GETPGRP                 = 5109
    	SYS_SETSID                  = 5110
    	SYS_SETREUID                = 5111
    	SYS_SETREGID                = 5112
    	SYS_GETGROUPS               = 5113
    	SYS_SETGROUPS               = 5114
    	SYS_SETRESUID               = 5115
    	SYS_GETRESUID               = 5116
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top