Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for preprocessor (0.28 sec)

  1. android/guava/src/com/google/common/collect/Range.java

       * elements "between them." For example, {@code [3, 5]} is not considered connected to {@code [6,
       * 10]}. In these cases, it may be desirable for both input ranges to be preprocessed with {@link
       * #canonical(DiscreteDomain)} before testing for connectedness.
       */
      public boolean isConnected(Range<C> other) {
        return lowerBound.compareTo(other.upperBound) <= 0
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Building TensorFlow:
    
        *   Windows platform builds: TensorFlow on Windows under MSVC is now built
            with `--copt=/experimental:preprocessor
            --host_copt=/experimental:preprocessor` (see `.bazelrc` for more
            details). Builds including TensorFlow may fail with unexpected syntax
            errors if these flags are absent. See also
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// and accept the same constants.
    	MOVW $2147483648, R5            // 64058000
    	MOVWZ $-2147483648, R5          // 3ca08000
    
    	// TODO: These are preprocessed by the assembler into MOVD $const>>shift, R5; SLD $shift, R5.
    	//       This only captures the MOVD. Should the SLD be appended to the encoding by the test?
    	// Hex constant 0x20004000000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
Back to top