Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 166 for ctr1 (0.07 sec)

  1. src/cmd/compile/internal/ssa/nilcheck_test.go

    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Goto("checkPtr")),
    		Bloc("checkPtr",
    			Valu("ptr1", OpLoad, ptrType, 0, nil, "sb", "mem"),
    			Valu("bool1", OpIsNonNil, c.config.Types.Bool, 0, nil, "ptr1"),
    			If("bool1", "secondCheck", "exit")),
    		Bloc("secondCheck",
    			Valu("bool2", OpIsNonNil, c.config.Types.Bool, 0, nil, "ptr1"),
    			If("bool2", "extra", "exit")),
    		Bloc("extra",
    			Goto("exit")),
    		Bloc("exit",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	}
    }
    
    func TestGetTrustAnchorsByName(t *testing.T) {
    	ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
    	defer cancel()
    
    	ctb1 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb1",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root1"),
    		},
    	}
    
    	ctb2 := &certificatesv1alpha1.ClusterTrustBundle{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/crypto/aes/gcm_arm64.s

    	VEOR	ACC1.B16, ACC1.B16, ACC1.B16
    	VEOR	ACCM.B16, ACCM.B16, ACCM.B16
    	// Prepare initial counter, and the increment vector
    	VLD1	(ctrPtr), [CTR.B16]
    	VEOR	INC.B16, INC.B16, INC.B16
    	MOVD	$1, H0
    	VMOV	H0, INC.S[3]
    	VREV32	CTR.B16, CTR.B16
    	VADD	CTR.S4, INC.S4, CTR.S4
    	// Skip to <8 blocks loop
    	CMP	$128, srcPtrLen
    
    	MOVD	ks, H0
    	// For AES-128 round keys are stored in: K0 .. K10, KLAST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/delete_test.go

    				// Bind the volume to resurrected claim (this should never
    				// happen)
    				claim := newClaim("claim8-7", "uid8-7", "10Gi", "volume8-7", v1.ClaimBound, nil)
    				reactor.AddClaimBoundToVolume(claim)
    				ctrl.claims.Add(claim)
    			}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top