Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for Size (0.39 sec)

  1. cluster/gce/gci/configure-helper.sh

        # Configure log rotation for all logs in /var/log, which is where k8s services
        # are configured to write their log files. Whenever logrotate is ran, this
        # config will:
        # * rotate the log file if its size is > 100Mb OR if one day has elapsed
        # * save rotated logs into a gzipped timestamped backup
        # * log file timestamp (controlled by 'dateformat') includes seconds too. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  7. 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)
  8. 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)
  9. src/net/http/transport_test.go

    		if err != nil {
    			t.Fatalf("large get: %v", err)
    		}
    		buf := make([]byte, len(testString))
    		n, err := io.ReadFull(res.Body, buf)
    		if err != nil {
    			t.Fatalf("partial read of large response: size=%d, %v", n, err)
    		}
    		if e, g := testString, string(buf); e != g {
    			t.Errorf("partial read got %q, expected %q", g, e)
    		}
    		res.Body.Close()
    		// Read on the body, even though it's closed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    			opts: echo.CallOptions{
    				Count:   1,
    				Port:    echo.Port{ServicePort: 80},
    				Scheme:  scheme.TCP,
    				Address: gateway,
    				// Envoy requires PROXY protocol TCP payloads have a minimum size, see:
    				// https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/listener/proxy_protocol/v3/proxy_protocol.proto
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top