Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for 5552 (0.03 sec)

  1. src/hash/adler32/adler32.go

    const (
    	// mod is the largest prime that is less than 65536.
    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    	// It is mentioned in RFC 1950 (search for "5552").
    	nmax = 5552
    )
    
    // The size of an Adler-32 checksum in bytes.
    const Size = 4
    
    // digest represents the partial evaluation of a checksum.
    // The low 16 bits are s1, the high 16 bits are s2.
    type digest uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_SHUTDOWN                = 5047
    	SYS_BIND                    = 5048
    	SYS_LISTEN                  = 5049
    	SYS_GETSOCKNAME             = 5050
    	SYS_GETPEERNAME             = 5051
    	SYS_SOCKETPAIR              = 5052
    	SYS_SETSOCKOPT              = 5053
    	SYS_GETSOCKOPT              = 5054
    	SYS_CLONE                   = 5055
    	SYS_FORK                    = 5056
    	SYS_EXECVE                  = 5057
    	SYS_EXIT                    = 5058
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_SHUTDOWN                = 5047
    	SYS_BIND                    = 5048
    	SYS_LISTEN                  = 5049
    	SYS_GETSOCKNAME             = 5050
    	SYS_GETPEERNAME             = 5051
    	SYS_SOCKETPAIR              = 5052
    	SYS_SETSOCKOPT              = 5053
    	SYS_GETSOCKOPT              = 5054
    	SYS_CLONE                   = 5055
    	SYS_FORK                    = 5056
    	SYS_EXECVE                  = 5057
    	SYS_EXIT                    = 5058
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_linux_mips64.go

    	SYS_SHUTDOWN               = 5047
    	SYS_BIND                   = 5048
    	SYS_LISTEN                 = 5049
    	SYS_GETSOCKNAME            = 5050
    	SYS_GETPEERNAME            = 5051
    	SYS_SOCKETPAIR             = 5052
    	SYS_SETSOCKOPT             = 5053
    	SYS_GETSOCKOPT             = 5054
    	SYS_CLONE                  = 5055
    	SYS_FORK                   = 5056
    	SYS_EXECVE                 = 5057
    	SYS_EXIT                   = 5058
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10.9K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_linux_mips64le.go

    	SYS_SHUTDOWN               = 5047
    	SYS_BIND                   = 5048
    	SYS_LISTEN                 = 5049
    	SYS_GETSOCKNAME            = 5050
    	SYS_GETPEERNAME            = 5051
    	SYS_SOCKETPAIR             = 5052
    	SYS_SETSOCKOPT             = 5053
    	SYS_GETSOCKOPT             = 5054
    	SYS_CLONE                  = 5055
    	SYS_FORK                   = 5056
    	SYS_EXECVE                 = 5057
    	SYS_EXIT                   = 5058
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10.9K bytes
    - Viewed (0)
  6. src/runtime/sigtab_aix.go

    	49:          {_SigNotify, "signal 49"},
    	50:          {_SigNotify, "signal 50"},
    	51:          {_SigNotify, "signal 51"},
    	52:          {_SigNotify, "signal 52"},
    	53:          {_SigNotify, "signal 53"},
    	54:          {_SigNotify, "signal 54"},
    	55:          {_SigNotify, "signal 55"},
    	56:          {_SigNotify, "signal 56"},
    	57:          {_SigNotify, "signal 57"},
    	58:          {_SigNotify, "signal 58"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue3552.go

    // compiledir
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3552: cross-package inlining misbehaves when
    // referencing embedded builtins.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 22 18:16:31 UTC 2012
    - 280 bytes
    - Viewed (0)
  8. test/fixedbugs/issue3552.dir/one.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package one
    
    // Issue 3552
    
    type T struct { int }
    
    func (t T) F() int { return t.int }
    
    type U struct { int int }
    
    func (u U) F() int { return u.int }
    
    type lint int
    
    type V struct { lint }
    
    func (v V) F() int { return int(v.lint) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 468 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	                   Exponent: 65537 (0x10001)
    	           X509v3 extensions:
    	               X509v3 Subject Key Identifier:
    	                   56:A5:55:02:8C:97:FD:1E:A0:B8:DE:EF:5E:95:F0:AC:A6:23:6F:16
    	               X509v3 Authority Key Identifier:
    	                   56:A5:55:02:8C:97:FD:1E:A0:B8:DE:EF:5E:95:F0:AC:A6:23:6F:16
    	               X509v3 Basic Constraints: critical
    	                   CA:TRUE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. regression-test/README.md

    ...
    BUILD SUCCESSFUL in 1m 30s
    63 actionable tasks: 61 executed, 2 up-to-date
    
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Nov 13 07:09:56 UTC 2020
    - 2.5K bytes
    - Viewed (0)
Back to top