Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for rtcall (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // For prefix case, the last argument is a call to get(...).inc().
                    val operationCall = lastArg as? FirFunctionCall ?: return null
                    val operationPartiallyAppliedSymbol = operationCall.toPartiallyAppliedSymbol(arrayAccessExpression) ?: return null
                    // The get call is the explicit receiver of this operation call
                    val getCall = operationCall.explicitReceiver as? FirFunctionCall ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. src/internal/poll/fd_unix.go

    		return n, len(oob), err
    	}
    }
    
    // Accept wraps the accept network call.
    func (fd *FD) Accept() (int, syscall.Sockaddr, string, error) {
    	if err := fd.readLock(); err != nil {
    		return -1, nil, "", err
    	}
    	defer fd.readUnlock()
    
    	if err := fd.pd.prepareRead(fd.isFile); err != nil {
    		return -1, nil, "", err
    	}
    	for {
    		s, rsa, errcall, err := accept(fd.Sysfd)
    		if err == nil {
    			return s, rsa, "", err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        This op returns a scalar string tensor containing the restored variable name, which can be
        used as a key within the runtime, as well as a future for the tensor.
    
        The `tf.IfrtCall` kernel uses the output $array_key.
        Other ops executed by TFRT may make use of $tensor_future.
      }];
    
      let arguments = (ins
        TFTensorType:$variable,
        DefaultValuedAttr<BoolAttr, "false">:$used_by_host
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/internal/poll/fd_windows.go

    		errno, ok := err.(syscall.Errno)
    		if !ok {
    			return syscall.InvalidHandle, nil, 0, errcall, err
    		}
    		switch errno {
    		case syscall.ERROR_NETNAME_DELETED, syscall.WSAECONNRESET:
    			// ignore these and try again
    		default:
    			return syscall.InvalidHandle, nil, 0, errcall, err
    		}
    	}
    }
    
    // Seek wraps syscall.Seek.
    func (fd *FD) Seek(offset int64, whence int) (int64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    		}
    		rs := r.Sym()
    		rr.Xsym = loader.Sym(ldr.SymSect(rs).Sym)
    		rr.Xadd = r.Add() + ldr.SymValue(rs) - int64(ldr.SymSect(rs).Vaddr)
    
    	// r.Sym() can be 0 when CALL $(constant) is transformed from absolute PC to relative PC call.
    	case objabi.R_GOTPCREL, objabi.R_CALL, objabi.R_PCREL:
    		rs := r.Sym()
    		if rt == objabi.R_GOTPCREL && target.IsDynlinkingGo() && target.IsDarwin() && rs != 0 {
    			rr.Xadd = r.Add()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/wasm/asm.go

    				}
    				wfn.Write(P[off:r.Off()])
    				off = r.Off()
    				rs := r.Sym()
    				switch r.Type() {
    				case objabi.R_ADDR:
    					writeSleb128(wfn, ldr.SymValue(rs)+r.Add())
    				case objabi.R_CALL:
    					writeSleb128(wfn, int64(len(hostImports))+ldr.SymValue(rs)>>16-funcValueOffset)
    				case objabi.R_WASMIMPORT:
    					writeSleb128(wfn, hostImportMap[rs])
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    		}
    
    	case obj.ACALL:
    		switch p.To.Type {
    		case obj.TYPE_MEM:
    			// Handled in preprocess.
    		case obj.TYPE_REG:
    			p.As = AJALR
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = REG_LR
    		default:
    			ctxt.Diag("unknown destination type %+v in CALL: %v", p.To.Type, p)
    		}
    
    	case obj.AUNDEF:
    		p.As = AEBREAK
    
    	case ASCALL:
    		// SCALL is the old name for ECALL.
    		p.As = AECALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    					ab.Put1(o.op[z+1])
    					r = obj.Addrel(cursym)
    					r.Off = int32(p.Pc + int64(ab.Len()))
    					r.Sym = p.To.Sym
    					// Note: R_CALL instead of R_PCREL. R_CALL is more permissive in that
    					// it can point to a trampoline instead of the destination itself.
    					r.Type = objabi.R_CALL
    					r.Siz = 4
    					ab.PutInt32(0)
    					break
    				}
    
    				// Assumes q is in this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    4. **Annotations to define interception type**, like if this is an instance or static method, if we should intercept Groovy or just Java etc.
    5. **Return type **of original call
    6. **The receiver** of original call
    7. **Parameters** of original call
    8. **Logic** with call interception logic or logic that translates the new type to the old type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        }
    
        public void copyFrom(final URL resource) {
            final TestFile testFile = this;
            RetryUtil.retry(new Closure(null, null) {
                @SuppressWarnings("UnusedDeclaration")
                void doCall() {
                    try {
                        FileUtils.copyURLToFile(resource, testFile);
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top