Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,635 for Koop (0.04 sec)

  1. src/cmd/cgo/internal/test/issue9400/asm_amd64x.s

    	// will clobber the test pattern created by the caller
    	ADDQ	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, ·Baton(SB)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	·Baton(SB), AX
    	CMPL	AX, $0
    	JNE	loop
    
    	// Restore stack
    	SUBQ	$(1024 * 8), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 589 bytes
    - Viewed (0)
  2. src/internal/bytealg/indexbyte_arm64.s

    	CBNZ	R6, tail
    
    loop:
    	VLD1.P	(R3), [V1.B16, V2.B16]
    	SUBS	$0x20, R2, R2
    	VCMEQ	V0.B16, V1.B16, V3.B16
    	VCMEQ	V0.B16, V2.B16, V4.B16
    	// If we're out of data we finish regardless of the result
    	BLS	end
    	// Use a fast check for the termination condition
    	VORR	V4.B16, V3.B16, V6.B16
    	VADDP	V6.D2, V6.D2, V6.D2
    	VMOV	V6.D[0], R6
    	// We're not out of data, loop if we haven't found the character
    	CBZ	R6, loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/rangeloop/rangeloop.go

    // This file contains tests for the rangeloop checker.
    
    package rangeloop
    
    func RangeLoopTests() {
    	var s []int
    	for i, v := range s {
    		go func() {
    			println(i) // ERROR "loop variable i captured by func literal"
    			println(v) // ERROR "loop variable v captured by func literal"
    		}()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 452 bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64.s

    // LTYPEX spec9	{ outcode($1, &$2); }
    	PINSRW	$4, AX, X2
    	PINSRW	$4, foo+4(SB), X2
    
    // LTYPERT spec10	{ outcode($1, &$2); }
    	JCS	2(PC)
    	RETFL	$4
    
    // Was bug: LOOP is a branch instruction.
    	JCS	2(PC)
    loop:
    	LOOP	loop // LOOP
    
    	// Intel pseudonyms for our own renamings.
    	PADDD	M2, M1 // PADDL M2, M1
    	MOVDQ2Q	X1, M1 // MOVQ X1, M1
    	MOVNTDQ	X1, (AX)	// MOVNTO X1, (AX)
    	MOVOA	(AX), X1	// MOVO (AX), X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cloudresource/cloud_request_manager.go

    		// nodeAddressesMonitor is a monitor that guards a result (nodeAddresses,
    		// nodeAddressesErr) of the sync loop under the condition that a result has
    		// been saved at least once. The semantics here are:
    		//
    		// * Readers of the result will wait on the monitor until the first result
    		//   has been saved.
    		// * The sync loop (i.e. the only writer), will signal all waiters every
    		//   time it updates the result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. test/typecheckloop.go

    // Verify that constant definition loops are caught during
    // typechecking and that the errors print correctly.
    
    package main
    
    const A = 1 + B // ERROR "constant definition loop\n.*A uses B\n.*B uses C\n.*C uses A|initialization cycle"
    const B = C - 1 // ERROR "constant definition loop\n.*B uses C\n.*C uses B|initialization cycle"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 528 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    		return true
    	})
    	return nil, nil
    }
    
    // reportCaptured reports a diagnostic stating a loop variable
    // has been captured by a func literal if checkStmt has escaping
    // references to vars. vars is expected to be variables updated by a loop statement,
    // and checkStmt is expected to be a statements from the body of a func literal in the loop.
    func reportCaptured(pass *analysis.Pass, vars []types.Object, checkStmt ast.Stmt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/internal/bytealg/index_ppc64x.s

    	ADD      $19, R7, R9  // Number of string bytes for loop
    	CMP      R9, LASTBYTE // Compare against last byte of string
    	BLT      index3loop2  // If within, continue this loop
    	CMP      R7, LASTSTR  // Compare against last start byte
    	BLT      index2to16   // Process remainder
    	VSPLTISB $0, V3       // Special case for last 16 bytes
    	BR       index3loop   // Continue this loop
    
    	// Loop to process 4 byte separator
    	// string[0:16] in V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                }
            """)
            withFile("buildSrc/src/main/kotlin/my-plugin.gradle.kts", """
                extensions.create<MyExtension>("my")
                tasks.register("noop")
            """)
            withBuildScript("""
                plugins { id("my-plugin") }
    
                extensions.getByType(MyExtension::class).some("api.get")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9400/asm_386.s

    	// will clobber the test pattern created by the caller
    	ADDL	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, (BX)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	(BX), AX
    	CMPL	AX, $0
    	JNE	loop
    
    	// Restore stack
    	SUBL	$(1024 * 8), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 575 bytes
    - Viewed (0)
Back to top