Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 742 for addAction (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/functionalize-if.mlir

        %3:2 = tf_executor.island wraps "tf.Add"(%2#0, %2#0) {T = "tfdtype$DT_INT32"} : (tensor<i32>, tensor<i32>) -> tensor<i32> loc("Addition")
        %4:2 = tf_executor.island wraps "tf.Mul"(%2#1, %2#1) {T = "tfdtype$DT_INT32"} : (tensor<i32>, tensor<i32>) -> tensor<i32> loc("Multiplication")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    // and we need to know whether to check 32 or 64 bits of the result.
    // (Some libc functions that return 32 bits put junk in the upper 32 bits of AX.)
    
    // golang.org/x/sys linknames syscall_syscall
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_syscall syscall.syscall
    //go:nosplit
    func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256.go

    	buf = append(buf, x.Bytes()...)
    	return buf
    }
    
    // Add sets q = p1 + p2, and returns q. The points may overlap.
    func (q *P256Point) Add(p1, p2 *P256Point) *P256Point {
    	// Complete addition formula for a = -3 from "Complete addition formulas for
    	// prime order elliptic curves" (https://eprint.iacr.org/2015/1060), §A.2.
    
    	t0 := new(fiat.P256Element).Mul(p1.x, p2.x)  // t0 := X1 * X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/impl/scalars.h

      }
    
     private:
      const T value_;
    };
    
    template <typename T>
    inline std::ostream& operator<<(std::ostream& o, const Scalar<T>& x) {
      return o << x.get();
    }
    
    /** The overloaded addition operator. */
    template <typename T1, typename T2>
    inline auto operator+(const Scalar<T1>& x1, const Scalar<T2>& x2)
        -> Scalar<decltype(x1.get() + x2.get())> {
      using Ret = decltype(x1 + x2);  // Return type of this function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGFilteringIntegrationTest.groovy

            result.testClass('BarTest').assertTestsExecuted('pass')
        }
    
        @Issue("GRADLE-3112")
        def "suites can be filtered from the build file"() {
            given:
            theUsualFiles()
            // and this addition to the build file ...
            buildFile << """
                test {
                  filter {
                    includeTestsMatching "*AwesomeSuite*"
                  }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// MinDatetimeSizeJSON is the minimal length of a datetime formatted as RFC 3339
    	// RFC 3339 datetimes require a full date (YYYY-MM-DD) and full time (HH:MM:SS), and we add 3 for
    	// quotation marks like always in addition to the capital T that separates the date and time
    	MinDatetimeSizeJSON = 21
    	// MinStringSize is the size of literal ""
    	MinStringSize = 2
    	// MinBoolSize is the length of literal true
    	MinBoolSize = 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

         * Retrieves every toolchains of given type available in user settings.
         *
         * @param type the type, must not be {@code null}
         * @param context the Maven session, must not be {@code null}
         * @since 3.0 (addition of the <code>MavenSession</code> parameter)
         */
        ToolchainPrivate[] getToolchainsForType(String type, MavenSession context) throws MisconfiguredToolchainException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

         */
        @Nullable
        Module findModule(String name) throws UnknownModuleException;
    
        /**
         * Returns the classpath used to search for modules, in addition to default locations in the Gradle distribution (if available). May be empty.
         */
        ClassPath getAdditionalClassPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/request.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	debugRequestPort int32 = 15000
    	allowedPorts           = sets.New[int32](
    		15000,
    		15021,
    		15020,
    		15004,
    	)
    )
    
    // NB: extra standard output in addition to what's returned from envoy
    // must not be added in this command. Otherwise, it'd break istioctl proxy-config,
    // which interprets the output literally as json document.
    var (
    	requestCmd = &cobra.Command{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:05 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/strconv/itoa.go

    		// the compiler can optimize it into a multiply+shift
    
    		if host32bit {
    			// convert the lower digits using 32bit operations
    			for u >= 1e9 {
    				// Avoid using r = a%b in addition to q = a/b
    				// since 64bit division and modulo operations
    				// are calculated by runtime functions on 32bit machines.
    				q := u / 1e9
    				us := uint(u - q*1e9) // u % 1e9 fits into a uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top