Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 143 for Size (0.05 sec)

  1. pkg/controller/podautoscaler/horizontal_test.go

    								Status:             v1.ConditionTrue,
    								LastTransitionTime: *tc.lastScaleTime,
    								Reason:             "ReadyForNewScale",
    								Message:            "recommended size matches current size",
    							},
    							{
    								Type:               autoscalingv2.ScalingActive,
    								Status:             v1.ConditionTrue,
    								LastTransitionTime: *tc.lastScaleTime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "type": "object"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    			func() {
    				defer func() {
    					if err := recover(); err != nil {
    						// Same as stdlib http server code. Manually allocate stack
    						// trace buffer size to prevent excessively large logs
    						const size = 64 << 10
    						buf := make([]byte, size)
    						buf = buf[:runtime.Stack(buf, false)]
    						err = fmt.Errorf("%q stack:\n%s", err, buf)
    
    						t.Errorf("Expected no panic, but got: %v", err)
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // returned [Tx] is bound to a single connection. Once [Tx.Commit] or
    // [Tx.Rollback] is called on the transaction, that transaction's
    // connection is returned to [DB]'s idle connection pool. The pool size
    // can be controlled with [DB.SetMaxIdleConns].
    type DB struct {
    	// Total time waited for new connections.
    	waitDuration atomic.Int64
    
    	connector driver.Connector
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      //
      // Where `...` are some statically known dimensions. In this case %pack can be
      // replace with a %shape. This is a common pattern in models with a dynamic
      // batch size.
    
      // Test Rank 2
      // CHECK: %[[SHAPE0:.*]] = "tf.Shape"
      %3 = "tf.Shape"(%arg0) : (tensor<?x1xf32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "sizeBytes": {
              "description": "The size of the image in bytes.",
              "format": "int64",
              "type": "integer"
            }
          },
          "required": [
            "names"
          ],
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    		update: mkStatefulSet(&validPodTemplate, tweakReplicas(-1)),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("spec", "replicas"), nil, ""),
    		},
    	}, {
    		name:   "update pvc template size",
    		old:    mkStatefulSet(&validPodTemplate, tweakPVCTemplate(validPVCTemplate)),
    		update: mkStatefulSet(&validPodTemplate, tweakPVCTemplate(validPVCTemplateChangedSize)),
    		errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    			if svcErr != nil {
    				return info, errSRBackendIssue(svcErr)
    			}
    		}
    		info.UserPolicies = make(map[string]madmin.SRPolicyMapping, userPolicyMap.Size())
    		addPolicy := func(t IAMUserType, mp *xsync.MapOf[string, MappedPolicy]) {
    			mp.Range(func(k string, mp MappedPolicy) bool {
    				info.UserPolicies[k] = madmin.SRPolicyMapping{
    					IsGroup:     false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	destroyFunc, registry := NewTestGenericStoreRegistry(t)
    	defer destroyFunc()
    
    	// Overwrite the underlying storage interface so that it counts GetList calls
    	// and reduce the default page size to 2.
    	storeWithCounter := &storageWithCounter{Interface: registry.Storage.Storage}
    	registry.Storage.Storage = storeWithCounter
    	originalDeleteCollectionPageSize := deleteCollectionPageSize
    	deleteCollectionPageSize = 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    number that configures the shuffle sharding of requests into queues.  When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here.  The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues).  See the user-facing documentation...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
Back to top