Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 169 for ctr2 (0.04 sec)

  1. pkg/controller/volume/persistentvolume/framework_test.go

    	}
    	ctrl, err := NewController(ctx, params)
    	if err != nil {
    		return nil, fmt.Errorf("failed to construct persistentvolume controller: %v", err)
    	}
    	ctrl.eventRecorder = record.NewFakeRecorder(1000)
    	ctrl.volumeListerSynced = alwaysReady
    	ctrl.claimListerSynced = alwaysReady
    	ctrl.classListerSynced = alwaysReady
    	// Speed up the test
    	ctrl.createProvisionedPVInterval = 5 * time.Millisecond
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			test: func(ctrl *PersistentVolumeController, reactor *pvtesting.VolumeReactor, test controllerTest) error {
    				volume := ctrl.volumes.store.List()[0].(*v1.PersistentVolume)
    				reactor.DeleteVolumeEvent(volume)
    				err := wait.Poll(10*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    					return len(ctrl.volumes.store.ListKeys()) == 0, nil
    				})
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. src/debug/pe/testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2

    Than McIntosh <******@****.***> 1647953392 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 14:57:35 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  4. src/math/big/arith_ppc64x.s

    	BEQ     done
    	CMP     R7, R4
    	ISEL    $0, R7, R4, R7  // Take the lower bound of lengths of x,z
    	SLD     $3, R7, R7
    	SUB     R6, R3, R11     // dest - src
    	CMPU    R11, R7, CR2    // < len?
    	BLT     CR2, backward   // there is overlap, copy backwards
    	MOVD    $0, R14
    	// shlVU processes backwards, but added a forward copy option 
    	// since its faster on POWER
    repeat:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/doc.go

    The following is a brief description of the BC instruction and its commonly
    used operands.
    
    BC op1, op2, op3
    
    	  op1: type of branch
    	      16 -> bctr (branch on ctr)
    	      12 -> bcr  (branch if cr bit is set)
    	      8  -> bcr+bctr (branch on ctr and cr values)
    		4  -> bcr != 0 (branch if specified cr bit is not set)
    
    		There are more combinations but these are the most common.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    			TrustBundle: mustMakeRoot(t, "root1"),
    		},
    	}
    
    	ctb2 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb2",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root2"),
    		},
    	}
    
    	kc := fake.NewSimpleClientset(ctb1, ctb2)
    
    	informerFactory := informers.NewSharedInformerFactoryWithOptions(kc, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. plugin/pkg/admission/priority/admission_test.go

    		},
    	}
    
    	for _, test := range tests {
    		klog.V(4).Infof("starting test %q", test.name)
    		ctrl := NewPlugin()
    		if err := addPriorityClasses(ctrl, test.classesBefore); err != nil {
    			t.Errorf("Test %q: unable to add object to informer: %v", test.name, err)
    		}
    		pcName, defaultPriority, _, err := ctrl.getDefaultPriority()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 18:43:48 UTC 2022
    - 21.2K bytes
    - Viewed (0)
  8. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    		if test.updatedPVC != nil {
    			ctrl.pvcAddedUpdated(logger, test.updatedPVC)
    		}
    		switch {
    		case test.deletedPod != nil && test.updatedPod != nil && test.deletedPod.Namespace == test.updatedPod.Namespace && test.deletedPod.Name == test.updatedPod.Name:
    			ctrl.podAddedDeletedUpdated(logger, test.deletedPod, test.updatedPod, false)
    		case test.updatedPod != nil:
    			ctrl.podAddedDeletedUpdated(logger, nil, test.updatedPod, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func_test.go

    // TODO(matloob): choose a better name.
    func Goto(succ string) ctrl {
    	return ctrl{BlockPlain, "", []string{succ}}
    }
    
    // If specifies a BlockIf.
    func If(cond, sub, alt string) ctrl {
    	return ctrl{BlockIf, cond, []string{sub, alt}}
    }
    
    // Exit specifies a BlockExit.
    func Exit(arg string) ctrl {
    	return ctrl{BlockExit, arg, []string{}}
    }
    
    // Eq specifies a BlockAMD64EQ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		//
    		//0000z -> decrement ctr, b if ctr != 0 and CRbi == 0
    		//0001z -> decrement ctr, b if ctr == 0 and CRbi == 0
    		//001at -> b if CRbi == 0
    		//0100z -> decrement ctr, b if ctr != 0 and CRbi == 1
    		//0101z -> decrement ctr, b if ctr == 0 and CRbi == 1
    		//011at -> b if CRbi == 1
    		//1a00t -> decrement ctr, b if ctr != 0
    		//1a01t -> decrement ctr, b if ctr == 0
    		//1z1zz -> b always
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top