Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for wbMove (0.13 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    		pod     podToMake
    		volumes []v1.Volume
    	}{
    		"eviction due to rootfs above limit": {
    			pod: podToMake{name: "rootfs-above-limits", priority: defaultPriority, requests: newResourceList("", "", "1Gi"), limits: newResourceList("", "", "1Gi"), rootFsUsed: "2Gi"},
    		},
    		"eviction due to logsfs above limit": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    func TestOrderedByPriorityMemory(t *testing.T) {
    	pod1 := newPod("above-requests-low-priority-high-usage", lowPriority, []v1.Container{
    		newContainer("above-requests-low-priority-high-usage", newResourceList("", "", ""), newResourceList("", "", "")),
    	}, nil)
    	pod2 := newPod("above-requests-low-priority-low-usage", lowPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    			// same as "node to NodePort" above.
    			output: "10.180.0.1:80, 10.180.1.1:80",
    			masq:   true,
    		},
    		{
    			name:     "node to LB with eTP:Local",
    			sourceIP: testNodeIP,
    			destIP:   "5.6.7.8",
    			destPort: 80,
    
    			// The traffic gets short-circuited, ignoring externalTrafficPolicy, so
    			// same as "node to LB" above.
    			output: "10.180.0.2:80, 10.180.1.2:80",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    		contentLength int64
    		textData      []byte
    		metaData      map[string]string
    	}{
    		{bucketName, objectName, int64(len(bytesData[0].byteData)), bytesData[0].byteData, make(map[string]string)},
    	}
    	// iterate through the above set of inputs and upload the object.
    	for i, input := range putObjectInputs {
    		// uploading the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// assert the returned values.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// create HTTP request to fetch the object which was uploaded above.
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, objectName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    	// execute the HTTP request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // returned by MakeFunc. In many ways it is the opposite of the
    // method Value.call above. The method above converts a call using Values
    // into a call of a function with a concrete argument frame, while
    // callReflect converts a call of a function with a concrete argument
    // frame into a call using Values.
    // It is in this file so that it can be next to the call method above.
    // The remainder of the MakeFunc implementation is in makefunc.go.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    	)
    	// expectedSecretPaths holds struct paths to fields with "secret" in the name that are references to secret API objects.
    	// every path here should be represented as an example in the Pod stub above, with the secret name set to the path.
    	expectedSecretPaths := sets.New[string](
    		"Spec.Containers[*].EnvFrom[*].SecretRef",
    		"Spec.Containers[*].Env[*].ValueFrom.SecretKeyRef",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		// the stack, but put it in gp.stack before mstart,
    		// so the logic above hasn't set osStack yet.
    		osStack = true
    	}
    	mexit(osStack)
    }
    
    // The go:noinline is to guarantee the getcallerpc/getcallersp below are safe,
    // so that we can set up g0.sched to return to the call of mstart1 above.
    //
    //go:noinline
    func mstart1() {
    	gp := getg()
    
    	if gp != gp.m.g0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    				Country:      []string{"US"},
    				ExtraNames: []pkix.AttributeTypeAndValue{
    					{
    						Type:  []int{2, 5, 4, 42},
    						Value: "Gopher",
    					},
    					// This should override the Country, above.
    					{
    						Type:  []int{2, 5, 4, 6},
    						Value: "NL",
    					},
    				},
    			},
    			NotBefore: time.Unix(1000, 0),
    			NotAfter:  time.Unix(100000, 0),
    
    			SignatureAlgorithm: test.sigAlgo,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"spec.maxFailedIndexes: Required value: must be specified when completions is above 100000": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_001),
    					BackoffLimitPerIndex: pointer.Int32(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top