Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for table_1 (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          return ResolveThenFunction(table);
        }
    
        // Resolve the else branch function.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
        // enabling reusing cached symbol table lookup.
        func::FuncOp ResolveElseFunction(::mlir::SymbolTableCollection* table) {
          if (table)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    				// "Extensions in the Certificate message from the client MUST
    				// correspond to extensions in the CertificateRequest message
    				// from the server." and it appears in the table in Section 4.2.
    				b.AddUint16(extensionSCT)
    				b.AddUint16(0) // empty extension_data
    			}
    			if len(m.supportedSignatureAlgorithms) > 0 {
    				b.AddUint16(extensionSignatureAlgorithms)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/math/all_test.go

    	{-3, NaN()},
    	{-1e16, NaN()},
    	{-1e300, NaN()},
    	{1.7e308, Inf(1)},
    
    	// Test inputs inspired by Python test suite.
    	// Outputs computed at high precision by PARI/GP.
    	// If recomputing table entries, be careful to use
    	// high-precision (%.1000g) formatting of the float64 inputs.
    	// For example, -2.0000000000000004 is the float64 with exact value
    	// -2.00000000000000044408920985626161695, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. .bazelrc

    # only executabe on the RBE (x86) machine, so the strategy_regexp options are
    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidTableAlias: {
    		Code:           "InvalidTableAlias",
    		Description:    "The SQL expression contains an invalid table alias.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingRequiredParameter: {
    		Code:           "MissingRequiredParameter",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

        HashSet<E> set = newHashSet();
        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

        HashSet<E> set = newHashSet();
        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    // AX: data
    // BX: hash seed
    // CX: length
    // At return: AX = return value
    TEXT aeshashbody<>(SB),NOSPLIT,$0-0
    	// Fill an SSE register with our seeds.
    	MOVQ	BX, X0				// 64 bits of per-table hash seed
    	PINSRW	$4, CX, X0			// 16 bits of length
    	PSHUFHW $0, X0, X0			// repeat length 4 times total
    	MOVO	X0, X1				// save unscrambled seed
    	PXOR	runtime·aeskeysched(SB), X0	// xor in per-process seed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/testing/testing.go

    //	    })
    //	}
    //
    // # Subtests and Sub-benchmarks
    //
    // The Run methods of T and B allow defining subtests and sub-benchmarks,
    // without having to define separate functions for each. This enables uses
    // like table-driven benchmarks and creating hierarchical tests.
    // It also provides a way to share common setup and tear-down code:
    //
    //	func TestFoo(t *testing.T) {
    //	    // <setup code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top