Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 317 for 12345x (0.11 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestPageGeneratorTest.groovy

            then:
            urls[0].url == 'https://github.com/gradle/gradle/commit/123456'
        }
    
        def "transforms two commit ids to urls"() {
            when:
            def urls = new TestPageGenerator().createGitHubLinks(['123456', 'abcdefg'])
    
            then:
            urls[0].url == 'https://github.com/gradle/gradle/commit/123456'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/DescribablesTest.groovy

            Describables.of("one", "two").capitalizedDisplayName == "One two"
    
            Describables.of(123, 456).displayName == "123 456"
            Describables.of(123, 456).toString() == "123 456"
            Describables.of(123, 456).capitalizedDisplayName == "123 456"
    
            Describables.of("one", "two", "three").displayName == "one two three"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4585.go

    	}
    }
    
    func test4() {
    	var a, b V
    	m := make(map[V]int)
    
    	copy((*[20]byte)(unsafe.Pointer(&a))[:], "Hello World, Gopher!")
    	a.A1, a.A2, a.A3, a.B, a.C = 1, 2, 3, 4, 5
    	b.A1, b.A2, b.A3, b.B, b.C = 1, 2, 3, 4, 5
    
    	if a != b {
    		panic("broken equality: a != b")
    	}
    
    	m[a] = 1
    	m[b] = 2
    	if len(m) == 2 {
    		panic("broken hash: len(m) == 2")
    	}
    	if m[a] != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testshared/testdata/gcdata/main/main.go

    // See issue 39927.
    
    // This test run under GODEBUG=clobberfree=1. The check
    // *x[i] == 12345 depends on this debug mode to clobber
    // the value if the object is freed prematurely.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"testshared/gcdata/p"
    )
    
    var x p.T
    
    func main() {
    	for i := range x {
    		x[i] = new(int)
    		*x[i] = 12345
    	}
    	runtime.GC()
    	runtime.GC()
    	runtime.GC()
    	for i := range x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 763 bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

                new DirectorySnapshot(childDir.absolutePath, childDir.name, FileMetadata.AccessType.DIRECT, TestHashCodes.hashCodeFrom(2345), [
                    new RegularFileSnapshot(childFile.absolutePath, childFile.name, TestHashCodes.hashCodeFrom(9876), DefaultFileMetadata.file(123, 456, FileMetadata.AccessType.DIRECT))
                ]),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. test/interface/bigdata.go

    func (z *IntPtr) M() int64 { return int64(*z) }
    
    var bad bool
    
    func test(name string, i I) {
    	m := i.M()
    	if m != 12345 {
    		println(name, m)
    		bad = true
    	}
    }
    
    func ptrs() {
    	var bigptr BigPtr = BigPtr{ 10000, 2000, 300, 45 }
    	var smallptr SmallPtr = SmallPtr{ 12345 }
    	var intptr IntPtr = 12345
    
    //	test("bigptr", bigptr)
    	test("&bigptr", &bigptr)
    //	test("smallptr", smallptr)
    	test("&smallptr", &smallptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/fix/netipv6zone_test.go

    func f() net.Addr {
    	a := &net.IPAddr{ip1}
    	sub(&net.UDPAddr{ip2, 12345})
    	c := &net.TCPAddr{IP: ip3, Port: 54321}
    	d := &net.TCPAddr{ip4, 0}
    	p := 1234
    	e := &net.TCPAddr{ip4, p}
    	return &net.TCPAddr{ip5}, nil
    }
    `,
    		Out: `package main
    
    import "net"
    
    func f() net.Addr {
    	a := &net.IPAddr{IP: ip1}
    	sub(&net.UDPAddr{IP: ip2, Port: 12345})
    	c := &net.TCPAddr{IP: ip3, Port: 54321}
    	d := &net.TCPAddr{IP: ip4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 837 bytes
    - Viewed (0)
  8. doc/README.md

    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    ideally referring to a person with the responsibility to complete the note.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/kubeconfig_test.go

    			withToken:       true,
    			command:         "user",
    			additionalFlags: []string{"--token=123456"},
    		},
    		{
    			name:            "user subCommand withToken",
    			withToken:       true,
    			command:         "user",
    			clusterName:     "my-cluster-with-token",
    			additionalFlags: []string{"--token=123456"},
    		},
    		{
    			name:                   "user subCommand with validity period",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/encoding/gob/encoder_test.go

    	var values = []any{
    		true,
    		int(123),
    		int8(123),
    		int16(-12345),
    		int32(123456),
    		int64(-1234567),
    		uint(123),
    		uint8(123),
    		uint16(12345),
    		uint32(123456),
    		uint64(1234567),
    		uintptr(12345678),
    		float32(1.2345),
    		float64(1.2345678),
    		complex64(1.2345 + 2.3456i),
    		complex128(1.2345678 + 2.3456789i),
    		[]byte("hello"),
    		string("hello"),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top