Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for min (0.22 sec)

  1. src/builtin/builtin.go

    // max will return NaN.
    func max[T cmp.Ordered](x T, y ...T) T
    
    // The min built-in function returns the smallest value of a fixed number of
    // arguments of [cmp.Ordered] types. There must be at least one argument.
    // If T is a floating-point type and any of the arguments are NaNs,
    // min will return NaN.
    func min[T cmp.Ordered](x T, y ...T) T
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    		var nf int // Bytes written in fragment
    		dataStart, dataEnd := sw.sp[0].Offset, sw.sp[0].endOffset()
    		if sw.pos < dataStart { // In a hole fragment
    			bf := b[:min(int64(len(b)), dataStart-sw.pos)]
    			nf, err = zeroWriter{}.Write(bf)
    		} else { // In a data fragment
    			bf := b[:min(int64(len(b)), dataEnd-sw.pos)]
    			nf, err = sw.fw.Write(bf)
    		}
    		b = b[nf:]
    		sw.pos += int64(nf)
    		if sw.pos >= dataEnd && len(sw.sp) > 1 {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERMIN = 46
    pkg syscall (netbsd-arm64-cgo), const ETHERMIN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN = 64
    pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERMTU = 1500
    pkg syscall (netbsd-arm64-cgo), const ETHERMTU ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERMTU_JUMBO = 9000
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    var s []string
    _ = min(s...)               // invalid: slice arguments are not permitted
    t := max("", "foo", "bar")  // t == "foo" (string kind)
    </pre>
    
    <p>
    For numeric arguments, assuming all NaNs are equal, <code>min</code> and <code>max</code> are
    commutative and associative:
    </p>
    
    <pre>
    min(x, y)    == min(y, x)
    min(x, y, z) == min(min(x, y), z) == min(x, min(y, z))
    </pre>
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    }
    </pre>
    
    <p>
    A function declaration may omit the body. Such a declaration provides the
    signature for a function implemented outside Go, such as an assembly routine.
    </p>
    
    <pre>
    func min(x int, y int) int {
    	if x &lt; y {
    		return x
    	}
    	return y
    }
    
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/archive/zip/zip_test.go

    		part := &r.buf[i]
    		return part.off+part.n > off
    	})
    	parts := r.buf[skipParts:]
    	if len(parts) > 0 {
    		skipBytes := off - parts[0].off
    		for _, part := range parts {
    			repeat := int(min(part.n-skipBytes, int64(len(p)-n)))
    			memset(p[n:n+repeat], part.b)
    			n += repeat
    			if n == len(p) {
    				return
    			}
    			skipBytes = 0
    		}
    	}
    	if n != len(p) {
    		err = io.ErrUnexpectedEOF
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 242
    pkg syscall (freebsd-386), const DLT_MATCHING_MAX ideal-int
    pkg syscall (freebsd-386), const DLT_MATCHING_MIN = 104
    pkg syscall (freebsd-386), const DLT_MATCHING_MIN ideal-int
    pkg syscall (freebsd-386), const DLT_MFR = 182
    pkg syscall (freebsd-386), const DLT_MOST = 211
    pkg syscall (freebsd-386), const DLT_MPLS = 219
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/riscv64.s

    	CTZ	X24, X25				// 931c1c60
    	CTZW	X25, X26				// 1b9d1c60
    	MAX	X26, X28, X29				// b36eae0b
    	MAX	X26, X28				// 336eae0b
    	MAXU	X28, X29, X30				// 33ffce0b
    	MAXU	X28, X29				// b3fece0b
    	MIN	X29, X30, X5				// b342df0b
    	MIN	X29, X30				// 334fdf0b
    	MINU	X30, X5, X6				// 33d3e20b
    	MINU	X30, X5					// b3d2e20b
    	ORN	X6, X7, X8				// 33e46340
    	ORN	X6, X7					// b3e36340
    	SEXTB	X16, X17				// 93184860
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  9. api/go1.21.txt

    pkg slices, func Max[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091
    pkg slices, func MaxFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091
    pkg slices, func Min[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091
    pkg slices, func MinFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const DLT_LOOP ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_LTALK ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MIN ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_MFR ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_MOST ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_MPLS ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top