Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 339 for ctr1 (0.05 sec)

  1. plugin/pkg/admission/network/defaultingressclass/admission_test.go

    			expectedError:   nil,
    		},
    	}
    
    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			ctrl := newPlugin()
    			informerFactory := informers.NewSharedInformerFactory(nil, controller.NoResyncPeriodFunc())
    			ctrl.SetExternalKubeInformerFactory(informerFactory)
    			for _, c := range testCase.classes {
    				informerFactory.Networking().V1().IngressClasses().Informer().GetStore().Add(c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/indexbyte_ppc64x.s

    	BNE	CR6,foundat3	// Match found at R8+48 bytes, jump out
    
    	ADD	$64,R8
    	CMPU	R8,R9,CR1
    	BNE	CR1,loop64	// R8 != &s[len &^ 63]?
    
    	PCALIGN	$32
    	BEQ	notfound	// Is tail length 0? CR0 is set before entering loop64.
    
    	CMP	R4,$32		// Tail length >= 32, use cmp32 path.
    	CMP	R4,$16,CR1
    	BGE	cmp32
    
    	ADD	R8,R4,R9
    	ADD	$-16,R9
    	BLE	CR1,cmp64_tail_gt0
    
    cmp64_tail_gt16:	// Tail length 17 - 32
    	LXVD2X	(R0)(R8),V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    					api.DeprecatedAppArmorAnnotationKeyPrefix + "ctr": api.DeprecatedAppArmorAnnotationValueUnconfined,
    				},
    			},
    			Spec: api.PodSpec{
    				Containers: []api.Container{{Name: "ctr"}},
    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Equal(t, map[string]string{
    				api.DeprecatedAppArmorAnnotationKeyPrefix + "ctr": api.DeprecatedAppArmorAnnotationValueUnconfined,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/sys_openbsd_ppc64.s

    	// the value here doesn't really matter).
    	MOVD	$0, R3
    
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVW	sig+8(FP), R3
    	MOVD	info+16(FP), R4
    	MOVD	ctx+24(FP), R5
    	MOVD	fn+0(FP), R12
    	MOVD	R12, CTR
    	CALL	(CTR)			// Alignment for ELF ABI?
    	RET
    
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$16
    	// Go relies on R0 being $0 and we may have been executing non-Go code.
    	XOR	R0, R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/provision_test.go

    				func(ctrl *PersistentVolumeController, reactor *pvtesting.VolumeReactor) {
    					nodesIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    					node := &v1.Node{ObjectMeta: metav1.ObjectMeta{Name: "node1"}}
    					nodesIndexer.Add(node)
    					ctrl.NodeLister = corelisters.NewNodeLister(nodesIndexer)
    				}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    		klog.V(4).Infof("starting test %q", test.name)
    
    		// clone the claim, it's going to be modified
    		claim := test.claim.DeepCopy()
    
    		ctrl := newPlugin()
    		informerFactory := informers.NewSharedInformerFactory(nil, controller.NoResyncPeriodFunc())
    		ctrl.SetExternalKubeInformerFactory(informerFactory)
    		for _, c := range test.classes {
    			informerFactory.Storage().V1().StorageClasses().Informer().GetStore().Add(c)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. plugin/pkg/admission/network/denyserviceexternalips/admission_test.go

    	}, {
    		name:   "update: reduce externalIPs from front",
    		newSvc: makeSvc("2.2.2.2"),
    		oldSvc: makeSvc("1.1.1.1", "2.2.2.2"),
    	}}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			ctrl := newPlugin()
    
    			var op admission.Operation
    			var opt runtime.Object
    			if tc.oldSvc == nil {
    				op = admission.Create
    				opt = &metav1.CreateOptions{}
    			} else {
    				op = admission.Update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 05:36:44 UTC 2021
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ContinuousBuildCancellationCrossVersionSpec.groovy

        ${server.callFromBuild('sync')}
        latch.await()
    }
    """
        }
    
        def "logging does not include message to use ctrl-d to exit"() {
            when:
            runBuild {
                succeeds()
                cancel()
            }
    
            then:
            !result.output.contains("ctrl-d")
            result.output.contains(waitingMessage)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. cmd/shared-lock.go

    			case ld.lockContext <- lkctx:
    				// Send the lock context to anyone asking for it
    			}
    		}
    	}
    }
    
    func mergeContext(ctx1, ctx2 context.Context) (context.Context, context.CancelFunc) {
    	ctx, cancel := context.WithCancel(context.Background())
    	go func() {
    		select {
    		case <-ctx1.Done():
    		case <-ctx2.Done():
    		// The lock acquirer decides to cancel, exit this goroutine
    		case <-ctx.Done():
    		}
    
    		cancel()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 09:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top