Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 330 for ctr1 (0.04 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassAndFunctionContextReceivers.capturing.txt

    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
        R|Test|
    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
        R|Test|
    ContextReceiver[name: Ctx3; isMutated: false; displayText: this@Ctx3]
        context(R|Ctx3|, R|Ctx4|)
        fun foo(): R|kotlin/Unit|
        R|Ctx3|
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 14 15:22:43 UTC 2023
    - 574 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/continuous/ContinuousIntegrationTestFixtureTest.groovy

            gradleHandle.getStandardOutput() >> '''
    :sometask
    
    BUILD SUCCESSFUL in 1s
    
    Waiting for changes to input files... (ctrl-d then enter to exit)
    new file: /some/new/file.txt
    Change detected, executing build...
    :sometask
    
    BUILD SUCCESSFUL in 1s
    
    Waiting for changes to input files... (ctrl-d then enter to exit)
    '''
            when:
            sampleTest.succeeds("sometask")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

        // This method is made package-private for testing purposes
        void applyResumptionProperties(MavenExecutionRequest request, Properties properties) {
            String str1 = request.getResumeFrom();
            if (properties.containsKey(REMAINING_PROJECTS) && !(str1 != null && !str1.isEmpty())) {
                String propertyValue = properties.getProperty(REMAINING_PROJECTS);
                Stream.of(propertyValue.split(PROPERTY_DELIMITER))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 06 08:51:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    	// Existing counter?
    	var ctr *Counter
    	for _, s := range c.stacks {
    		if eq(s.pcs, pcs) {
    			if s.counter != nil {
    				ctr = s.counter
    				break
    			}
    		}
    	}
    
    	if ctr == nil {
    		// Create new counter.
    		ctr = &Counter{
    			name: EncodeStack(pcs, c.name),
    			file: c.file,
    		}
    		c.stacks = append(c.stacks, stack{pcs: pcs, counter: ctr})
    	}
    
    	ctr.Inc()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/admission_test.go

    	successCases := []testCase{
    		{
    			pod:        validPod("ctr-min-cpu-request", 1, getResourceRequirements(getComputeResourceList("100m", ""), getComputeResourceList("", ""))),
    			limitRange: createLimitRange(api.LimitTypeContainer, getComputeResourceList("50m", ""), api.ResourceList{}, api.ResourceList{}, api.ResourceList{}, api.ResourceList{}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildCancellationIntegrationTest.groovy

        TestFile setupJavaProject() {
            buildFile.text = "apply plugin: 'java'"
            testDirectory.createDir('src/main/java')
        }
    
        def "can cancel continuous build by ctrl+d"() {
            given:
            setupJavaProject()
    
            when:
            succeeds("build")
    
            then:
            noExceptionThrown()
    
            when:
            if (inputBefore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/coverage/test/counter_test.go

    	allfuncs := [][]decodecounter.FuncPayload{}
    	ctrs := []uint32{}
    	q := uint32(0)
    	var cdfw *encodecounter.CoverageDataWriter
    	for idx := 0; idx < numSegments; idx++ {
    		args[fmt.Sprintf("seg%d", idx)] = "x"
    		q += 7
    		ctrs = append(ctrs, q)
    		funcs := []decodecounter.FuncPayload{}
    		for k := 0; k < idx+1; k++ {
    			c := make([]uint32, len(ctrs))
    			copy(c, ctrs)
    			funcs = append(funcs, mkfunc(uint32(idx), uint32(k), c))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VLM   (R5), KEY0, KEY1
    	VLL   R0, (R6), NONCE
    	VZERO M0
    	VLEIB $7, $32, M0
    	VSRLB M0, NONCE, NONCE
    
    	// initialize counter values
    	VLREPF (R7), CTR
    	VZERO  INC
    	VLEIF  $1, $1, INC
    	VLEIF  $2, $2, INC
    	VLEIF  $3, $3, INC
    	VAF    INC, CTR, CTR
    	VREPIF $4, INC
    
    chacha:
    	VREPF $0, J0, X0
    	VREPF $1, J0, X1
    	VREPF $2, J0, X2
    	VREPF $3, J0, X3
    	VREPF $0, KEY0, X4
    	VREPF $1, KEY0, X5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/secondClassContextReceiver.capturing.txt

    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 14 15:22:43 UTC 2023
    - 145 bytes
    - Viewed (0)
Back to top