Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 364 for randPod (3.53 sec)

  1. src/crypto/tls/handshake_client_tls13.go

    		acceptConfirmation := hs.suite.expandLabel(
    			hs.suite.extract(hs.echContext.innerHello.random, nil),
    			"ech accept confirmation",
    			confTranscript.Sum(nil),
    			8,
    		)
    		if subtle.ConstantTimeCompare(acceptConfirmation, hs.serverHello.random[len(hs.serverHello.random)-8:]) == 1 {
    			hs.hello = hs.echContext.innerHello
    			c.serverName = c.config.ServerName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/helpers_test.go

    				tracer.matches = append(tracer.matches, ruleObj.Rule)
    				tracer.outputs = append(tracer.outputs, destEndpoint)
    				return true
    
    			case endpointVMAPRegexp.MatchString(rule):
    				// `^numgen random mod \d+ vmap \{(.*)\}$`
    				// Selects a random endpoint and jumps to it. For tracePacket's
    				// purposes, we jump to *all* of the endpoints.
    				match := endpointVMAPRegexp.FindStringSubmatch(rule)
    				elements := match[1]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            self.filters_0 = np.random.uniform(
                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_0 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
            self.filters_1 = np.random.uniform(
                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_1 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. src/math/rand/v2/pcg.go

    // license that can be found in the LICENSE file.
    
    package rand
    
    import (
    	"errors"
    	"internal/byteorder"
    	"math/bits"
    )
    
    // https://numpy.org/devdocs/reference/random/upgrading-pcg64.html
    // https://github.com/imneme/pcg-cpp/commit/871d0494ee9c9a7b7c43f753e3d8ca47c26f8005
    
    // A PCG is a PCG generator with 128 bits of internal state.
    // A zero PCG is equivalent to NewPCG(0, 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. buildscripts/rewrite-old-new.sh

    #!/bin/bash -e
    
    set -E
    set -o pipefail
    set -x
    
    WORK_DIR="$PWD/.verify-$RANDOM"
    MINIO_CONFIG_DIR="$WORK_DIR/.minio"
    MINIO_OLD=("$PWD/minio.RELEASE.2020-10-28T08-16-50Z" --config-dir "$MINIO_CONFIG_DIR" server)
    MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server)
    
    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    function download_old_release() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/OrderingTest.java

      }
    
      private static void runLeastOfComparison(int iterations, int elements, int seeds) {
        Random random = new Random(42);
        Ordering<Integer> ordering = Ordering.natural();
    
        for (int i = 0; i < iterations; i++) {
          List<Integer> list = Lists.newArrayList();
          for (int j = 0; j < elements; j++) {
            list.add(random.nextInt(10 * i + j + 1));
          }
    
          for (int seed = 1; seed < seeds; seed++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  7. src/crypto/rand/rand_darwin.go

    import "internal/syscall/unix"
    
    func init() {
    	// arc4random_buf is the recommended application CSPRNG, accepts buffers of
    	// any size, and never returns an error.
    	//
    	// "The subsystem is re-seeded from the kernel random number subsystem on a
    	// regular basis, and also upon fork(2)." - arc4random(3)
    	//
    	// Note that despite its legacy name, it uses a secure CSPRNG (not RC4) in
    	// all supported macOS versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 667 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/doc.go

    // is used.  Requesting more than 64 or 32 bytes of output, respectively, does
    // not increase the collision-resistance of the SHAKE functions.
    //
    // # The sponge construction
    //
    // A sponge builds a pseudo-random function from a public pseudo-random
    // permutation, by applying the permutation to a state of "rate + capacity"
    // bytes, but hiding "capacity" of the bytes.
    //
    // A sponge starts out with a zero state. To hash an input using a sponge, up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_tls13.go

    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: TLS 1.3 client supports illegal compression methods")
    	}
    
    	hs.hello.random = make([]byte, 32)
    	if _, err := io.ReadFull(c.config.rand(), hs.hello.random); err != nil {
    		c.sendAlert(alertInternalError)
    		return err
    	}
    
    	if len(hs.clientHello.secureRenegotiation) != 0 {
    		c.sendAlert(alertHandshakeFailure)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    			hs.finishedHash.Sum())
    	} else {
    		hs.masterSecret = masterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret,
    			hs.clientHello.random, hs.hello.random)
    	}
    	if err := c.config.writeKeyLog(keyLogLabelTLS12, hs.clientHello.random, hs.masterSecret); err != nil {
    		c.sendAlert(alertInternalError)
    		return err
    	}
    
    	// If we received a client cert in response to our certificate request message,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top