Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pvs2 (0.09 sec)

  1. 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)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	XXLOR VS1, VS2, VS3             // f0611490
    	XXLORC VS1, VS2, VS3            // f0611550
    	XXLORQ VS1, VS2, VS3            // f0611490
    	XXLXOR VS1, VS2, VS3            // f06114d0
    	XXSEL VS1, VS2, VS3, VS4        // f08110f0
    	XXSEL VS33, VS34, VS35, VS36    // f08110ff
    	XXSEL V1, V2, V3, V4            // f08110ff
    	XXMRGHW VS1, VS2, VS3           // f0611090
    	XXMRGLW VS1, VS2, VS3           // f0611190
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    		{
    			name:                "attacher error",
    			nodeName:            "node02",
    			attachID:            getAttachmentName("vol02", "driver02", "node02"),
    			spec:                volume.NewSpecFromPersistentVolume(makeTestPV("pv02", 10, "driver02", "vol02"), false),
    			injectAttacherError: true,
    			shouldFail:          true,
    		},
    		{
    			name:       "missing spec",
    			nodeName:   "node02",
    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. src/go/printer/nodes.go

    }
    
    // bodySize is like nodeSize but it is specialized for *ast.BlockStmt's.
    func (p *printer) bodySize(b *ast.BlockStmt, maxSize int) int {
    	pos1 := b.Pos()
    	pos2 := b.Rbrace
    	if pos1.IsValid() && pos2.IsValid() && p.lineFor(pos1) != p.lineFor(pos2) {
    		// opening and closing brace are on different lines - don't make it a one-liner
    		return maxSize + 1
    	}
    	if len(b.List) > 5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    							},
    						},
    					},
    					Delegate: &networking.Delegate{
    						Name:      "vs2",
    						Namespace: "ns2",
    					},
    				},
    			},
    		},
    	}
    	vs2 := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "vs2",
    			Namespace:        "ns2",
    		},
    		Spec: &networking.VirtualService{
    			Hosts:    []string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache_test.go

    				addNode(0), addPodWithPVC(0), updateSnapshot(), removePodWithPVC(0), addPodWithPVC(2), updateSnapshot(),
    			},
    			expected:           []*v1.Node{nodes[0]},
    			expectedUsedPVCSet: sets.New("test-ns/test-pvc2"),
    		},
    		{
    			name: "Add then Remove pod with PVC and add same pod again",
    			operations: []operation{
    				addNode(0), addPodWithPVC(0), updateSnapshot(), removePodWithPVC(0), addPodWithPVC(0), updateSnapshot(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      const int64_t pts1[] = {2, 4, -1, 8};
      tensorflow::PartialTensorShape(pts1).AsProto(&proto);
      proto.SerializeToString(&bytes1);
    
      const int64_t pts2[] = {1, 3, 5, 7};
      tensorflow::PartialTensorShape(pts2).AsProto(&proto);
      proto.SerializeToString(&bytes2);
    
      std::unique_ptr<const void*[]> list_ptrs;
      std::unique_ptr<size_t[]> list_lens;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// Two controllers bound two PVs to single claim. Test one of them
    			// wins and the second rolls back.
    			name: "10-2 - bind PV race",
    			initialVolumes: []*v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	fx.AssertEmpty(t, 0)
    
    	// create vs1 in nsA
    	createVirtualService(controller, "vs1", nsA, map[string]string{}, t)
    
    	// create vs1 in nsB
    	createVirtualService(controller, "vs2", nsB, map[string]string{}, t)
    
    	// expand namespaces to nsA and nsB with selectors (expect events svc3 and a full push event for nsB selected)
    	updateMeshConfig(
    		&meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    // KEEP THE SPACE SHUTTLE FLYING.
    // ==================================================================
    
    // Design:
    //
    // The fundamental key to this design is the bi-directional "pointer" between
    // PersistentVolumes (PVs) and PersistentVolumeClaims (PVCs), which is
    // represented here as pvc.Spec.VolumeName and pv.Spec.ClaimRef. The bi-
    // directionality is complicated to manage in a transactionless system, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top