Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,376 for whatev (0.21 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    // {"Flags":1,"ParamFlags":[32],"ResultFlags":null}
    // <endcallsites>
    // <endfuncpreamble>
    func T_switches1(x int) {
    	switch x {
    	case 1:
    		panic("one")
    	case 2:
    		panic("two")
    	}
    	panic("whatev")
    }
    
    // funcflags.go T_switches1a 92 0 1
    // ParamFlags
    //   0 ParamFeedsIfOrSwitch
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[32],"ResultFlags":null}
    // <endcallsites>
    // <endfuncpreamble>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/internal/poll/writev.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package poll
    
    import (
    	"io"
    	"runtime"
    	"syscall"
    )
    
    // Writev wraps the writev system call.
    func (fd *FD) Writev(v *[][]byte) (int64, error) {
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    	if err := fd.pd.prepareWrite(fd.isFile); err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. gradle-white-primary.png

    gradle-white-primary.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:43:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. docs/en/docs/img/logo-margin/logo-white-bg.png

    logo-white-bg.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. docs/en/docs/img/icon-white.svg

    icon-white.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    in a clear Sun-shine Day, that when he was sunk many Fathoms deep into the Water the upper part of his Hand on which the Sun shone directly through the Water and through a small Glass Window in the Vessel appeared of a red Colour, like that of a Damask Rose, and the Water below and the under part of his Hand illuminated by Light reflected from the Water below look'd green. For thence it may be gather'd, that the Sea-Water reflects back the violet and blue-making Rays most easily, and lets the red-making...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/net/http/sniff.go

    // as defined in https://mimesniff.spec.whatwg.org/#terminology.
    func isWS(b byte) bool {
    	switch b {
    	case '\t', '\n', '\x0c', '\r', ' ':
    		return true
    	}
    	return false
    }
    
    // isTT reports whether the provided byte is a tag-terminating byte (0xTT)
    // as defined in https://mimesniff.spec.whatwg.org/#terminology.
    func isTT(b byte) bool {
    	switch b {
    	case ' ', '>':
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. src/testdata/Isaac.Newton-Opticks.txt

    Sun-shine Day, that when he was sunk many Fathoms deep into the Water
    the upper part of his Hand on which the Sun shone directly through the
    Water and through a small Glass Window in the Vessel appeared of a red
    Colour, like that of a Damask Rose, and the Water below and the under
    part of his Hand illuminated by Light reflected from the Water below
    look'd green. For thence it may be gather'd, that the Sea-Water reflects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  9. src/main/webapp/images/glyphicons-halflings-white.png

    glyphicons-halflings-white.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Sep 14 06:00:28 UTC 2013
    - 8.6K bytes
    - Viewed (0)
  10. src/go/printer/testdata/slow.golden

    type Baz struct {
    	entries		map[int]interface{}
    	whatever	string
    }
    
    func newFoo() *Foo {
    	return &Foo{bar: &Bar{baz: &Baz{
    		entries: map[int]interface{}{
    			42:	&Foo{},
    			21:	&Bar{},
    			11:	&Baz{whatever: "it's just a test"}}}},
    		bang: &Bar{foo: []*Foo{
    			&Foo{bar: &Bar{baz: &Baz{
    				entries: map[int]interface{}{
    					43:	&Foo{},
    					22:	&Bar{},
    					13:	&Baz{whatever: "this is nuts"}}}},
    				bang: &Bar{foo: []*Foo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
Back to top