Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 662 for tcCall (0.1 sec)

  1. test/inline_endian.go

    	b = binary.LittleEndian.AppendUint16(b, 16) // ERROR "inlining call to binary.littleEndian.AppendUint16"
    	return b
    }
    
    func appendBigEndian(b []byte) []byte { // ERROR "can inline appendBigEndian" "leaking param: b to result ~r0 level=0"
    	b = binary.BigEndian.AppendUint64(b, 64) // ERROR "inlining call to binary.bigEndian.AppendUint64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. hack/grab-profiles.sh

    kube::util::trap_add "kill $SSH_PID" EXIT
    kube::util::trap_add "kill $SSH_PID" SIGTERM
    
    requested_profiles=$(echo "${requested_profiles}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    profile_components=$(echo "${profile_components}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    kubelet_addresses=$(echo "${kubelet_addresses}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    echo "requested profiles: ${requested_profiles}"
    echo "flags for heap profile: ${mem_pprof_flags}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue48835.go

    func f() {
    	var x int
    	f0(1)              // ERROR "too many arguments in call to f0\n\thave \(number\)\n\twant \(\)"
    	f0(x)              // ERROR "too many arguments in call to f0\n\thave \(int\)\n\twant \(\)"
    	f1()               // ERROR "not enough arguments in call to f1\n\thave \(\)\n\twant \(int\)"
    	f1(1, 2)           // ERROR "too many arguments in call to f1\n\thave \(number, number\)\n\twant \(int\)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 20:57:46 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4468.go

    	t T
    }
    
    func F() {
    	go F            // ERROR "must be function call"
    	defer F         // ERROR "must be function call"
    	go (F)		// ERROR "must be function call|must not be parenthesized"
    	defer (F)	// ERROR "must be function call|must not be parenthesized"
    	go (F())	// ERROR "must be function call|must not be parenthesized"
    	defer (F())	// ERROR "must be function call|must not be parenthesized"
    	var s S
    	(&s.t).F()
    	go (&s.t).F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 759 bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/serviceentry_simulation_test.go

    				{
    					Name: "HTTP call",
    					Call: simulation.Call{
    						Address:    "240.240.91.120",
    						Port:       80,
    						HostHeader: "istio.io",
    						Protocol:   simulation.HTTP,
    					},
    					Result: simulation.Result{
    						ListenerMatched: "0.0.0.0_80",
    						ClusterMatched:  "outbound|80||istio.io",
    					},
    				},
    				{
    					Name: "HTTPS call",
    					Call: simulation.Call{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/runtime/sys_plan9_386.s

    	get_tls(BX)
    	MOVL	DX, g(BX)
    
    	CALL	runtime·stackcheck(SB)	// smashes AX, CX
    	CALL	runtime·mstart(SB)
    
    	// Exit the thread.
    	MOVL	$0, 0(SP)
    	CALL	runtime·exits(SB)
    	JMP	0(PC)
    
    // void sigtramp(void *ureg, int8 *note)
    TEXT runtime·sigtramp(SB),NOSPLIT,$0
    	get_tls(AX)
    
    	// check that g exists
    	MOVL	g(AX), BX
    	CMPL	BX, $0
    	JNE	3(PC)
    	CALL	runtime·badsignal2(SB) // will exit
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/swig/testdata/callback/main.go

    	cb := NewCallback()
    
    	c.SetCallback(cb)
    	s := c.Call()
    	if s != "Callback::run" {
    		fatal("unexpected string from Call: %q", s)
    	}
    	c.DelCallback()
    }
    
    func testCallback() {
    	c := NewCaller()
    	cb := NewDirectorCallback(&GoCallback{})
    	c.SetCallback(cb)
    	s := c.Call()
    	if s != "GoCallback.Run" {
    		fatal("unexpected string from Call with callback: %q", s)
    	}
    	c.DelCallback()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    func (b *JobSpecApplyConfiguration) WithCompletionMode(value batchv1.CompletionMode) *JobSpecApplyConfiguration {
    	b.CompletionMode = &value
    	return b
    }
    
    // WithSuspend sets the Suspend field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Suspend field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    		if !push {
    			return true
    		}
    		call := n.(*ast.CallExpr)
    		if !isHTTPFuncOrMethodOnClient(pass.TypesInfo, call) {
    			return true // the function call is not related to this check.
    		}
    
    		// Find the innermost containing block, and get the list
    		// of statements starting with the one containing call.
    		stmts, ncalls := restOfBlock(stack)
    		if len(stmts) < 2 {
    			// The call to the http function is the last statement of the block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosure.ir.txt

              BLOCK_BODY
                CALL 'public final fun consume (n: kotlin.Int): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
                  n: GET_VAR 'val x: kotlin.Int [val] declared in <root>.test' type=kotlin.Int origin=null
            CALL 'local final fun call (): kotlin.Unit declared in <root>.test' type=kotlin.Unit origin=null
      FILE fqName:<root> fileName:fragment.kt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top