Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 461 for Maximum (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    	return b
    }
    
    // WithMaximum sets the Maximum field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Maximum field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMaximum(value float64) *JSONSchemaPropsApplyConfiguration {
    	b.Maximum = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. docs/sts/web-identity.md

    ## Configuring OpenID Identity Provider on MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

      %0 = "tf.Div"(%arg0, %arg1) : (tensor<*xi32>, tensor<?x?xi32>) -> tensor<?x?xi32>
      func.return %0: tensor<?x?xi32>
    }
    
    // CHECK-LABEL: func @maximum
    func.func @maximum(%arg0: tensor<4xf32>, %arg1: tensor<4xf32>) -> tensor<4xf32> {
      // CHECK-NEXT:  mhlo.maximum %arg0, %arg1 : tensor<4xf32>
      %0 = "tf.Maximum"(%arg0, %arg1) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
      func.return %0 : tensor<4xf32>
    }
    
    // CHECK-LABEL: func @minimum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. internal/config/notify/help.go

    	queueDirComment   = `staging dir for undelivered messages e.g. '/home/events'`
    	queueLimitComment = `maximum limit for undelivered messages, defaults to '100000'`
    )
    
    // Help template inputs for all notification targets
    var (
    	HelpWebhook = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.WebhookEndpoint,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1,
    		},
    		{
    			name: "the maximum skew between the cluster version and the kubelet versions should be three minor version.",
    			vg: &fakeVersionGetter{
    				clusterVersion: "v1.13.0",
    				kubeletVersion: "v1.10.8",
    				kubeadmVersion: "v1.13.0",
    			},
    			newK8sVersion: "v1.13.0",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// ReservedFor.
    	// +optional
    	DeallocationRequested bool `json:"deallocationRequested,omitempty" protobuf:"varint,4,opt,name=deallocationRequested"`
    }
    
    // ReservedForMaxSize is the maximum number of entries in
    // claim.status.reservedFor.
    const ResourceClaimReservedForMaxSize = 32
    
    // AllocationResult contains attributes of an allocated resource.
    type AllocationResult struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-collective.mlir

    func.func @xla_all_reduce_max(%input: tensor<f32>) -> tensor<f32> {
      %group_assignment = "tf.Const"() { value = dense<[[0],[1]]> : tensor<2x1xi32> } : () -> tensor<2x1xi32>
      // CHECK: "mhlo.all_reduce"
      // CHECK: mhlo.maximum
      %0 = "tf.XlaAllReduce"(%input, %group_assignment) {reduce_op = "Max", mode = "CrossReplica"} : (tensor<f32>, tensor<2x1xi32>) -> tensor<f32>
      func.return %0 : tensor<f32>
    }
    
    // CHECK-LABEL: func @xla_all_reduce_mean
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"paused":                  "Indicates that the deployment is paused.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. docs/sts/ldap.md

    | :--                  | :--                                            |
    | _Type_               | _String_                                       |
    | _Length Constraints_ | _Minimum length of 2. Maximum length of 2048._ |
    | _Required_           | _Yes_                                          |
    
    ### LDAPPassword
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	// KMSAPIVersionv2beta1 is a version of the KMS API.
    	KMSAPIVersionv2beta1 = "v2beta1"
    	// annotationsMaxSize is the maximum size of the annotations.
    	annotationsMaxSize = 32 * 1024 // 32 kB
    	// KeyIDMaxSize is the maximum size of the keyID.
    	KeyIDMaxSize = 1 * 1024 // 1 kB
    	// encryptedDEKSourceMaxSize is the maximum size of the encrypted DEK source.
    	encryptedDEKSourceMaxSize = 1 * 1024 // 1 kB
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top