Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for pvs1 (0.04 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    	// List them
    	verifyListPVs(t, cache, pvs1, "class1")
    	verifyListPVs(t, cache, pvs2, "class2")
    
    	// Delete a PV
    	deletedPV := pvs1["test-pv7"]
    	delete(pvs1, deletedPV.Name)
    	assumecache.DeleteTestObject(cache.AssumeCache, deletedPV)
    
    	// List them
    	verifyListPVs(t, cache, pvs1, "class1")
    	verifyListPVs(t, cache, pvs2, "class2")
    }
    
    func TestAssumeUpdatePVCache(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. cluster/gce/windows/configure.ps1

    Paweł Banaszewski <******@****.***> 1681484922 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("pv01", 10, "testdriver-01", "testvol-01"), false),
    		},
    		{
    			name:       "test ok 2",
    			nodeName:   "node02",
    			driverName: "driver02",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("pv01", 10, "driver02", "vol02"), false),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/index_test.go

    	}
    
    	pv1 := testVolume("pv1", "1Gi")
    	pv5 := testVolume("pv5", "5Gi")
    	pv8 := testVolume("pv8", "8Gi")
    	pvBadSize := testVolume("pvBadSize", "1Mi")
    	pvBadMode := testVolume("pvBadMode", "1Gi")
    	pvBadMode.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadOnlyMany}
    
    	index := newPersistentVolumeOrderedIndex()
    	index.store.Add(pv1)
    	index.store.Add(pv5)
    	index.store.Add(pv8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  5. pkg/controller/volume/protectionutil/utils_test.go

    import (
    	"testing"
    
    	"k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/kubernetes/pkg/volume/util"
    )
    
    const (
    	defaultNS      = "default"
    	defaultPVCName = "pvc1"
    	defaultPVName  = "pv1"
    )
    
    type TestCase struct {
    	name      string
    	obj       metav1.Object
    	finalizer string
    	result    bool
    }
    
    func pvc() *v1.PersistentVolumeClaim {
    	return &v1.PersistentVolumeClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 17 14:24:42 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  6. pkg/scheduler/util/assumecache/assume_cache_test.go

    			oldObj:    makeObj("pvc1", "5", ""),
    			newObj:    makeObj("pvc1", "4", ""),
    			expectErr: cmpopts.AnyError,
    		},
    		"fail-new-bad-version": {
    			oldObj:    makeObj("pvc1", "5", ""),
    			newObj:    makeObj("pvc1", "a", ""),
    			expectErr: cmpopts.AnyError,
    		},
    		"fail-old-bad-version": {
    			oldObj:    makeObj("pvc1", "a", ""),
    			newObj:    makeObj("pvc1", "5", ""),
    			expectErr: cmpopts.AnyError,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	XVF64GER VS2, VS1, A1                   // ec8209d8
    	XVF64GERNN VS2, VS1, A1                 // ec820fd0
    	XVF64GERNP VS2, VS1, A1                 // ec820bd0
    	XVF64GERPN VS2, VS1, A1                 // ec820dd0
    	XVF64GERPP VS2, VS1, A1                 // ec8209d0
    	XVI16GER2 VS1, VS2, A1                  // ec811258
    	XVI16GER2PP VS1, VS2, A1                // ec811358
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. src/internal/poll/sendfile_solaris.go

    	}
    
    	dst := dstFD.Sysfd
    	for remain > 0 {
    		n := maxSendfileSize
    		if int64(n) > remain {
    			n = int(remain)
    		}
    		pos1 := pos
    		n, err = syscall.Sendfile(dst, src, &pos1, n)
    		if err == syscall.EAGAIN || err == syscall.EINTR {
    			// partial write may have occurred
    			n = int(pos1 - pos)
    		}
    		if n > 0 {
    			pos += int64(n)
    			written += int64(n)
    			remain -= int64(n)
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	STXVH8X VS1, (R4)(R5)           // 7c252758
    	STXVH8X VS1, (R4)(R0)           // 7c202758
    	STXVH8X VS1, (R4)               // 7c202758
    	STXSDX VS1, (R3)(R4)            // 7c241d98
    	STXSDX VS1, (R4)(R0)            // 7c202598
    	STXSDX VS1, (R4)                // 7c202598
    	LXSIWAX (R3)(R4), VS1           // 7c241898
    	LXSIWAX (R3)(R0), VS1           // 7c201898
    	LXSIWAX (R3), VS1               // 7c201898
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		env.reactor.AddVolume(pv)
    	}
    
    }
    
    func (env *testEnv) updateVolumes(ctx context.Context, pvs []*v1.PersistentVolume) error {
    	for i, pv := range pvs {
    		newPv, err := env.client.CoreV1().PersistentVolumes().Update(ctx, pv, metav1.UpdateOptions{})
    		if err != nil {
    			return err
    		}
    		pvs[i] = newPv
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top