Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for xxxxxxx (0.37 sec)

  1. src/go/printer/testdata/declarations.golden

    	aMuchLongerName	= 3
    )
    
    var (
    	short		= X{}
    	aMuchLongerName	= X{}
    
    	x1	= X{}	// foo
    	x2	= X{}	// foo
    )
    
    func _() {
    	type (
    		xxxxxx	int
    		x	float
    		xxx	string
    		xxxxx	[]x
    		xx	struct{}
    		xxxxxxx	struct {
    			_, _	int
    			_	float
    		}
    		xxxx	chan<- string
    	)
    }
    
    // alignment of "=" in consecutive lines (extended example from issue 1414)
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    )
    
    var (
    	short = X{
    	}
    	aMuchLongerName = X{}
    
    	x1 = X{} // foo
    	x2 = X{
    	} // foo
    )
    
    func _() {
    	type (
    		xxxxxx int
    		x float
    		xxx string
    		xxxxx []x
    		xx struct{}
    		xxxxxxx struct {
    			_, _ int
    			_ float
    		}
    		xxxx chan<- string
    	)
    }
    
    // alignment of "=" in consecutive lines (extended example from issue 1414)
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. src/regexp/all_test.go

    	{"[a-c]+$", "x", "", ""},
    	{"^[a-c]+$", "x", "", ""},
    
    	// Other cases.
    	{"abc", "def", "abcdefg", "defdefg"},
    	{"bc", "BC", "abcbcdcdedef", "aBCBCdcdedef"},
    	{"abc", "", "abcdabc", "d"},
    	{"x", "xXx", "xxxXxxx", "xXxxXxxXxXxXxxXxxXx"},
    	{"abc", "d", "", ""},
    	{"abc", "d", "abc", "d"},
    	{".+", "x", "abc", "x"},
    	{"[a-c]*", "x", "def", "xdxexfx"},
    	{"[a-c]+", "x", "abcbcdcdedef", "xdxdedef"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. cmd/erasure-encode_test.go

    	b.Run(" X0000000|00000000 ", func(b *testing.B) { benchmarkErasureEncode(8, 8, 1, 0, size, b) })
    	b.Run(" 00000000|XXXXXXX0 ", func(b *testing.B) { benchmarkErasureEncode(8, 8, 0, 7, size, b) })
    	b.Run(" XXXXXXX0|00000000 ", func(b *testing.B) { benchmarkErasureEncode(8, 8, 7, 0, size, b) })
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. cmd/erasure-decode_test.go

    	b.Run(" X0000000|X0000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 1, 1, size, b) })
    	b.Run(" 00000000|XXXXXXXX ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 0, 8, size, b) })
    	b.Run(" XXXX0000|XXXX0000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 4, 4, size, b) })
    	b.Run(" XXXXXXXX|00000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 8, 0, size, b) })
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    	// All uint64s must be nonzero, or we would have aborted above.
    outer:
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    
    		// Look inside this uint64. We have a pattern like
    		// 000000 1xxxxx1 000000
    		// We need to look inside the 1xxxxx1 for any contiguous
    		// region of zeros.
    
    		// We already know the trailing zeros are no larger than max. Remove them.
    		x >>= sys.TrailingZeros64(x) & 63
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/strings/replace_test.go

    		"X", "Y",
    		"Y", "Z",
    	)
    	testCases = append(testCases,
    		testCase{gen1, "fooaaabar", "foo3[aaa]b1[a]r"},
    		testCase{gen1, "long, longerst, longer", "short, most long, medium"},
    		testCase{gen1, "xxxxx", "xxxxX"},
    		testCase{gen1, "XiX", "YiY"},
    		testCase{gen1, "", ""},
    	)
    
    	// gen2 has multiple old strings with no pairwise common prefix.
    	gen2 := NewReplacer(
    		"roses", "red",
    		"violets", "blue",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              ALMOST_TOO_LONG + ".c");
    
      private static final ImmutableSet<String> RS =
          ImmutableSet.of(
              "com",
              "co.uk",
              "foo.bd",
              "xxxxxx.bd",
              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. test/codegen/comparisons.go

    	return s == "xxxx"
    }
    
    func CompareString3(s string) bool {
    	// amd64:`CMPQ\t\(.*\), [A-Z]`
    	// arm64:-`CMPW\t`
    	// ppc64x:-`CMPW\t`
    	// s390x:-`CMPW\t`
    	return s == "xxxxxxxx"
    }
    
    // Check that arrays compare use 2/4/8 byte compares
    
    func CompareArray1(a, b [2]byte) bool {
    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// arm64:-`MOVBU\t`
    	// ppc64le:-`MOVBZ\t`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/net/net_windows_test.go

    	}
    	// getmac output looks like:
    	//
    	//Connection Name:  Local Area Connection
    	//Network Adapter:  Intel Gigabit Network Connection
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   Media disconnected
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top