Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 317 for 2345 (0.06 sec)

  1. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2, 3, 4}, -9, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, -5, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, -1, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, 0, new double[] {1, 2, 3, 4});
        testRotate(new double[] {1, 2, 3, 4}, 1, new double[] {4, 1, 2, 3});
        testRotate(new double[] {1, 2, 3, 4}, 5, new double[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/IntsTest.java

        testRotate(new int[] {1, 2, 3, 4}, -9, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, -5, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, -1, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, 0, new int[] {1, 2, 3, 4});
        testRotate(new int[] {1, 2, 3, 4}, 1, new int[] {4, 1, 2, 3});
        testRotate(new int[] {1, 2, 3, 4}, 5, new int[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    				),
    			},
    		},
    		"auto-generated secret does not have 'last-used' label, has been marked as invalid, invalid_since label can not be parsed": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("", "2022-12-29-1", "2022-12-27", "default", "12345", ""),
    			ExistingServiceAccount:   serviceAccount(tokenSecretReferences()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/mime/grammar.go

    package mime
    
    import (
    	"strings"
    )
    
    // isTSpecial reports whether rune is in 'tspecials' as defined by RFC
    // 1521 and RFC 2045.
    func isTSpecial(r rune) bool {
    	return strings.ContainsRune(`()<>@,;:\"/[]?=`, r)
    }
    
    // isTokenChar reports whether rune is in 'token' as defined by RFC
    // 1521 and RFC 2045.
    func isTokenChar(r rune) bool {
    	// token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
    	//             or tspecials>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 01:06:05 UTC 2016
    - 828 bytes
    - Viewed (0)
  8. test/fixedbugs/bug266.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f() int {
    	defer func() {
    		recover()
    	}()
    	panic("oops")
    }
    
    func g() int {	
    	return 12345
    }
    
    func main() {
    	g()	// leave 12345 on stack
    	x := f()
    	if x != 0 {
    		panic(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 363 bytes
    - Viewed (0)
  9. test/ken/shift.go

    	 */
    	pass = "con";	// constant part
    
    	testi( int(1234) <<    0, 0,0,0);
    	testi( int(1234) >>    0, 0,0,1);
    	testi( int(1234) <<    5, 0,1,0);
    	testi( int(1234) >>    5, 0,1,1);
    
    	testi(int(-1234) <<    0, 1,0,0);
    	testi(int(-1234) >>    0, 1,0,1);
    	testi(int(-1234) <<    5, 1,1,0);
    	testi(int(-1234) >>    5, 1,1,1);
    
    	testu(uint(5678) <<    0, 2,0,0);
    	testu(uint(5678) >>    0, 2,0,1);
    	testu(uint(5678) <<    5, 2,1,0);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  10. src/net/listen_test.go

    	{"udp", &UDPAddr{IP: ParseIP("ff01::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff02::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff04::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff05::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff08::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff0e::114"), Port: 12345}},
    
    	{"udp6", &UDPAddr{IP: ParseIP("ff01::114"), Port: 12345}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top