Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 339 for ctr1 (0.23 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/secondClassContextReceiver.kt

    // LANGUAGE: +ContextReceivers
    
    // MODULE: context
    
    // FILE: context.kt
    class Ctx1
    class Ctx2
    
    context(Ctx2)
    fun useWithCtx2() = 3
    
    context(Ctx1, Ctx2)
    class Test {
        fun foo() {
            <caret_context>val x = 1
        }
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 365 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassAndFunctionContextReceivers.ir.txt

                  $context_receiver_0: GET_FIELD 'FIELD FIELD_FOR_CLASS_CONTEXT_RECEIVER name:contextReceiverField0 type:<root>.Ctx1 visibility:private [final] declared in <root>.Test' type=<root>.Ctx1 origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    		for {
    			if time.Now().After(timeout) {
    				t.Errorf("Test %q: timed out", test.name)
    				break
    			}
    			if ctrl.queue.Len() > 0 {
    				logger.V(5).Info("Non-empty events queue, processing one", "test", test.name, "queueLength", ctrl.queue.Len())
    				ctrl.processNextWorkItem(context.TODO())
    			}
    			if ctrl.queue.Len() > 0 {
    				// There is still some work in the queue, process it now
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. 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)
  5. src/context/afterfunc_test.go

    	ctx0 := &afterFuncContext{}
    	ctx1, cancel := context.WithCancel(ctx0)
    	defer cancel()
    	ctx0.cancel(context.Canceled)
    	<-ctx1.Done()
    }
    
    func TestCustomContextAfterFuncTimeout(t *testing.T) {
    	ctx0 := &afterFuncContext{}
    	ctx1, cancel := context.WithTimeout(ctx0, veryLongDuration)
    	defer cancel()
    	ctx0.cancel(context.Canceled)
    	<-ctx1.Done()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:58:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/runtime/rt0_aix_ppc64.s

    	MOVD 0(R19), R0
    	MOVD R2, 40(R1)
    	MOVD 8(R19), R2
    	MOVD R18, R3
    	MOVD R0, CTR
    	BL (CTR) // Return to AIX loader
    
    	// Launch rt0_go
    	MOVD 40(R1), R2
    	MOVD R14, R3 // argc
    	MOVD R15, R4 // argv
    	BL _main(SB)
    
    
    DEFINE_PPC64X_FUNCDESC(main, _main)
    TEXT _main(SB),NOSPLIT,$-8
    	MOVD $runtime·rt0_go(SB), R12
    	MOVD R12, CTR
    	BR (CTR)
    
    
    TEXT _rt0_ppc64_aix_lib(SB),NOSPLIT,$-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactCoordinateFactory.java

                if (request.getType() != null) {
                    type = session.getSession().getArtifactTypeRegistry().get(request.getType());
                }
                String str1 = request.getClassifier();
                String classifier = str1 != null && !str1.isEmpty()
                        ? request.getClassifier()
                        : type != null ? type.getClassifier() : "";
                String str = request.getExtension();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.8K 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/runtime/rt0_linux_ppc64le.s

    	// Synchronous initialization.
    	MOVD	$runtime·libpreinit(SB), R12
    	MOVD	R12, CTR
    	BL	(CTR)
    
    	// Create a new thread to do the runtime initialization and return.
    	MOVD	_cgo_sys_thread_create(SB), R12
    	CMP	$0, R12
    	BEQ	nocgo
    	MOVD	$_rt0_ppc64le_linux_lib_go(SB), R3
    	MOVD	$0, R4
    	MOVD	R12, CTR
    	BL	(CTR)
    	BR	done
    
    nocgo:
    	MOVD	$0x800000, R12                     // stacksize = 8192KB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. plugin/pkg/admission/storage/persistentvolume/resize/admission_test.go

    				return strings.Contains(err.Error(), "Only bound persistent volume claims can be expanded")
    			},
    		},
    	}
    
    	ctrl := newPlugin()
    	informerFactory := informers.NewSharedInformerFactory(nil, controller.NoResyncPeriodFunc())
    	ctrl.SetExternalKubeInformerFactory(informerFactory)
    	err := ctrl.ValidateInitialization()
    	if err != nil {
    		t.Fatalf("neither pv lister nor storageclass lister can be nil")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top