Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,262 for wood (0.06 sec)

  1. src/compress/flate/dict_decoder_test.go

    func TestDictDecoder(t *testing.T) {
    	const (
    		abc  = "ABC\n"
    		fox  = "The quick brown fox jumped over the lazy dog!\n"
    		poem = "The Road Not Taken\nRobert Frost\n" +
    			"\n" +
    			"Two roads diverged in a yellow wood,\n" +
    			"And sorry I could not travel both\n" +
    			"And be one traveler, long I stood\n" +
    			"And looked down one as far as I could\n" +
    			"To where it bent in the undergrowth;\n" +
    			"\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 28 10:36:01 UTC 2016
    - 4.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    They all made a rush at Alice the moment she appeared; but she
    ran off as hard as she could, and soon found herself safe in a
    thick wood.
    
      `The first thing I've got to do,' said Alice to herself, as she
    wandered about in the wood, `is to grow to my right size again;
    and the second thing is to find my way into that lovely garden.
    I think that will be the best plan.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    They all made a rush at Alice the moment she appeared; but she
    ran off as hard as she could, and soon found herself safe in a
    thick wood.
    
      `The first thing I've got to do,' said Alice to herself, as she
    wandered about in the wood, `is to grow to my right size again;
    and the second thing is to find my way into that lovely garden.
    I think that will be the best plan.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"womans_hat":                           "\U0001f452",
    	"women_wrestling":                      "\U0001f93c\u200d\u2640\ufe0f",
    	"womens":                               "\U0001f6ba",
    	"wood":                                 "\U0001fab5",
    	"woozy_face":                           "\U0001f974",
    	"world_map":                            "\U0001f5fa\ufe0f",
    	"worm":                                 "\U0001fab1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. internal/s3select/select_test.go

    3`,
    		},
    		{
    			name:  "Select reserved word column",
    			query: `select "CAST"  from s3object`,
    			wantResult: `true
    false`,
    		},
    		{
    			name:  "Select reserved word column with table alias",
    			query: `select S3Object."CAST" from s3object`,
    			wantResult: `true
    false`,
    		},
    		{
    			name:  "Select reserved word column with unused table alias",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_v1.0.0-good.txt

    -- .mod --
    module example.com/retract
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-good"}
    
    -- retract.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 120 bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Coal than red hot Wood?
    
    _Qu._ 10. Is not Flame a Vapour, Fume or Exhalation heated red hot, that
    is, so hot as to shine? For Bodies do not flame without emitting a
    copious Fume, and this Fume burns in the Flame. The _Ignis Fatuus_ is a
    Vapour shining without heat, and is there not the same difference
    between this Vapour and Flame, as between rotten Wood shining without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    what else is a red hot Iron than Fire? And what else is a burning Coal than red hot Wood? _Qu._ 10. Is not Flame a Vapour, Fume or Exhalation heated red hot, that is, so hot as to shine? For Bodies do not flame without emitting a copious Fume, and this Fume burns in the Flame. The _Ignis Fatuus_ is a Vapour shining without heat, and is there not the same difference between this Vapour and Flame, as between rotten Wood shining without heat and burning Coals of Fire? In distilling hot Spirits, if the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. src/math/big/natdiv.go

    }
    
    // divWVW overwrites z with ⌊x/y⌋, returning the remainder r.
    // The caller must ensure that len(z) = len(x).
    func divWVW(z []Word, xn Word, x []Word, y Word) (r Word) {
    	r = xn
    	if len(x) == 1 {
    		qq, rr := bits.Div(uint(r), uint(x[0]), uint(y))
    		z[0] = Word(qq)
    		return Word(rr)
    	}
    	rec := reciprocalWord(y)
    	for i := len(z) - 1; i >= 0; i-- {
    		z[i], r = divWW(r, x[i], y, rec)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. src/math/big/arith.go

    // z1<<_W + z0 = x*y
    func mulWW(x, y Word) (z1, z0 Word) {
    	hi, lo := bits.Mul(uint(x), uint(y))
    	return Word(hi), Word(lo)
    }
    
    // z1<<_W + z0 = x*y + c
    func mulAddWWW_g(x, y, c Word) (z1, z0 Word) {
    	hi, lo := bits.Mul(uint(x), uint(y))
    	var cc uint
    	lo, cc = bits.Add(lo, uint(c), 0)
    	return Word(hi + cc), Word(lo)
    }
    
    // nlz returns the number of leading zeros in x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top