Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 354 for Maximum (0.1 sec)

  1. pkg/test/framework/resource/flags.go

    		0, "Gateway conformance test timeout for the the maximum time for an xRoute to have parents in status that match the expected parents.")
    	flag.DurationVar(&settingsFromCommandLine.GatewayConformanceTimeoutConfig.ManifestFetchTimeout, "istio.test.gatewayConformance.manifestFetchTimeout",
    		0, "Gateway conformance test timeout for the maximum time for getting content from a https:// URL.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. pkg/apis/resource/types.go

    	// the DriverName set in this ResourceHandle.
    	//
    	// The maximum size of this field is 16KiB. This may get increased in the
    	// future, but not reduced.
    	// +optional
    	Data string
    
    	// If StructuredData is set, then it needs to be used instead of Data.
    	StructuredData *StructuredResourceHandle
    }
    
    // ResourceHandleDataMaxSize represents the maximum size of resourceHandle.data.
    const ResourceHandleDataMaxSize = 16 * 1024
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. docs/metrics/v3.md

    | `minio_replication_max_active_workers`            | `gauge` | Maximum number of active replication workers seen since server start        | `server` |
    | `minio_replication_max_queued_bytes`              | `gauge` | Maximum number of bytes queued for replication since server start           | `server` |
    | `minio_replication_max_queued_count`              | `gauge` | Maximum number of objects queued for replication since server start         | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    | `minio_node_replication_max_queued_bytes`               | Maximum number of bytes queued for replication seen since server start                                   |
    | `minio_node_replication_max_queued_count`               | Maximum number of objects queued for replication seen since server start                                 |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  5. internal/auth/credentials.go

    )
    
    const (
    	// Minimum length for MinIO access key.
    	accessKeyMinLen = 3
    
    	// Maximum length for MinIO access key.
    	// There is no max length enforcement for access keys
    	accessKeyMaxLen = 20
    
    	// Minimum length for MinIO secret key for both server
    	secretKeyMinLen = 8
    
    	// Maximum secret key length for MinIO, this
    	// is used when autogenerating new credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
      optional RollbackConfig rollbackTo = 8;
    
      // progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
      // process failed deployments and a condition with a ProgressDeadlineExceeded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation.go

    		// in particular when it is already beyond the maximum size. Instead this
    		// just shows the number of entries.
    		allErrs = append(allErrs, field.TooLongMaxLength(fldPath, len(slice), maxSize))
    	}
    	return allErrs
    }
    
    // validateResourceClaimConsumers ensures that the slice contains no duplicate UIDs and does not exceed a certain maximum size.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top