Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for spreading (0.14 sec)

  1. pkg/scheduler/schedule_one_test.go

    func TestZeroRequest(t *testing.T) {
    	// A pod with no resources. We expect spreading to count it as having the default resources.
    	noResources := v1.PodSpec{
    		Containers: []v1.Container{
    			{},
    		},
    	}
    	noResources1 := noResources
    	noResources1.NodeName = "node1"
    	// A pod with the same resources as a 0-request pod gets by default as its resources (for spreading).
    	small := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      So they began solemnly dancing round and round Alice, every now
    and then treading on her toes when they passed too close, and
    waving their forepaws to mark the time, while the Mock Turtle
    sang this, very slowly and sadly:--
    
    
    `"Will you walk a little faster?" said a whiting to a snail.
    "There's a porpoise close behind us, and he's treading on my
     tail.
    See how eagerly the lobsters and the turtles all advance!
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      So they began solemnly dancing round and round Alice, every now
    and then treading on her toes when they passed too close, and
    waving their forepaws to mark the time, while the Mock Turtle
    sang this, very slowly and sadly:--
    
    
    `"Will you walk a little faster?" said a whiting to a snail.
    "There's a porpoise close behind us, and he's treading on my
     tail.
    See how eagerly the lobsters and the turtles all advance!
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Colours arising on the edges is much the same, as will appear to one that shall a little consider it. If a black Object be encompassed with a white one, the Colours which appear through the Prism are to be derived from the Light of the white one, spreading into the Regions of the black, and therefore they appear in a contrary order to that, when a white Object is surrounded with black. And the same is to be understood when an Object is viewed, whose parts are some of them less luminous than others....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			_, err := io.Copy(io.Discard, req.Body)
    			if !errors.Is(err, os.ErrDeadlineExceeded) {
    				t.Errorf("server timed out reading request body: got err %v; want os.ErrDeadlineExceeded", err)
    			}
    			res.Write([]byte(respBody))
    		}), func(ts *httptest.Server) {
    			ts.Config.ReadHeaderTimeout = -1 // don't time out while reading headers
    			ts.Config.ReadTimeout = timeout
    			t.Logf("Server.Config.ReadTimeout = %v", timeout)
    		})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	"k8s.io/apimachinery/pkg/util/version"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    	remotecommandserver "k8s.io/kubelet/pkg/cri/streaming/remotecommand"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    	podshelper "k8s.io/kubernetes/pkg/apis/core/pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    	"k8s.io/kubelet/pkg/cri/streaming/remotecommand"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    			5, 1, bytes.NewReader([]byte("hello")), credentials.AccessKey, credentials.SecretKey)
    		if err != nil {
    			t.Fatalf("Failed to create new streaming signed HTTP request: <ERROR> %v.", err)
    		}
    		switch test.fault {
    		case BadSignature:
    			// Reset date field in header to make streaming signature fail.
    			req.Header.Set("x-amz-date", "")
    		case TooBigDecodedLength:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    }
    
    func watcher(mediaType string, r io.ReadCloser) streaming.Decoder {
    	info, ok := runtime.SerializerInfoForMediaType(metainternalversionscheme.Codecs.SupportedMediaTypes(), mediaType)
    	if !ok || info.StreamSerializer == nil {
    		panic(info)
    	}
    	streamSerializer := info.StreamSerializer
    	fr := streamSerializer.Framer.NewFrameReader(r)
    	d := streaming.NewDecoder(fr, streamSerializer.Serializer)
    	return d
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	contextDone atomic.Pointer[error] // error that awaitDone saw; set before close attempt
    
    	// closemu prevents Rows from closing while there
    	// is an active streaming result. It is held for read during non-close operations
    	// and exclusively during close.
    	//
    	// closemu guards lasterr and closed.
    	closemu sync.RWMutex
    	lasterr error // non-nil only if closed is true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top