Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for randPod (5.61 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        )
    
        # Generate model input data.
        rng = np.random.default_rng(seed=42)
        input_data = ops.convert_to_tensor(
            rng.uniform(low=0.0, high=1.0, size=x_signature).astype('f4')
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'x': ops.convert_to_tensor(
                    np.random.uniform(low=0.0, high=1.0, size=x_signature).astype(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            self.embedding_w = np.random.randn(1024, 3, 4, 3).astype('f4')
            self.embedding_w = np.minimum(np.maximum(self.embedding_w, -4), 4)
    
            self.conv_filters = np.random.uniform(
                low=-10, high=10, size=filter_shape
            ).astype('f4')
    
            second_conv_filter_shape = (3, 3, filter_shape[-1], 1)
            self.second_conv_filters = np.random.uniform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	for _, v := range badProtocolVersions {
    		testClientHelloFailure(t, config, &clientHelloMsg{
    			vers:   v,
    			random: make([]byte, 32),
    		}, "unsupported versions")
    	}
    	testClientHelloFailure(t, config, &clientHelloMsg{
    		vers:              VersionTLS12,
    		supportedVersions: badProtocolVersions,
    		random:            make([]byte, 32),
    	}, "unsupported versions")
    }
    
    func TestNoSuiteOverlap(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages.go

    }
    
    func (m *clientHelloMsg) clone() *clientHelloMsg {
    	return &clientHelloMsg{
    		original:                         slices.Clone(m.original),
    		vers:                             m.vers,
    		random:                           slices.Clone(m.random),
    		sessionId:                        slices.Clone(m.sessionId),
    		cipherSuites:                     slices.Clone(m.cipherSuites),
    		compressionMethods:               slices.Clone(m.compressionMethods),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    					Name:       "pod-1",
    					APIVersion: "v1",
    					Kind:       "Pod",
    					UID:        "pod-123",
    					Controller: ptr.To(true),
    				},
    				{
    					Name:       "Random",
    					APIVersion: "v1",
    					Kind:       "Pod",
    					UID:        "random",
    					Controller: ptr.To(true),
    				},
    			},
    			policy: apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
    	letterIdxMax  = 63 / letterIdxBits   // # of letter indices fitting in 63 bits
    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    // Temp files created in default Tmp dir
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    		},
    		{
    			proxyNs:     "ns1",
    			serviceNs:   "random",
    			host:        testhost,
    			wantSubsets: []string{"subset7", "subset8"},
    		},
    		{
    			proxyNs:     "random",
    			serviceNs:   "random",
    			host:        testhost,
    			wantSubsets: []string{"subset7", "subset8"},
    		},
    		{
    			proxyNs:     "test3",
    			serviceNs:   "random",
    			host:        testhost,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    // should be performed, and that the input should be signed directly. It is the
    // hash function associated with the Ed25519 signature scheme.
    var directSigning crypto.Hash = 0
    
    // helloRetryRequestRandom is set as the Random value of a ServerHello
    // to signal that the message is actually a HelloRetryRequest.
    var helloRetryRequestRandom = []byte{ // See RFC 8446, Section 4.1.3.
    	0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // To solve this problem, we've already written necessary information into container labels. Here we
    // just need to retrieve them from container labels and restore the specs.
    // TODO(random-liu): Add a node e2e test to test this behaviour.
    // TODO(random-liu): Change the lifecycle handler to just accept information needed, so that we can
    // just pass the needed function not create the fake object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fs.Parse(args)
    	// Sort GCIgnoredResources because it's built from a map, which means the
    	// insertion order is random.
    	sort.Sort(sortedGCIgnoredResources(s.GarbageCollectorController.GCIgnoredResources))
    
    	expected := &KubeControllerManagerOptions{
    		Generic: &cmoptions.GenericControllerManagerConfigurationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top