Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,398 for Seven (0.09 sec)

  1. src/index/suffixarray/sais2.go

    	// That is, i+1 is the position of the start of an LMS-substring.
    	// These could be hoisted out into a function with a callback,
    	// but at a significant speed cost. Instead, we just write these
    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2075          ; mapped                 ; 0035          # 1.1  SUPERSCRIPT FIVE
    2076          ; mapped                 ; 0036          # 1.1  SUPERSCRIPT SIX
    2077          ; mapped                 ; 0037          # 1.1  SUPERSCRIPT SEVEN
    2078          ; mapped                 ; 0038          # 1.1  SUPERSCRIPT EIGHT
    2079          ; mapped                 ; 0039          # 1.1  SUPERSCRIPT NINE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. src/compress/gzip/gunzip_test.go

    			0x94, 0xca, 0x05, 0x00, 0x76, 0xb0, 0x3b, 0xeb,
    			0x24, 0x00, 0x00, 0x00,
    		},
    		nil,
    	},
    	{ // has dynamic huffman blocks
    		"gettysburg",
    		"gettysburg",
    		"  Four score and seven years ago our fathers brought forth on\n" +
    			"this continent, a new nation, conceived in Liberty, and dedicated\n" +
    			"to the proposition that all men are created equal.\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  4. src/regexp/exec_test.go

    // TestProgramTooLongForBacktrack tests that a regex which is too long
    // for the backtracker still executes properly.
    func TestProgramTooLongForBacktrack(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer three = 3;
      public static final Integer four = 4;
      public static final Integer five = 5;
      public static final Integer six = 6;
      public static final Integer seven = 7;
      public static final Integer eight = 8;
      public static final Integer nine = 9;
      public static final Integer m1 = -1;
      public static final Integer m2 = -2;
      public static final Integer m3 = -3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer three = 3;
      public static final Integer four = 4;
      public static final Integer five = 5;
      public static final Integer six = 6;
      public static final Integer seven = 7;
      public static final Integer eight = 8;
      public static final Integer nine = 9;
      public static final Integer m1 = -1;
      public static final Integer m2 = -2;
      public static final Integer m3 = -3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I couldn't help it,' said Five, in a sulky tone; `Seven jogged
    my elbow.'
    
      On which Seven looked up and said, `That's right, Five!  Always
    lay the blame on others!'
    
      `YOU'D better not talk!' said Five.  `I heard the Queen say only
    yesterday you deserved to be beheaded!'
    
      `What for?' said the one who had spoken first.
    
      `That's none of YOUR business, Two!' said Seven.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    	{"dot slice", "<{{.}}>", "<[-1 -2 -3]>", []int{-1, -2, -3}, true},
    	{"dot map", "<{{.}}>", "<map[two:22]>", map[string]int{"two": 22}, true},
    	{"dot struct", "<{{.}}>", "<{7 seven}>", struct {
    		a int
    		b string
    	}{7, "seven"}, true},
    
    	// Variables.
    	{"$ int", "{{$}}", "123", 123, true},
    	{"$.I", "{{$.I}}", "17", tVal, true},
    	{"$.U.V", "{{$.U.V}}", "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    	{"dot slice", "<{{.}}>", "&lt;[-1 -2 -3]>", []int{-1, -2, -3}, true},
    	{"dot map", "<{{.}}>", "&lt;map[two:22]>", map[string]int{"two": 22}, true},
    	{"dot struct", "<{{.}}>", "&lt;{7 seven}>", struct {
    		a int
    		b string
    	}{7, "seven"}, true},
    
    	// Variables.
    	{"$ int", "{{$}}", "123", 123, true},
    	{"$.I", "{{$.I}}", "17", tVal, true},
    	{"$.U.V", "{{$.U.V}}", "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/encoding/gob/encoder_test.go

    }
    
    var singleTests = []SingleTest{
    	{17, &testInt, ""},
    	{float32(17.5), &testFloat32, ""},
    	{"bike shed", &testString, ""},
    	{[]string{"bike", "shed", "paint", "color"}, &testSlice, ""},
    	{map[string]int{"seven": 7, "twelve": 12}, &testMap, ""},
    	{[7]int{4, 55, 0, 0, 0, 0, 0}, &testArray, ""}, // case that once triggered a bug
    	{[7]int{4, 55, 1, 44, 22, 66, 1234}, &testArray, ""},
    
    	// Decode errors
    	{172, &testFloat32, "type"},
    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