Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for Maximum (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          def __init__(self):
            """Initializes a SimpleGatherAndConvModel."""
            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)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    	validUsages     = []capi.KeyUsage{capi.UsageKeyEncipherment}
    )
    
    func TestValidateCertificateSigningRequestCreate(t *testing.T) {
    	specPath := field.NewPath("spec")
    	// maxLengthSignerName is a signerName that is of maximum length, utilising
    	// the max length specifications defined in validation.go.
    	// It is of the form <fqdn(253)>/<resource-namespace(63)>.<resource-name(253)>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK-DAG: %[[PROX_NEW:.*]] = "tf.Sub"(%[[ABS]], %[[SCALED_L1]]) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
        // CHECK-DAG: %[[MAX:.*]] = "tf.Maximum"(%[[PROX_NEW]], %[[ZERO]]) : (tensor<4xf32>, tensor<f32>) -> tensor<4xf32>
        // CHECK-DAG: %[[SIGNED:.*]] = "tf.Mul"(%[[SIGN]], %[[MAX]]) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	destinationPrefix string
    	isolationID       uint16
    	providerAddress   string
    	drMacAddress      string
    }
    
    const (
    	NETWORK_TYPE_OVERLAY = "overlay"
    	// MAX_COUNT_STALE_LOADBALANCERS is the maximum number of stale loadbalancers which cleanedup in single syncproxyrules.
    	// If there are more stale loadbalancers to clean, it will go to next iteration of syncproxyrules.
    	MAX_COUNT_STALE_LOADBALANCERS = 20
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

       * elements. The returned iterator supports {@code remove()} if {@code iterator} does.
       *
       * @param iterator the iterator to limit
       * @param limitSize the maximum number of elements in the returned iterator
       * @throws IllegalArgumentException if {@code limitSize} is negative
       * @since 3.0
       */
      public static <T extends @Nullable Object> Iterator<T> limit(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

       * elements. The returned iterator supports {@code remove()} if {@code iterator} does.
       *
       * @param iterator the iterator to limit
       * @param limitSize the maximum number of elements in the returned iterator
       * @throws IllegalArgumentException if {@code limitSize} is negative
       * @since 3.0
       */
      public static <T extends @Nullable Object> Iterator<T> limit(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    		},
    		"should bubble up",
    		nil,
    	},
    	{
    		nil,
    		func(clientHello *ClientHelloInfo) (*Config, error) {
    			config := testConfig.Clone()
    			// Setting a maximum version of TLS 1.1 should cause
    			// the handshake to fail, as the client MinVersion is TLS 1.2.
    			config.MaxVersion = VersionTLS11
    			return config, nil
    		},
    		"client offered only unsupported versions",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "maxItems": { "type": "integer", "format": "int64" },
            "maxLength": { "type": "integer", "format": "int64" },
            "maxProperties": { "type": "integer", "format": "int64" },
            "maximum": { "type": "number", "format": "double" },
            "minItems": { "type": "integer", "format": "int64" },
            "minLength": { "type": "integer", "format": "int64" },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    required to produce more exact shapes is also performed but these values
    are only kept in the context rather than the ops folded/IR mutated.
    
    #### Options
    ```
    -max-iterations : Maximum shape inference iterations
    ```
    ### `-tf-simple-device-assignment`
    
    _Simple device assignment in TF dialect._
    
    Assigns the default device to all ops that have an empty (or
    nonexistent) device attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	})
    	if err != nil {
    		klog.ErrorS(err, "ListContainers error")
    		return nil, err
    	}
    
    	statuses := []*kubecontainer.Status{}
    	// TODO: optimization: set maximum number of containers per container name to examine.
    	for _, c := range containers {
    		resp, err := m.runtimeService.ContainerStatus(ctx, c.Id, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top