Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for set6 (0.06 sec)

  1. src/runtime/asm_s390x.s

    dropm:
    	MOVD	$runtime·dropm(SB), R3
    	BL	(R3)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    TEXT runtime·setg(SB), NOSPLIT, $0-8
    	MOVD	gg+0(FP), g
    	// This only happens if iscgo, so jump straight to save_g
    	BL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g in C TLS.
    // Must obey the gcc calling convention.
    TEXT setg_gcc<>(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/runtime/asm_loong64.s

    dropm:
    	MOVV	$runtime·dropm(SB), R4
    	JAL	(R4)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    TEXT runtime·setg(SB), NOSPLIT, $0-8
    	MOVV	gg+0(FP), g
    	// This only happens if iscgo, so jump straight to save_g
    	JAL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g called from gcc with g in R19
    TEXT setg_gcc<>(SB),NOSPLIT,$0-0
    	MOVV	R19, g
    	JAL	runtime·save_g(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/runtime/asm_mipsx.s

    dropm:
    	MOVW	$runtime·dropm(SB), R4
    	JAL	(R4)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    // This only happens if iscgo, so jump straight to save_g
    TEXT runtime·setg(SB),NOSPLIT,$0-4
    	MOVW	gg+0(FP), g
    	JAL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g in C TLS.
    // Must obey the gcc calling convention.
    TEXT setg_gcc<>(SB),NOSPLIT,$0
    	MOVW	R4, g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            e.message == """Type $type is not a valid model element type:
    - subtyping $ModelSet.name is not supported"""
        }
    
        def "model sets of model set are supported"() {
            given:
            def type = new ModelType<ModelSet<ModelSet<A1>>>() {}
    
            expect:
            store.getSchema(type) instanceof ModelSetSchema
        }
    
        static class MyBigInteger extends BigInteger {
            MyBigInteger(String s) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    //
    // When fn is nil (frame is saved g), call dropm instead,
    // this is used when the C thread is exiting.
    func cgocallback(fn, frame, ctxt uintptr)
    
    func gogo(buf *gobuf)
    
    func asminit()
    func setg(gg *g)
    func breakpoint()
    
    // reflectcall calls fn with arguments described by stackArgs, stackArgsSize,
    // frameSize, and regArgs.
    //
    // Arguments passed on the stack and space for return values passed on the stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		fp         = buildReg("F0 F2 F4 F6 F8 F10 F12 F14 F16 F18 F20 F22 F24 F26 F28 F30")
    		lo         = buildReg("LO")
    		hi         = buildReg("HI")
    		callerSave = gp | fp | lo | hi | buildReg("g") // runtime.setg (and anything calling it) may clobber g
    		r1         = buildReg("R1")
    		r2         = buildReg("R2")
    		r3         = buildReg("R3")
    		r4         = buildReg("R4")
    		r5         = buildReg("R5")
    	)
    	// Common regInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    	// Program Priority Register prior to the wait loop and set it
    	// back to default afterwards. On Linux, the default priority is
    	// medium-low. For details, see page 837 of the ISA 3.0.
    	OR	R1, R1, R1	// Set PPR priority to low
    again:
    	SUB	$1, R7
    	CMP	$0, R7
    	BNE	again
    	OR	R6, R6, R6	// Set PPR priority back to medium-low
    	RET
    
    // Save state of caller into g->sched,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/runtime/asm_arm64.s

    	// frame for the call at SP+8, set up argument registers,
    	// set the LR as the signal PC + 4, set the PC to the function
    	// to call, set R26 to point to the closure (if a closure call),
    	// and resume execution.
    	//
    	// If the function returns, this will set R20 to 1 and invoke
    	// BRK. The debugger can then inspect any return value saved
    	// on the stack at SP+8 and in registers. To resume execution,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "SUBSshiftRL", argLength: 2, reg: gp21carry, asm: "SUB", aux: "Int32"}, // arg0 - arg1>>auxInt, unsigned shift, set carry flag
    		{name: "SUBSshiftRA", argLength: 2, reg: gp21carry, asm: "SUB", aux: "Int32"}, // arg0 - arg1>>auxInt, signed shift, set carry flag
    		{name: "RSBSshiftLL", argLength: 2, reg: gp21carry, asm: "RSB", aux: "Int32"}, // arg1<<auxInt - arg0, set carry flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ====
    
    NOTE: Only Gradle versions 7 or higher can be explicitly targeted by a variant, as support for this was only added in Gradle 7.
    
    First, we declare a separate _source set_ and a _feature variant_ for our Gradle 7 plugin variant.
    Then, we do some specific wiring to turn the feature into a proper Gradle plugin variant:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top