- Sort Score
- Result 10 results
- Languages All
Results 71 - 74 of 74 for twice (0.29 sec)
-
CHANGELOG/CHANGELOG-1.28.md
- [Dual-stack] Fixed `generateAPIPodStatus()` of kubelet handling Secondary IP. hostIPs order may not be consistent. If secondary IP is before primary one, current logic adds primary IP twice into `PodIPs`, which leads to error: "may specify no more than one IP for each IP family". ([#116879](https://github.com/kubernetes/kubernetes/pull/116879), [@lzhecheng](https://github.com/lzhecheng))
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Fri Sep 05 03:47:18 UTC 2025 - 456.9K bytes - Viewed (1) -
doc/go_spec.html
<a href="#Function_declarations">function</a>, <a href="#Labeled_statements">label</a>, or <a href="#Import_declarations">package</a>. Every identifier in a program must be declared. No identifier may be declared twice in the same block, and no identifier may be declared in both the file and package block. </p> <p> The <a href="#Blank_identifier">blank identifier</a> may be used like any other identifier
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 02 23:07:19 UTC 2025 - 286.5K bytes - Viewed (1) -
lib/fips140/v1.0.0-c2097c7c.zip
"crypto/internal/fips140/hmac" ) // hmacDRBG is an SP 800-90A Rev. 1 HMAC_DRBG. // // It is only intended to be used to generate ECDSA nonces. Since it will be // instantiated ex-novo for each signature, its Generate function will only be // invoked once or twice (only for P-256, with probability 2⁻³²). // // Per Table 2, it has a reseed interval of 2^48 requests, and a maximum request // size of 2^19 bits (2^16 bytes, 64 KiB). type hmacDRBG struct { newHMAC func(key []byte) *hmac.HMAC hK *hmac.HMAC V []byte...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
SetNoncePrefixAndMas(nonce []byte) error { if len(nonce) != gcmStandardNonceSize { return errors.New("crypto/cipher: incorrect nonce length given to SetNoncePrefixAndMas") } if g.ready { return errors.New("crypto/cipher: SetNoncePrefixAndMas called twice or after first Seal") } g.prefix = byteorder.BEUint32(nonce[:4]) g.mask = byteorder.BEUint64(nonce[4:]) g.ready = true return nil } func (g *GCMWithXORCounterNon) NonceSize() int { return gcmStandardNonceSize } func (g *GCMWithXORCounterNon) Overhead()...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)