Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 662 for tcCall (0.09 sec)

  1. src/cmd/internal/obj/riscv/anames.go

    	"FCVTQWU",
    	"FCVTQLU",
    	"FSGNJQ",
    	"FSGNJNQ",
    	"FSGNJXQ",
    	"FEQQ",
    	"FLEQ",
    	"FLTQ",
    	"FCLASSQ",
    	"CSRRW",
    	"CSRRS",
    	"CSRRC",
    	"CSRRWI",
    	"CSRRSI",
    	"CSRRCI",
    	"ECALL",
    	"SCALL",
    	"EBREAK",
    	"SBREAK",
    	"MRET",
    	"SRET",
    	"DRET",
    	"WFI",
    	"SFENCEVMA",
    	"ADDUW",
    	"SH1ADD",
    	"SH1ADDUW",
    	"SH2ADD",
    	"SH2ADDUW",
    	"SH3ADD",
    	"SH3ADDUW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue15609.dir/call.go

    Dmitri Shuralyov <******@****.***> 1697569678 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 67 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/DefaultBuildCancellationToken.java

        public void cancel() {
            List<Runnable> toCall = new ArrayList<Runnable>();
            synchronized (lock) {
                if (cancelled) {
                    return;
                }
                cancelled = true;
                toCall.addAll(callbacks);
                callbacks.clear();
            }
    
            List<Throwable> failures = new ArrayList<Throwable>();
            for (Runnable callback : toCall) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. src/runtime/sys_freebsd_riscv64.s

    	MOV	sig+8(FP), A1	// arg 2 sig
    	MOV	$SYS_thr_kill, T0
    	ECALL
    	RET
    
    // func raiseproc(sig uint32)
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOV	$SYS_getpid, T0
    	ECALL
    	// arg 1 pid - already in A0
    	MOVW	sig+0(FP), A1	// arg 2
    	MOV	$SYS_kill, T0
    	ECALL
    	RET
    
    // func setitimer(mode int32, new, old *itimerval)
    TEXT runtime·setitimer(SB),NOSPLIT|NOFRAME,$0-24
    	MOVW	mode+0(FP), A0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top