Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Younis (0.19 sec)

  1. api/go1.5.txt

    pkg image, const YCbCrSubsampleRatio411 = 4
    pkg image, const YCbCrSubsampleRatio411 YCbCrSubsampleRatio
    pkg image, func NewCMYK(Rectangle) *CMYK
    pkg image, method (*CMYK) At(int, int) color.Color
    pkg image, method (*CMYK) Bounds() Rectangle
    pkg image, method (*CMYK) CMYKAt(int, int) color.CMYK
    pkg image, method (*CMYK) ColorModel() color.Model
    pkg image, method (*CMYK) Opaque() bool
    pkg image, method (*CMYK) PixOffset(int, int) int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    	}
    	b1.Flush()
    	if w1 != 3 {
    		t.Fatalf("flush 1200 + 1389 'x's: got %d writes, want 3", w1)
    	}
    }
    
    // A writeCountingDiscard is like io.Discard and counts the number of times
    // Write is called on it.
    type writeCountingDiscard int
    
    func (w *writeCountingDiscard) Write(p []byte) (int, error) {
    	*w++
    	return len(p), nil
    }
    
    type negativeReader int
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  4. lib/time/zoneinfo.zip

    Africa/Lusaka Africa/Malabo Africa/Maputo Africa/Maseru Africa/Mbabane Africa/Mogadishu Africa/Monrovia Africa/Nairobi Africa/Ndjamena Africa/Niamey Africa/Nouakchott Africa/Ouagadougou Africa/Porto-Novo Africa/Sao_Tome Africa/Timbuktu Africa/Tripoli Africa/Tunis Africa/Windhoek America/Adak America/Anchorage America/Anguilla America/Antigua America/Araguaina America/Argentina/Buenos_Aires America/Argentina/Catamarca America/Argentina/ComodRivadavia America/Argentina/Cordoba America/Argentina/Jujuy America/Argentina/La_Rioja...
    ZIP Archive
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  5. api/go1.6.txt

    pkg image, func NewNYCbCrA(Rectangle, YCbCrSubsampleRatio) *NYCbCrA
    pkg image, method (*NYCbCrA) AOffset(int, int) int
    pkg image, method (*NYCbCrA) At(int, int) color.Color
    pkg image, method (*NYCbCrA) Bounds() Rectangle
    pkg image, method (*NYCbCrA) COffset(int, int) int
    pkg image, method (*NYCbCrA) ColorModel() color.Model
    pkg image, method (*NYCbCrA) NYCbCrAAt(int, int) color.NYCbCrA
    pkg image, method (*NYCbCrA) Opaque() bool
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    	Uid   int    // User ID of owner
    	Gid   int    // Group ID of owner
    	Uname string // User name of owner
    	Gname string // Group name of owner
    
    	// If the Format is unspecified, then Writer.WriteHeader rounds ModTime
    	// to the nearest second and ignores the AccessTime and ChangeTime fields.
    	//
    	// To use AccessTime or ChangeTime, specify the Format as PAX or GNU.
    	// To use sub-second resolution, specify the Format as PAX.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  7. src/cmd/cgo/gcc.go

    	case *dwarf.TypedefType:
    		// Record typedef for printing.
    		if dt.Name == "_GoString_" {
    			// Special C name for Go string type.
    			// Knows string layout used by compilers: pointer plus length,
    			// which rounds up to 2 pointers after alignment.
    			t.Go = c.string
    			t.Size = c.ptrSize * 2
    			t.Align = c.ptrSize
    			break
    		}
    		if dt.Name == "_GoBytes_" {
    			// Special C name for Go []byte type.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg image, method (*RGBA64) ColorModel() color.Model
    pkg image, method (*RGBA64) Opaque() bool
    pkg image, method (*RGBA64) PixOffset(int, int) int
    pkg image, method (*RGBA64) Set(int, int, color.Color)
    pkg image, method (*RGBA64) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*RGBA64) SubImage(Rectangle) Image
    pkg image, method (*Uniform) At(int, int) color.Color
    pkg image, method (*Uniform) Bounds() Rectangle
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.16.txt

    pkg runtime/metrics, type Description struct, Name string
    pkg runtime/metrics, type Float64Histogram struct
    pkg runtime/metrics, type Float64Histogram struct, Buckets []float64
    pkg runtime/metrics, type Float64Histogram struct, Counts []uint64
    pkg runtime/metrics, type Sample struct
    pkg runtime/metrics, type Sample struct, Name string
    pkg runtime/metrics, type Sample struct, Value Value
    pkg runtime/metrics, type Value struct
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. src/bytes/bytes.go

    	na := 0
    	for len(s) > 0 {
    		if na+1 >= n {
    			a[na] = s
    			na++
    			break
    		}
    		_, size = utf8.DecodeRune(s)
    		a[na] = s[0:size:size]
    		s = s[size:]
    		na++
    	}
    	return a[0:na]
    }
    
    // Count counts the number of non-overlapping instances of sep in s.
    // If sep is an empty slice, Count returns 1 + the number of UTF-8-encoded code points in s.
    func Count(s, sep []byte) int {
    	// special case
    	if len(sep) == 0 {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
Back to top