Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 10$ (0.43 sec)

  1. pkg/kubelet/kubelet_test.go

    				},
    			},
    		},
    		{
    			name: "No CPU and memory, resource allocation not exists",
    			pod:  podWithUIDNameNsSpec("10", "pod10", "foo", *emptyPodSpec),
    			expectedPodResourceAllocation: state.PodResourceAllocation{
    				"10": map[string]v1.ResourceList{
    					emptyPodSpec.Containers[0].Name: emptyPodSpec.Containers[0].Resources.Requests,
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    			},
    		},
    	}
    	overridesInterval := &tpb.Telemetry{
    		Metrics: []*tpb.Metrics{
    			{
    				Providers:         []*tpb.ProviderRef{{Name: "prometheus"}},
    				ReportingInterval: durationpb.New(10 * time.Second),
    			},
    		},
    	}
    	overridesEmptyProvider := &tpb.Telemetry{
    		Metrics: []*tpb.Metrics{
    			{
    				Overrides: overrides,
    			},
    		},
    	}
    	disabledAllMetrics := &tpb.Telemetry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    						if err != nil {
    							start, rangeLen = 0, ci.Size
    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    							w.Header().Set(xhttp.ContentRange, contentRange)
    						}
    
    						io.Copy(w, bytes.NewReader(ci.Data))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/proto"
    	"istio.io/istio/pkg/wellknown"
    )
    
    // These are both the current defaults used by the ztunnel hyper http2 server
    const (
    	h2KeepaliveInterval = 10 * time.Second
    	h2KeepaliveTimeout  = 20 * time.Second
    )
    
    func (lb *ListenerBuilder) serviceForHostname(name host.Name) *model.Service {
    	return lb.push.ServiceForHostname(lb.node, name)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	eventedPlegRelistPeriod     = time.Second * 300
    	eventedPlegRelistThreshold  = time.Minute * 10
    	eventedPlegMaxStreamRetries = 5
    
    	// backOffPeriod is the period to back off when pod syncing results in an
    	// error. It is also used as the base period for the exponential backoff
    	// container restarts and image pulls.
    	backOffPeriod = time.Second * 10
    
    	// ContainerGCPeriod is the period for performing container garbage collection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * 📝 Tweak docs for Behind a Proxy. PR [#11038](https://github.com/tiangolo/fastapi/pull/11038) by [@tiangolo](https://github.com/tiangolo).
    * 📝 Add External Link: 10 Tips for adding SQLAlchemy to FastAPI. PR [#11036](https://github.com/tiangolo/fastapi/pull/11036) by [@Donnype](https://github.com/Donnype).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top