Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for setB (0.06 sec)

  1. cmd/erasure-server-pool-decom.go

    	workerSize, err := env.GetInt(envDecomWorkers, len(pool.sets))
    	if err != nil {
    		decomLogIf(ctx, fmt.Errorf("invalid workers value err: %v, defaulting to %d", err, len(pool.sets)))
    		workerSize = len(pool.sets)
    	}
    
    	// Each decom worker needs one List() goroutine/worker
    	// add that many extra workers.
    	workerSize += len(pool.sets)
    
    	wk, err := workers.New(workerSize)
    	if err != nil {
    		return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  2. 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)
  3. 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)
  4. 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)
  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/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)
  7. 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)
  8. src/cmd/compile/internal/ssa/opGen.go

    		name:   "SETA",
    		argLen: 1,
    		asm:    x86.ASETHI,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETAE",
    		argLen: 1,
    		asm:    x86.ASETCC,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETO",
    		argLen: 1,
    		asm:    x86.ASETOS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. src/runtime/proc.go

    func (q *gQueue) push(gp *g) {
    	gp.schedlink = q.head
    	q.head.set(gp)
    	if q.tail == 0 {
    		q.tail.set(gp)
    	}
    }
    
    // pushBack adds gp to the tail of q.
    func (q *gQueue) pushBack(gp *g) {
    	gp.schedlink = 0
    	if q.tail != 0 {
    		q.tail.ptr().schedlink.set(gp)
    	} else {
    		q.head.set(gp)
    	}
    	q.tail.set(gp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K 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