Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 806 for sounds (0.52 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I thought you did,' said the Mouse.  `--I proceed.  "Edwin and
    Morcar, the earls of Mercia and Northumbria, declared for him:
    and even Stigand, the patriotic archbishop of Canterbury, found
    it advisable--"'
    
      `Found WHAT?' said the Duck.
    
      `Found IT,' the Mouse replied rather crossly:  `of course you
    know what "it" means.'
    
      `I know what "it" means well enough, when I find a thing,' said
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. src/crypto/aes/block.go

    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    	s1 ^= xk[1]
    	s2 ^= xk[2]
    	s3 ^= xk[3]
    
    	// Middle rounds shuffle using tables.
    	// Number of rounds is set by length of expanded key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/testdata/Isaac.Newton-Opticks.txt

    diminish the Diameters of the Circles. Now these would be diminished if
    the Sun's Diameter to which they answer could be made less than it is,
    or (which comes to the same Purpose) if without Doors, at a great
    distance from the Prism towards the Sun, some opake Body were placed,
    with a round hole in the middle of it, to intercept all the Sun's Light,
    excepting so much as coming from the middle of his Body could pass
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    diminish the Mixture of the Rays, we are to diminish the Diameters of the Circles. Now these would be diminished if the Sun's Diameter to which they answer could be made less than it is, or (which comes to the same Purpose) if without Doors, at a great distance from the Prism towards the Sun, some opake Body were placed, with a round hole in the middle of it, to intercept all the Sun's Light, excepting so much as coming from the middle of his Body could pass through that Hole to the Prism. For so 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)
  5. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ParameterizedTypeWrapper.java

                    } else {
                        bound2 = type2;
                    }
                    return bound2.isAssignableFrom(bound1);
                } else {
                    // type 1 = ? extends T
                    bound1 = wildcardType1.getUpperBound();
                    TypeWrapper bound2;
                    if (type2 instanceof WildcardWrapper) {
                        bound2 = ((WildcardWrapper) type2).getUpperBound();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_libinit.c

    // called by rt0_go in the runtime package.
    void _cgo_set_stacklo(G *g, uintptr *pbounds)
    {
    	uintptr bounds[2];
    
    	// pbounds can be passed in by the caller; see gcc_linux_amd64.c.
    	if (pbounds == NULL) {
    		pbounds = &bounds[0];
    	}
    
    	x_cgo_getstackbound(pbounds);
    
    	g->stacklo = *pbounds;
    
    	// Sanity check the results now, rather than getting a
    	// morestack on g0 crash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/internal/archive/archive_test.go

    		}
    		if e.Name == "go1.o" {
    			found1 = true
    		}
    		if e.Name == "go2.o" {
    			found2 = true
    		}
    	}
    	if !found1 {
    		t.Errorf(`object "go1.o" not found`)
    	}
    	if !found2 {
    		t.Errorf(`object "go2.o" not found`)
    	}
    }
    
    func TestParseCGOArchive(t *testing.T) {
    	testenv.MustHaveCGO(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/conds.go

    // license that can be found in the LICENSE file.
    
    package script
    
    import (
    	"cmd/go/internal/imports"
    	"fmt"
    	"os"
    	"runtime"
    	"sync"
    )
    
    // DefaultConds returns a set of broadly useful script conditions.
    //
    // Run the 'help' command within a script engine to view a list of the available
    // conditions.
    func DefaultConds() map[string]Cond {
    	conds := make(map[string]Cond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		s.precompDone = true
    	}
    
    	// A condition of len(src) > 0 would be sufficient, but this also
    	// acts as a bounds check elimination hint.
    	for len(src) >= 64 && len(dst) >= 64 {
    		// The remainder of the first column round.
    		fcr0, fcr4, fcr8, fcr12 := quarterRound(c0, c4, c8, s.counter)
    
    		// The second diagonal round.
    		x0, x5, x10, x15 := quarterRound(fcr0, s.p5, s.p10, s.p15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  10. src/image/gif/writer_test.go

    			t.Error(tc.filename, err)
    			continue
    		}
    		m1, err := Decode(&buf)
    		if err != nil {
    			t.Error(tc.filename, err)
    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		avgDelta := averageDelta(m0, m1)
    		if avgDelta > tc.tolerance {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top