Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 104 for tcCall (0.14 sec)

  1. src/runtime/asm_loong64.s

    	MOVV	(g_sched+gobuf_sp)(g), R19
    	MOVV	R19, R3
    
    	// call target function
    	MOVV	0(REGCTXT), R6	// code pointer
    	JAL	(R6)
    
    	// switch back to g
    	MOVV	g_m(g), R4
    	MOVV	m_curg(R4), g
    	JAL	runtime·save_g(SB)
    	MOVV	(g_sched+gobuf_sp)(g), R3
    	MOVV	R0, (g_sched+gobuf_sp)(g)
    	RET
    
    noswitch:
    	// already on m stack, just call directly
    	// Using a tail call here cleans up tracebacks since we won't stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            override fun runCompileBuildOperation(scriptPath: String, stage: String, action: () -> String): String =
    
                buildOperationRunner.call(object : CallableBuildOperation<String> {
    
                    override fun call(context: BuildOperationContext): String =
                        action().also {
                            context.setResult(object : Result {})
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. internal/grid/grid_test.go

    	start := time.Now()
    	req := testRequest{Num: 1, String: testPayload}
    	resp, err := h1.Call(context.Background(), remoteConn, &req)
    	errFatal(err)
    	if resp.OrgString != testPayload {
    		t.Errorf("want %q, got %q", testPayload, resp.OrgString)
    	}
    	t.Log("Roundtrip:", time.Since(start))
    	h1.PutResponse(resp)
    
    	start = time.Now()
    	resp, err = h2.Call(context.Background(), remoteConn, &testRequest{Num: 1, String: testPayload})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    		return b.Controls[:1]
    	}
    	return b.Controls[:2]
    }
    
    // SetControl removes all existing control values and then adds
    // the control value provided. The number of control values after
    // a call to SetControl will always be 1.
    func (b *Block) SetControl(v *Value) {
    	b.ResetControls()
    	b.Controls[0] = v
    	v.Uses++
    }
    
    // ResetControls sets the number of controls for the block to 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache_test.go

    		t.Fatal(err)
    	}
    
    	// Expect update callback
    	u.Expect(map[string]int{workloadResource: 1})
    	// On the next generate call, we should get the new cert
    	checkSecret(t, sc, workloadResource, security.SecretItem{
    		ResourceName:     workloadResource,
    		CertificateChain: testcerts.RotatedCert,
    		PrivateKey:       testcerts.RotatedKey,
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    	Flag_locationlists bool
    	Flag_noRefName     bool   // do not include referenced symbol names in object file
    	Retpoline          bool   // emit use of retpoline stubs for indirect jmp/call
    	Flag_maymorestack  string // If not "", call this function before stack checks
    	Bso                *bufio.Writer
    	Pathname           string
    	Pkgpath            string           // the current package's import path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/ureader.go

    	if implicit {
    		iface.MarkImplicit()
    	}
    
    	// We need to call iface.Complete(), but if there are any embedded
    	// defined types, then we may not have set their underlying
    	// interface type yet. So we need to defer calling Complete until
    	// after we've called SetUnderlying everywhere.
    	//
    	// TODO(mdempsky): After CL 424876 lands, it should be safe to call
    	// iface.Complete() immediately.
    	r.p.ifaces = append(r.p.ifaces, iface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/runtime/iface.go

    	itabTable     = &itabTableInit                    // pointer to current table
    	itabTableInit = itabTableType{size: itabInitSize} // starter table
    )
    
    // Note: change the formula in the mallocgc call in itabAdd if you change these fields.
    type itabTableType struct {
    	size    uintptr             // length of entries array. Always a power of 2.
    	count   uintptr             // current number of filled entries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. cmd/admin-handlers-idp-ldap.go

    		return
    	}
    
    	if err := par.IsValid(); err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminConfigBadJSON), r.URL)
    		return
    	}
    
    	// Call IAM subsystem
    	updatedAt, addedOrRemoved, _, err := globalIAMSys.PolicyDBUpdateLDAP(ctx, isAttach, par)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. cmd/metacache-server-pool.go

    	// listObjects calls, versioned based listing cannot
    	// filter out between versions 'obj' cannot be truncated
    	// in such a manner, so look for skipping an object only
    	// for regular ListObjects() call only.
    	if !o.Versioned && !o.V1 {
    		fi, err := obj.fileInfo(o.Bucket)
    		if err != nil {
    			return
    		}
    		objInfo := fi.ToObjectInfo(o.Bucket, obj.name, versioned)
    		if o.Lifecycle != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top