Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for ifndef (0.05 sec)

  1. tensorflow/c/c_api.h

    // Represents a specific input of an operation.
    typedef struct TF_Input {
      TF_Operation* oper;
      int index;  // The index of the input within oper.
    } TF_Input;
    
    // Represents a specific output of an operation.
    typedef struct TF_Output {
      TF_Operation* oper;
      int index;  // The index of the output within oper.
    } TF_Output;
    
    // TF_Function is a grouping of operations with defined inputs and outputs.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. docs/en/docs/img/index/index-02-redoc-simple.png

    index-02-redoc-simple.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 66.9K bytes
    - Viewed (0)
  3. docs/en/docs/img/index/index-05-swagger-04.png

    index-05-swagger-04.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 69.8K bytes
    - Viewed (0)
  4. docs/en/docs/img/index/index-04-swagger-03.png

    index-04-swagger-03.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 66K bytes
    - Viewed (0)
  5. docs/en/docs/img/index/index-03-swagger-02.png

    index-03-swagger-02.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 73.3K bytes
    - Viewed (0)
  6. docs/en/docs/img/index/index-06-redoc-02.png

    index-06-redoc-02.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 77K bytes
    - Viewed (0)
  7. docs/en/docs/img/index/index-01-swagger-ui-simple.png

    index-01-swagger-ui-simple.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 72.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_function_test.cc

        tensorflow::FunctionDef fdef;
        ASSERT_TRUE(GetFunctionDef(func_, &fdef));
        VerifyFDefNodes(fdef, nodes);
        VerifyFDefInputs(fdef, inputs);
        VerifyFDefOutputs(fdef, outputs);
        VerifyFDefEdges(fdef, e_edges, c_edges, is_exact_edges);
      }
    
      // Serialize func_ to fdef and import it back
      void Reincarnate() {
        // func_ -> fdef
        tensorflow::FunctionDef fdef;
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (1)
  9. cmd/erasure-object.go

    			fi := metadata[index]
    			// Assign index when index is initialized
    			if fi.Erasure.Index == 0 {
    				fi.Erasure.Index = index + 1
    			}
    
    			if !fi.IsValid() {
    				return errFileCorrupt
    			}
    			resp, err := disks[index].RenameData(ctx, srcBucket, srcEntry, fi, dstBucket, dstEntry, RenameOptions{})
    			if err != nil {
    				return err
    			}
    			diskVersions[index] = resp.Sign
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 80.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

      public static int checkElementIndex(int index, int size, String desc) {
        // Carefully optimized for execution by hotspot (explanatory comment above)
        if (index < 0 || index >= size) {
          throw new IndexOutOfBoundsException(badElementIndex(index, size, desc));
        }
        return index;
      }
    
      private static String badElementIndex(int index, int size, String desc) {
        if (index < 0) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 10 22:11:00 UTC 2025
    - 53K bytes
    - Viewed (0)
Back to top