Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for v110 (0.14 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. test/inline_big.go

    	a[97] = 0
    	a[98] = 0
    	a[99] = 0
    	a[100] = 0
    	a[101] = 0
    	a[102] = 0
    	a[103] = 0
    	a[104] = 0
    	a[105] = 0
    	a[106] = 0
    	a[107] = 0
    	a[108] = 0
    	a[109] = 0
    	a[110] = 0
    	a[111] = 0
    	a[112] = 0
    	a[113] = 0
    	a[114] = 0
    	a[115] = 0
    	a[116] = 0
    	a[117] = 0
    	a[118] = 0
    	a[119] = 0
    	a[120] = 0
    	a[121] = 0
    	a[122] = 0
    	a[123] = 0
    	a[124] = 0
    	a[125] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    1.11.0-beta.1-cni-install.yaml apiVersion: v1 kind: ServiceAccount metadata: name: istio-cni namespace: kube-system labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: istio-cni labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" rules:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.10.md

      - [Downloads for v1.10.2](#downloads-for-v1102)
        - [Client Binaries](#client-binaries-11)
        - [Server Binaries](#server-binaries-11)
        - [Node Binaries](#node-binaries-11)
      - [Changelog since v1.10.1](#changelog-since-v1101)
        - [Other notable changes](#other-notable-changes-11)
    - [v1.10.1](#v1101)
      - [Downloads for v1.10.1](#downloads-for-v1101)
        - [Client Binaries](#client-binaries-12)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue2615.go

    // in the parser stack.
    
    package main
    
    // test returns the index of the lowest set bit in a 256-bit vector.
    func test(x [4]uint64) int {
    	if x[0]&(1<<0) != 0 {
    		return 0
    	} else if x[0]&(1<<1) != 0 {
    		return 1
    	} else if x[0]&(1<<2) != 0 {
    		return 2
    	} else if x[0]&(1<<3) != 0 {
    		return 3
    	} else if x[0]&(1<<4) != 0 {
    		return 4
    	} else if x[0]&(1<<5) != 0 {
    		return 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 11.5K bytes
    - Viewed (0)
  7. src/runtime/string_test.go

    		}
    	}
    }
    
    func TestLargeStringConcat(t *testing.T) {
    	output := runTestProg(t, "testprog", "stringconcat")
    	want := "panic: " + strings.Repeat("0", 1<<10) + strings.Repeat("1", 1<<10) +
    		strings.Repeat("2", 1<<10) + strings.Repeat("3", 1<<10)
    	if !strings.HasPrefix(output, want) {
    		t.Fatalf("output does not start with %q:\n%s", want, output)
    	}
    }
    
    func TestConcatTempString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top