Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,249 for whatev (0.13 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/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)
  7. src/internal/trace/trace_test.go

    				case trace.EventLog:
    					log := ev.Log()
    					match = log.Task == wantEv.task && log.Category == wantEv.args[0] && log.Message == wantEv.args[1]
    				}
    				if match {
    					want[i] = want[len(want)-1]
    					want = want[:len(want)-1]
    					break
    				}
    			}
    		}
    		if len(want) != 0 {
    			for _, ev := range want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_illumos.go

    	iovecs := bytes2iovec(iovs)
    	n, err = preadv(fd, iovecs, off)
    	return n, err
    }
    
    //sys	writev(fd int, iovs []Iovec) (n int, err error)
    
    func Writev(fd int, iovs [][]byte) (n int, err error) {
    	iovecs := bytes2iovec(iovs)
    	n, err = writev(fd, iovecs)
    	return n, err
    }
    
    //sys	pwritev(fd int, iovs []Iovec, off int64) (n int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            where:
            input                    | className                 | methodName            | match
            ["FooTest"]              | "FooTest"                 | "whatever"            | true
            ["FooTest"]              | "fooTest"                 | "whatever"            | false
    
            ["com.foo.FooTest"]      | "com.foo.FooTest"         | "x"                   | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_amd64.go

    		// CRC(I, ABC) = CRC(CRC(I, AB), O) xor CRC(0, C)
    		crc = castagnoliShift(castagnoliSSE42TableK1, crcAB) ^ crcC
    		p = p[castagnoliK1*3:]
    	}
    
    	// Use the simple implementation for what's left.
    	crc = castagnoliSSE42(crc, p)
    	return ^crc
    }
    
    func archAvailableIEEE() bool {
    	return cpu.X86.HasPCLMULQDQ && cpu.X86.HasSSE41
    }
    
    var archIeeeTable8 *slicing8Table
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top