Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for 432 (0.02 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #define GTEST_NAME_ "Google Test"
    #define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/"
    
    // Determines the version of gcc that is used to compile this.
    #ifdef __GNUC__
    // 40302 means version 4.3.2.
    # define GTEST_GCC_VER_ \
        (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
    #endif  // __GNUC__
    
    // Determines the platform on which Google Test is compiled.
    #ifdef __CYGWIN__
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    	var b [8]byte
    	for i := range b {
    		b[i] = r.data.b[pos%uint64(len(r.data.b))]
    		pos++
    	}
    	return uint64(b[0]) | uint64(b[1])<<8 |
    		uint64(b[2])<<16 | uint64(b[3])<<24 |
    		uint64(b[4])<<32 | uint64(b[5])<<40 |
    		uint64(b[6])<<48 | uint64(b[7])<<56
    }
    
    func (r *debugLogReader) peek() (tick uint64) {
    	// Consume any sync records.
    	size := uint64(0)
    	for size == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    	pc=5077843 func=35 file=36 line=32
    Stack id=56 nframes=5
    	pc=4753924 func=81 file=25 line=432
    	pc=4744422 func=82 file=83 line=106
    	pc=4823012 func=84 file=85 line=218
    	pc=4824373 func=86 file=87 line=21
    	pc=5079543 func=59 file=36 line=82
    Stack id=60 nframes=5
    	pc=4753924 func=81 file=25 line=432
    	pc=4744422 func=82 file=83 line=106
    	pc=4813961 func=145 file=29 line=129
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_table_ppc64le.s

    	/* x^234560 mod p(x), x^234496 mod p(x) */
    DATA ·IEEEConst+416(SB)/8,$0x00000001a0531540
    DATA ·IEEEConst+424(SB)/8,$0x00000000c53dfb04
    
    	/* x^233536 mod p(x), x^233472 mod p(x) */
    DATA ·IEEEConst+432(SB)/8,$0x0000000132cd7ebc
    DATA ·IEEEConst+440(SB)/8,$0x00000000e10c9ad6
    
    	/* x^232512 mod p(x), x^232448 mod p(x) */
    DATA ·IEEEConst+448(SB)/8,$0x0000000073ab7f36
    DATA ·IEEEConst+456(SB)/8,$0x0000000025aa994a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	klGLIndex         ID = 426
    	klnIndex          ID = 427
    	klnKEIndex        ID = 428
    	kmIndex           ID = 429
    	kmKHIndex         ID = 430
    	knIndex           ID = 431
    	knINIndex         ID = 432
    	koIndex           ID = 433
    	koKPIndex         ID = 434
    	koKRIndex         ID = 435
    	kokIndex          ID = 436
    	kokINIndex        ID = 437
    	ksIndex           ID = 438
    	ksINIndex         ID = 439
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //
      // The data_buffer itself is an opaque container, with the assumption that the
      // target device is little-endian. In addition, all builtin operators assume
      // the memory is ordered such that if `shape` is [4, 3, 2], then index
      // [i, j, k] maps to data_buffer[i*3*2 + j*2 + k].
      buffer:uint;
      name:string;  // For debugging and importing back into tensorflow.
      quantization:QuantizationParameters;  // Optional.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/encoding/binary/binary.go

    	)
    }
    
    func (littleEndian) Uint64(b []byte) uint64 {
    	_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
    		uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    }
    
    func (littleEndian) PutUint64(b []byte, v uint64) {
    	_ = b[7] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    func ringDecodeAndDecompress10(bb *[encodingSize10]byte) ringElement {
    	b := bb[:]
    	var f ringElement
    	for i := 0; i < n; i += 4 {
    		x := uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 | uint64(b[4])<<32
    		b = b[5:]
    		f[i] = fieldElement(decompress(uint16(x>>0&0b11_1111_1111), 10))
    		f[i+1] = fieldElement(decompress(uint16(x>>10&0b11_1111_1111), 10))
    		f[i+2] = fieldElement(decompress(uint16(x>>20&0b11_1111_1111), 10))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //
      // The data_buffer itself is an opaque container, with the assumption that the
      // target device is little-endian. In addition, all builtin operators assume
      // the memory is ordered such that if `shape` is [4, 3, 2], then index
      // [i, j, k] maps to data_buffer[i*3*2 + j*2 + k].
      buffer:uint;
      name:string;  // For debugging and importing back into tensorflow.
      quantization:QuantizationParameters;  // Optional.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. pom.xml

    			<version>${utflute.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>io.rest-assured</groupId>
    			<artifactId>rest-assured</artifactId>
    			<version>4.3.2</version>
    			<scope>test</scope>
    			<exclusions>
    				<exclusion>
    					<groupId>org.apache.httpcomponents</groupId>
    					<artifactId>httpclient</artifactId>
    				</exclusion>
    				<exclusion>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top