Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for grey (0.7 sec)

  1. src/bytes/buffer_test.go

    			cap0 = b.Cap()
    		}
    	}
    	cap1 := b.Cap()
    	// (*Buffer).grow allows for 2x capacity slop before sliding,
    	// so set our error threshold at 3x.
    	if cap1 > cap0*3 {
    		t.Errorf("buffer cap = %d; too big (grew from %d)", cap1, cap0)
    	}
    }
    
    func BenchmarkWriteByte(b *testing.B) {
    	const n = 4 << 10
    	b.SetBytes(n)
    	buf := NewBuffer(make([]byte, n))
    	for i := 0; i < b.N; i++ {
    		buf.Reset()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IPPROTO_GGP = 3
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_GGP ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_GRE = 47
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_GRE ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_HOPOPTS = 0
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_HOPOPTS ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMP = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg image, method (*Gray) At(int, int) color.Color
    pkg image, method (*Gray) Bounds() Rectangle
    pkg image, method (*Gray) ColorModel() color.Model
    pkg image, method (*Gray) Opaque() bool
    pkg image, method (*Gray) PixOffset(int, int) int
    pkg image, method (*Gray) Set(int, int, color.Color)
    pkg image, method (*Gray) SetGray(int, int, color.Gray)
    pkg image, method (*Gray) SubImage(Rectangle) Image
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const IPPROTO_GMTP = 100
    pkg syscall (darwin-arm64), const IPPROTO_GMTP ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_GRE = 47
    pkg syscall (darwin-arm64), const IPPROTO_GRE ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_HELLO = 63
    pkg syscall (darwin-arm64), const IPPROTO_HELLO ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_HMP = 20
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IPPROTO_GMTP = 100
    pkg syscall (freebsd-arm64), const IPPROTO_GMTP ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_GRE = 47
    pkg syscall (freebsd-arm64), const IPPROTO_GRE ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_HELLO = 63
    pkg syscall (freebsd-arm64), const IPPROTO_HELLO ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_HMP = 20
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  6. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IPPROTO_GMTP = 100 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_GMTP ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_GRE = 47 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_GRE ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_HELLO = 63 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_HELLO ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (darwin-386), const IPPROTO_FRAGMENT = 44
    pkg syscall (darwin-386), const IPPROTO_GGP = 3
    pkg syscall (darwin-386), const IPPROTO_GMTP = 100
    pkg syscall (darwin-386), const IPPROTO_GRE = 47
    pkg syscall (darwin-386), const IPPROTO_HELLO = 63
    pkg syscall (darwin-386), const IPPROTO_HMP = 20
    pkg syscall (darwin-386), const IPPROTO_HOPOPTS = 0
    pkg syscall (darwin-386), const IPPROTO_ICMP = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (1)
  8. src/buildall.bash

    	../bin/go tool dist list | sed -e 's|/|-|' |
    		grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling
    	echo linux-arm-arm5
    }
    
    selectedtargets() {
    	gettargets | grep -E "$pattern"
    }
    
    # put linux first in the target list to get all the architectures up front.
    linux_targets() {
    	selectedtargets | grep 'linux' | sort
    }
    
    non_linux_targets() {
    	selectedtargets | grep -v 'linux' | sort
    }
    
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 23 17:45:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  9. api/go1.4.txt

    pkg image, method (*Alpha) AlphaAt(int, int) color.Alpha
    pkg image, method (*Alpha16) Alpha16At(int, int) color.Alpha16
    pkg image, method (*Gray) GrayAt(int, int) color.Gray
    pkg image, method (*Gray16) Gray16At(int, int) color.Gray16
    pkg image, method (*NRGBA) NRGBAAt(int, int) color.NRGBA
    pkg image, method (*NRGBA64) NRGBA64At(int, int) color.NRGBA64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  10. api/go1.17.txt

    pkg image, method (*Alpha16) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*CMYK) RGBA64At(int, int) color.RGBA64
    pkg image, method (*CMYK) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*Gray) RGBA64At(int, int) color.RGBA64
    pkg image, method (*Gray) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*Gray16) RGBA64At(int, int) color.RGBA64
    pkg image, method (*Gray16) SetRGBA64(int, int, color.RGBA64)
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top