Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for severity (4.88 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    The [Diagnostic] struct does not have a field to indicate its severity
    because opinions about the relative importance of Analyzers and their
    diagnostics vary widely among users. The design of this framework does
    not hold each Analyzer responsible for identifying the severity of its
    diagnostics. Instead, we expect that drivers will allow the user to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/crypto/tls/alert.go

    	alertExportRestriction:            "export restriction",
    	alertProtocolVersion:              "protocol version not supported",
    	alertInsufficientSecurity:         "insufficient security level",
    	alertInternalError:                "internal error",
    	alertInappropriateFallback:        "inappropriate fallback",
    	alertUserCanceled:                 "user canceled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/fetch.go

    		}
    	}
    }
    
    const goSumMismatch = `
    
    SECURITY ERROR
    This download does NOT match an earlier download recorded in go.sum.
    The bits may have been replaced on the origin server, or an attacker may
    have intercepted the download attempt.
    
    For more information, see 'go help module-auth'.
    `
    
    const sumdbMismatch = `
    
    SECURITY ERROR
    This download does NOT match the one reported by the checksum server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/crypto/elliptic/params.go

    //
    // The generic Curve implementation is deprecated, and using custom curves
    // (those not returned by [P224], [P256], [P384], and [P521]) is not guaranteed
    // to provide any security property.
    type CurveParams struct {
    	P       *big.Int // the order of the underlying field
    	N       *big.Int // the order of the base point
    	B       *big.Int // the constant of the curve equation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm.go

    		return nil, errors.New("cipher: incorrect tag size given to GCM")
    	}
    
    	if nonceSize <= 0 {
    		return nil, errors.New("cipher: the nonce can't have zero length, or the security of the key will be immediately compromised")
    	}
    
    	if cipher, ok := cipher.(gcmAble); ok {
    		return cipher.NewGCM(nonceSize, tagSize)
    	}
    
    	if cipher.BlockSize() != gcmBlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    For example:
    
    	// #cgo pkg-config: png cairo
    	// #include <png.h>
    	import "C"
    
    The default pkg-config tool may be changed by setting the PKG_CONFIG environment variable.
    
    For security reasons, only a limited set of flags are allowed, notably -D, -U, -I, and -l.
    To allow additional flags, set CGO_CFLAGS_ALLOW to a regular expression
    matching the new flags. To disallow flags that would otherwise be allowed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <linux/ethtool_netlink.h>
    #include <linux/falloc.h>
    #include <linux/fanotify.h>
    #include <linux/fib_rules.h>
    #include <linux/filter.h>
    #include <linux/fs.h>
    #include <linux/fscrypt.h>
    #include <linux/fsverity.h>
    #include <linux/genetlink.h>
    #include <linux/hdreg.h>
    #include <linux/hidraw.h>
    #include <linux/if.h>
    #include <linux/if_addr.h>
    #include <linux/if_alg.h>
    #include <linux/if_arp.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{228, "EDC5228I", "The file referred to is an external link"},
    	{229, "EDC5229I", "No path definition for ddname in effect"},
    	{230, "EDC5230I", "ESM error."},
    	{231, "EDC5231I", "CP or the external security manager had an error"},
    	{232, "EDC5232I", "The function failed because it was invoked from a multithread environment."},
    	{244, "EDC5244I", "The program, module or DLL is not supported in this environment."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/crypto/rsa/rsa.go

    //
    // Deprecated: The use of this function with a number of primes different from
    // two is not recommended for the above security, compatibility, and performance
    // reasons. Use [GenerateKey] instead.
    //
    // [On the Security of Multi-prime RSA]: http://www.cacr.math.uwaterloo.ca/techreports/2006/cacr2006-16.pdf
    func GenerateMultiPrimeKey(random io.Reader, nprimes int, bits int) (*PrivateKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top