Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for v110 (0.1 sec)

  1. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

            where:
            vsVersion         | platformToolset
            "15.5.27130.2027" | "v141"
            "14"              | "v140"
            "12"              | "v120"
            "11"              | "v110"
            "10"              | null
        }
    
        private VisualStudioProjectConfiguration configuration(def configName, def platformName, def defines, def includes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/stringconcat.go

    package main
    
    import "strings"
    
    func init() {
    	register("stringconcat", stringconcat)
    }
    
    func stringconcat() {
    	s0 := strings.Repeat("0", 1<<10)
    	s1 := strings.Repeat("1", 1<<10)
    	s2 := strings.Repeat("2", 1<<10)
    	s3 := strings.Repeat("3", 1<<10)
    	s := s0 + s1 + s2 + s3
    	panic(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 443 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/flags_test.go

    	case "amd64":
    		fcb.Z = x>>6&1 != 0
    		fcb.N = x>>7&1 != 0
    		fcb.C = x>>0&1 != 0
    		if sub {
    			// Convert from amd64-sense to arm-sense
    			fcb.C = !fcb.C
    		}
    		fcb.V = x>>11&1 != 0
    	case "arm64":
    		fcb.Z = x>>30&1 != 0
    		fcb.N = x>>31&1 != 0
    		fcb.C = x>>29&1 != 0
    		fcb.V = x>>28&1 != 0
    	default:
    		panic("unsupported architecture: " + runtime.GOARCH)
    	}
    	return fcb.encode()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/scala/src/test/groovy/org/gradle/scala/compile/internal/ScalaCompileOptionsConfigurerTest.groovy

            6             | false             | '2.11.0'            | '-target:jvm-1.6'
            7             | false             | '2.11.0'            | '-target:jvm-1.7'
    
            8             | false             | '2.10.0'            | '-target:jvm-1.8'
            8             | false             | '2.11.0'            | '-target:jvm-1.8'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top