Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 204 for v110 (0.04 sec)

  1. 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)
  2. 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)
  3. src/crypto/internal/nistec/fiat/p224_invert.go

    	// The sequence of 11 multiplications and 223 squarings is derived from the
    	// following addition chain generated with github.com/mmcloughlin/addchain v0.4.0.
    	//
    	//	_10     = 2*1
    	//	_11     = 1 + _10
    	//	_110    = 2*_11
    	//	_111    = 1 + _110
    	//	_111000 = _111 << 3
    	//	_111111 = _111 + _111000
    	//	x12     = _111111 << 6 + _111111
    	//	x14     = x12 << 2 + _11
    	//	x17     = x14 << 3 + _111
    	//	x31     = x17 << 14 + x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs-asciidoctor-extensions/build.gradle.kts

    val asciiDoctorVersion = "2.5.11"
    
    dependencies {
        api("org.asciidoctor:asciidoctorj-api:$asciiDoctorVersion")
        api("org.asciidoctor:asciidoctorj:$asciiDoctorVersion")
    
        implementation("commons-io:commons-io:2.11.0")
        implementation(project(":docs-asciidoctor-extensions-base"))
    }
    
    java {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 526 bytes
    - Viewed (0)
  5. 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)
  6. src/internal/types/testdata/fixedbugs/issue51610.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _[P int | float64 | complex128]() {
    	_ = map[P]int{1: 1, 1.0 /* ERROR "duplicate key 1" */ : 2, 1 /* ERROR "duplicate key (1 + 0i)" */ + 0i: 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 322 bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/poland.js

    ,validatorFunction:function(a){var b=[8,9,2,3,4,5,6,7],c=[2,4,8,5,0,9,7,3,6,1,2,4,8],d=0,e=0;if(/(\d{14}|\d{9})/.test(a)&&(9===a.length||14===a.length)){for(var f=0;f<8;f++)d+=a[f]*b[f];if(d%11!==10&&(e=d%11),parseInt(a.charAt(8))===e){if(14!==a.length)return!0;for(d=0,f=0;f<13;f++)d+=a[f]*c[f];if(d%11!==10&&(e=d%11),parseInt(a.charAt(13))===e)return!0}}return!1},errorMessage:"",errorMessageKey:"badPlRegon"})}(a)});...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/fused_kernel_matcher.mlir

      // CHECK: %[[VAL_1:.*]] = "tf.Identity"(%[[VAL_0]]) : (tensor<*xf32>)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p384_invert.go

    	// The sequence of 15 multiplications and 383 squarings is derived from the
    	// following addition chain generated with github.com/mmcloughlin/addchain v0.4.0.
    	//
    	//	_10     = 2*1
    	//	_11     = 1 + _10
    	//	_110    = 2*_11
    	//	_111    = 1 + _110
    	//	_111000 = _111 << 3
    	//	_111111 = _111 + _111000
    	//	x12     = _111111 << 6 + _111111
    	//	x24     = x12 << 12 + x12
    	//	x30     = x24 << 6 + _111111
    	//	x31     = 2*x30 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs-asciidoctor-extensions-base/build.gradle.kts

        )
    }
    
    dependencies {
        api("org.asciidoctor:asciidoctorj-api:$asciiDoctorVersion")
        api("org.asciidoctor:asciidoctorj:$asciiDoctorVersion")
    
        implementation("commons-io:commons-io:2.11.0")
        testImplementation("org.spockframework:spock-core")
    }
    
    java {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 10:37:52 UTC 2024
    - 711 bytes
    - Viewed (0)
Back to top