Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 488 for csproduct (0.37 sec)

  1. src/math/cmplx/log.go

    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeCppProjectIntegrationTest.groovy

            UnitTestPreconditions.NotMacOsM1
        ]) // TODO KM: Not sure why error message is different on M1
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from xcode when component product is unbuildable due to architecture"() {
            useXcodebuildTool()
    
            given:
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.h.golden

    //
    Status MatMul(AbstractContext* ctx, AbstractTensorHandle* const a, AbstractTensorHandle* const b, AbstractTensorHandle** product, bool transpose_a = false, bool transpose_b = false, bool grad_a = false, bool grad_b = false, const char* name = nullptr, const char* raw_device_name = nullptr);
    
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pkg/fuzz/README.md

    For continuous fuzzing, [`OSS-Fuzz`](https://github.com/google/oss-fuzz) continually builds and runs the fuzzers and reports any failures.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. NOTICE

    limitations under the License.
    --------------------------------------------------------------------------------
    https://github.com/elastic/elasticsearch
    
    Elasticsearch
    Copyright 2009-2015 Elasticsearch
    
    This product includes software developed by The Apache Software
    Foundation (https://www.apache.org/).
    --------------------------------------------------------------------------------
    https://github.com/lmenezes/elasticsearch-kopf
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jan 15 23:53:08 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/python/testing.py

        real_parameters: All possible combinations of the parameters as list of
        dictionaries.
      """
      real_parameters = []
      for parameters in test_parameters:
        keys = parameters.keys()
        for curr in itertools.product(*parameters.values()):
          real_parameters.append(dict(zip(keys, curr)))
      return real_parameters
    
    
    def get_dir_size(path: str = '.') -> int:
      """Get the total size of files and sub-directories under the path.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/runtime/vlop_386.s

    // THE SOFTWARE.
    
    #include "textflag.h"
    
    /*
     * C runtime for 64-bit divide.
     */
    
    // runtimeĀ·_mul64x32(lo64 *uint64, a uint64, b uint32) (hi32 uint32)
    // sets *lo64 = low 64 bits of 96-bit product a*b; returns high 32 bits.
    TEXT runtimeĀ·_mul64by32(SB), NOSPLIT, $0
    	MOVL	lo64+0(FP), CX
    	MOVL	a_lo+4(FP), AX
    	MULL	b+12(FP)
    	MOVL	AX, 0(CX)
    	MOVL	DX, BX
    	MOVL	a_hi+8(FP), AX
    	MULL	b+12(FP)
    	ADDL	AX, BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. src/math/cmplx/exp.go

    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  9. src/math/tanh.go

    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. samples/bookinfo/src/ratings/ratings.js

      var productId = parseInt(productIdStr)
      var ratings = {}
    
      if (Number.isNaN(productId)) {
        res.writeHead(400, {'Content-type': 'application/json'})
        res.end(JSON.stringify({error: 'please provide numeric product ID'}))
        return
      }
    
      try {
        ratings = JSON.parse(req.body)
      } catch (error) {
        res.writeHead(400, {'Content-type': 'application/json'})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top