Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for nodestore (0.36 sec)

  1. pkg/scheduler/schedule_one_test.go

    	var maxScore float64
    	minScore := math.MaxFloat64
    
    	for _, hostPriority := range nodeScores {
    		maxScore = math.Max(maxScore, float64(hostPriority.Score))
    		minScore = math.Min(minScore, float64(hostPriority.Score))
    	}
    	for i, hostPriority := range nodeScores {
    		nodeScores[i] = framework.NodeScore{
    			Name:  hostPriority.Name,
    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. pkg/controller/job/job_controller.go

    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    	// A store of pods, populated by the podController
    	podStore corelisters.PodLister
    
    	// Jobs that need to be updated
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Orphan deleted pods that still have a Job tracking finalizer to be removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		},
    		"csi-nodestage-enabled-from-invalidSecretRefmissingname-to-invalidSecretRefmissingname": {
    			isExpectedFailure: false,
    			oldVolume:         getCSIVolumeWithSecret(validCSIVolume, invalidSecretRefmissingName, "nodeStage"),
    			newVolume:         getCSIVolumeWithSecret(validCSIVolume, invalidSecretRefmissingName, "nodeStage"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	// typical for storage backends that provide volumes as filesystems on block
    	// devices or as independent shared volumes.
    	// Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. okhttp/api/okhttp.api

    	public final fun maxAgeSeconds ()I
    	public final fun maxStaleSeconds ()I
    	public final fun minFreshSeconds ()I
    	public final fun mustRevalidate ()Z
    	public final fun noCache ()Z
    	public final fun noStore ()Z
    	public final fun noTransform ()Z
    	public final fun onlyIfCached ()Z
    	public static final fun parse (Lokhttp3/Headers;)Lokhttp3/CacheControl;
    	public final fun sMaxAgeSeconds ()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			deviceMountPath:  "path2",
    			shouldFail:       true,
    			createAttachment: true,
    			spec:             volume.NewSpecFromVolume(makeTestVol(pvName, testDriver)),
    		},
    		{
    			testName:         "pv with nodestage timeout should result in in-progress device",
    			volName:          fakecsi.NodeStageTimeOut_VolumeID,
    			devicePath:       "path1",
    			deviceMountPath:  "path2",
    			stageUnstageSet:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    					err := fmt.Errorf("plugin %q failed with: %w", pl.Name(), status.AsError())
    					errCh.SendErrorWithCancel(err, cancel)
    					return
    				}
    				pluginToNodeScores[pl.Name()][index] = framework.NodeScore{
    					Name:  nodeName,
    					Score: s,
    				}
    			}
    		}, metrics.Score)
    		if err := errCh.ReceiveError(); err != nil {
    			return nil, framework.AsStatus(fmt.Errorf("running Score plugins: %w", err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

            .body("B")
            .build(),
        )
        val request1 =
          Request.Builder()
            .url(server.url("/"))
            .cacheControl(CacheControl.Builder().noStore().build())
            .build()
        val response1 = client.newCall(request1).execute()
        assertThat(response1.body.string()).isEqualTo("A")
        val request2 =
          Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    	pod, err = clientset.CoreV1().Pods(pod.GetNamespace()).Create(ctx, pod, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Creating pod: %v", err)
    	}
    
    	// Await for the Pod to appear in the podStore to ensure that the pod exists when cleaning up the Job.
    	// In a production environment, there wouldn't be these guarantees, but the Pod would be cleaned up
    	// by the orphan pod worker, when the Pod finishes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    	svctest "k8s.io/kubernetes/pkg/api/service/testing"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    	endpointstore "k8s.io/kubernetes/pkg/registry/core/endpoint/storage"
    	podstore "k8s.io/kubernetes/pkg/registry/core/pod/storage"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	"k8s.io/kubernetes/pkg/registry/core/service/portallocator"
    	"k8s.io/kubernetes/pkg/registry/registrytest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top