Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for rtcall (0.12 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

                antBuilder.invokeMethod("check", new Object[] {checkArgs, new Closure<Object>(this, this) {
                    @SuppressWarnings("UnusedDeclaration")
                    public Object doCall(Object ignore) {
                        for (final JacocoViolationRule rule : filter(violationRules.getRules(), RULE_ENABLED_PREDICATE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/util/internal/AlwaysTrue.java

            super(owner);
        }
    
        @Override
        public Boolean call() {
            return true;
        }
    
        @Override
        public Boolean call(Object... args) {
            return true;
        }
    
        @Override
        public Boolean call(Object arguments) {
            return true;
        }
    
        public Boolean doCall() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        This op is an replacement of `tf.ReadVariableOp` in the case that a constant
        variable tensor is an input to the tpu program invoked by `tf.IfrtCall`.
    
        After a `tf.ReadVariableOp` is lowered into `tf.IfrtLoadVariableOp`, the `tf.IfrtCall` kernel
        will bind the loaded IFRT array by name with the tpu program's input.
    
        This op returns a scalar string tensor as a key for user to look for the loaded array
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    const Doc = `report uses of too-new standard library symbols
    
    The stdversion analyzer reports references to symbols in the standard
    library that were introduced by a Go release higher than the one in
    force in the referring file. (Recall that the file's Go version is
    defined by the 'go' directive its module's go.mod file, or by a
    "//go:build go1.X" build tag at the top of the file.)
    
    The analyzer does not report a diagnostic for a reference to a "too
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/cpu.go

    	// Privileged ISA (Version 20190608-Priv-MSU-Ratified)
    
    	// 3.1.9: Instructions to Access CSRs
    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

    ) {
        @Suppress("unused")
        fun doCall(vararg args: Any) {
            val numClosureArgs = delegate.maximumNumberOfParameters
            val finalArgs: Array<out Any> = args.take(numClosureArgs).map { trackingProjectAccess(crossProjectModelAccess, referrerProject, it) }.toTypedArray()
            delegate.call(*finalArgs)
        }
    
        override fun setDelegate(delegateObject: Any) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x5, 0x0, 32, 0x1}
    	case ADIVUW:
    		return &inst{0x3b, 0x5, 0x0, 32, 0x1}
    	case ADIVW:
    		return &inst{0x3b, 0x4, 0x0, 32, 0x1}
    	case AEBREAK:
    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case AECALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    	case AFADDD:
    		return &inst{0x53, 0x0, 0x0, 32, 0x1}
    	case AFADDQ:
    		return &inst{0x53, 0x0, 0x0, 96, 0x3}
    	case AFADDS:
    		return &inst{0x53, 0x0, 0x0, 0, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.cc

               << getArgs().size() << " vs. " << getNames().size() << ")";
      }
      return mlir::success();
    }
    
    //===----------------------------------------------------------------------===//
    // IfrtCall
    //===----------------------------------------------------------------------===//
    
    mlir::LogicalResult IfrtCallOp::verify() {
      auto func = getOperation()->getParentOfType<mlir::func::FuncOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    	},
    }
    
    const debug = false
    
    var contextPackage = "context"
    
    // checkLostCancel reports a failure to the call the cancel function
    // returned by context.WithCancel, either because the variable was
    // assigned to the blank identifier, or because there exists a
    // control-flow path from the call to a return statement and that path
    // does not "use" the cancel function.  Any reference to the variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/internal/coverage/pods/pods.go

    // distinct coverage meta-data file. We then create a single pod for
    // each meta-data file M_k, then find all of the counter data files
    // that refer to that meta-data file (recall that the counter data
    // file name incorporates the meta-data hash), and add the counter
    // data file to the appropriate pod.
    //
    // This process is complicated by the fact that we need to keep track
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top