Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,202 for tcCall (0.09 sec)

  1. pkg/test/framework/components/echo/common/call.go

    		err = opts.Check(result, err)
    		if err != nil {
    			err = fmt.Errorf("call failed from %s to %s (using %s): %v",
    				srcName, getTargetURL(opts), opts.Scheme, err)
    		}
    
    		return result, err
    	}
    
    	if opts.Retry.NoRetry {
    		// Retry is disabled, just send once.
    		t0 := time.Now()
    		defer func() {
    			scopes.Framework.Debugf("echo call complete with duration %v", time.Since(t0))
    		}()
    		return sendAndValidate()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Call.kt

     */
    package okhttp3
    
    import okio.IOException
    import okio.Timeout
    
    /**
     * A call is a request that has been prepared for execution. A call can be canceled. As this object
     * represents a single request/response pair (stream), it cannot be executed twice.
     */
    interface Call : Cloneable {
      /** Returns the original request that initiated this call. */
      fun request(): Request
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue5162.go

    			src = strings.Replace(src, "TWOS", "2"+strings.Repeat(", 2", i-1), -1)
    			fmt.Print(src)
    			tocall = append(tocall, fmt.Sprintf("CheckEq%d_%s", i, strings.Title(typ)))
    		}
    	}
    	fmt.Println("func main() {")
    	for _, fun := range tocall {
    		fmt.Printf("\t%s()\n", fun)
    		fmt.Printf("\t%sExtraVar()\n", fun)
    	}
    	fmt.Println("}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 19:01:50 UTC 2013
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/ld_test.go

    	for i := 0; i < 1<<17; i++ {
    		fmt.Fprintf(buf, "\tADD $0, X0, X0\n")
    	}
    	fmt.Fprintf(buf, "\tCALL b(SB)\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT b(SB),$0-0\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT c(SB),$0-0\n")
    	fmt.Fprintf(buf, "\tCALL b(SB)\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT ·d(SB),0,$0-0\n")
    	for i := 0; i < 1<<17; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/syscall/mkasm.go

    		}
    		fn := line[5 : len(line)-13]
    		if !trampolines[fn] {
    			trampolines[fn] = true
    			fmt.Fprintf(&out, "TEXT ·%s_trampoline(SB),NOSPLIT,$0-0\n", fn)
    			if goos == "openbsd" && arch == "ppc64" {
    				fmt.Fprintf(&out, "\tCALL\t%s(SB)\n", fn)
    				fmt.Fprintf(&out, "\tRET\n")
    			} else {
    				fmt.Fprintf(&out, "\tJMP\t%s(SB)\n", fn)
    			}
    		}
    	}
    	err = os.WriteFile(fmt.Sprintf("zsyscall_%s_%s.s", goos, arch), out.Bytes(), 0644)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. hack/verify-test-images.sh

    find_e2e_test_untagged_gcr_images() {
        grep -o -E -e 'gcr.io/[-a-z0-9/_:.]+' test/e2e/*.go | grep -v -E "gcr.io/.*:" | cut -d ":" -f 1 | LC_ALL=C sort -u
    }
    
    
    # Find mentions of latest gcr.io images in test/e2e/*.go
    find_e2e_test_latest_gcr_images() {
        grep -o -E -e 'gcr.io/.*:latest' test/e2e/*.go | cut -d ":" -f 1 | LC_ALL=C sort -u
    }
    
    if find_e2e_test_latest_gcr_images; then
      echo "!!! Found :latest gcr.io images in the above files"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. pkg/volume/flexvolume/driver-call.go

    		Command: command,
    		Timeout: timeout,
    		plugin:  plugin,
    		args:    []string{command},
    	}
    }
    
    // Append appends arg into driver call argument list
    func (dc *DriverCall) Append(arg string) {
    	dc.args = append(dc.args, arg)
    }
    
    // AppendSpec appends volume spec to driver call argument list
    func (dc *DriverCall) AppendSpec(spec *volume.Spec, host volume.VolumeHost, extraOptions map[string]string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. test/fixedbugs/bug111.go

    // license that can be found in the LICENSE file.
    
    package main
    
    var ncall int;
    
    type Iffy interface {
    	Me() Iffy
    }
    
    type Stucky struct {
    	n int
    }
    
    func (s *Stucky) Me() Iffy {
    	ncall++;
    	return s
    }
    
    func main() {
    	s := new(Stucky);
    	i := s.Me();
    	j := i.Me();
    	j.Me();
    	if ncall != 3 {
    		panic("bug111")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 427 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s

    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
    	CALL	runtime·entersyscall(SB)
    	MOV	a1+8(FP), A0
    	MOV	a2+16(FP), A1
    	MOV	a3+24(FP), A2
    	MOV	trap+0(FP), A7	// syscall entry
    	ECALL
    	MOV	A0, r1+32(FP)	// r1
    	MOV	A1, r2+40(FP)	// r2
    	CALL	runtime·exitsyscall(SB)
    	RET
    
    TEXT ·RawSyscall(SB),NOSPLIT,$0-56
    	JMP	syscall·RawSyscall(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/syscall/asm_freebsd_riscv64.s

    // func Syscall(trap int64, a1, a2, a3 int64) (r1, r2, err int64)
    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	CALL	runtime·entersyscall(SB)
    	MOV	a1+8(FP), A0
    	MOV	a2+16(FP), A1
    	MOV	a3+24(FP), A2
    	MOV	trap+0(FP), T0	// syscall entry
    	ECALL
    	BNE	T0, ZERO, err
    	MOV	A0, r1+32(FP)	// r1
    	MOV	A1, r2+40(FP)	// r2
    	MOV	ZERO, err+48(FP)	// errno
    	CALL	runtime·exitsyscall(SB)
    	RET
    err:
    	MOV	$-1, T0
    	MOV	T0, r1+32(FP)	// r1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top