Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Min (4.32 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/unveil_openbsd.go

    // on the running OpenBSD version.
    func supportsUnveil() error {
    	maj, min, err := majmin()
    	if err != nil {
    		return err
    	}
    
    	// unveil is not available before 6.4
    	if maj < 6 || (maj == 6 && min <= 3) {
    		return fmt.Errorf("cannot call Unveil on OpenBSD %d.%d", maj, min)
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/.eslintrc.json

        "eslint:recommended",
        "plugin:@typescript-eslint/recommended",
        "prettier"
      ],
      "parser": "@typescript-eslint/parser",
      "plugins": ["@typescript-eslint"],
      "root": true,
      "ignorePatterns": ["*.min.js"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 237 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/.stylelintrc.json

        "declaration-property-value-allowed-list": {
          "/color/": ["/^var\\(--/", "transparent"]
        },
        "unit-disallowed-list": ["px"],
        "selector-class-pattern": "^[a-zA-Z\\-]+$"
      },
      "ignoreFiles": ["**/*.min.css"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 287 bytes
    - Viewed (0)
  4. src/crypto/subtle/xor.go

    // license that can be found in the LICENSE file.
    
    package subtle
    
    // XORBytes sets dst[i] = x[i] ^ y[i] for all i < n = min(len(x), len(y)),
    // returning n, the number of bytes written to dst.
    // If dst does not have length at least n,
    // XORBytes panics without writing anything to dst.
    func XORBytes(dst, x, y []byte) int {
    	n := min(len(x), len(y))
    	if n == 0 {
    		return 0
    	}
    	if n > len(dst) {
    		panic("subtle.XORBytes: dst too short")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:50:40 UTC 2024
    - 618 bytes
    - Viewed (0)
  5. misc/ios/clangwrap.sh

    export IPHONEOS_DEPLOYMENT_TARGET=5.1
    # cmd/cgo doesn't support llvm-gcc-4.2, so we have to use clang.
    CLANG=`xcrun --sdk $SDK --find clang`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 16:48:07 UTC 2021
    - 626 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    func inRange(typ string, val *big.Int) bool {
    	min, max := &big.Int{}, &big.Int{}
    	switch typ {
    	case "uint64":
    		max = max.SetUint64(maxU64)
    	case "uint32":
    		max = max.SetUint64(maxU32)
    	case "uint16":
    		max = max.SetUint64(maxU16)
    	case "uint8":
    		max = max.SetUint64(maxU8)
    	case "int64":
    		min = min.SetInt64(minI64)
    		max = max.SetInt64(maxI64)
    	case "int32":
    		min = min.SetInt64(minI32)
    		max = max.SetInt64(maxI32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. src/container/heap/example_intheap_test.go

    // license that can be found in the LICENSE file.
    
    // This example demonstrates an integer heap built using the heap interface.
    package heap_test
    
    import (
    	"container/heap"
    	"fmt"
    )
    
    // An IntHeap is a min-heap of ints.
    type IntHeap []int
    
    func (h IntHeap) Len() int           { return len(h) }
    func (h IntHeap) Less(i, j int) bool { return h[i] < h[j] }
    func (h IntHeap) Swap(i, j int)      { h[i], h[j] = h[j], h[i] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/hello.txt

    </msg>
    </logentry>
    </log>
    -- conf/authz --
    -- conf/passwd --
    -- conf/svnserve.conf --
    -- db/current --
    0
    -- db/format --
    6
    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    K 8
    svn:date
    V 27
    2017-09-22T01:11:53.895835Z
    END
    -- db/revs/0/0 --
    PLAIN
    END
    ENDREP
    id: 0.0.r0/17
    type: dir
    count: 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap_windows.go

    	if previous != nil {
    		munmapFile(*previous)
    	}
    	st, err := f.Stat()
    	if err != nil {
    		return Data{}, err
    	}
    	size := st.Size()
    	if size == 0 {
    		return Data{f, nil, nil}, nil
    	}
    	// set the min and max sizes to zero to map the whole file, as described in
    	// https://learn.microsoft.com/en-us/windows/win32/memory/creating-a-file-mapping-object#file-mapping-size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/pledge_openbsd.go

    // based on the running OpenBSD version.
    func pledgeAvailable() error {
    	maj, min, err := majmin()
    	if err != nil {
    		return err
    	}
    
    	// Require OpenBSD 6.4 as a minimum.
    	if maj < 6 || (maj == 6 && min <= 3) {
    		return fmt.Errorf("cannot call Pledge on OpenBSD %d.%d", maj, min)
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top