Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 409 of 409 for rmin (0.09 sec)

  1. tensorflow/c/eager/c_api_test.cc

      TFE_DeleteContextOptions(opts);
    
      TFE_TensorHandle* input = TestMatrixTensorHandle(ctx);
      TFE_TensorHandle* axis = TestAxisTensorHandle(ctx);
      TFE_Op* minOp = TFE_NewOp(ctx, "Min", status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_OpAddInput(minOp, input, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_OpAddInput(minOp, axis, status);
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const VINTR ideal-int
    pkg syscall (freebsd-386-cgo), const VKILL ideal-int
    pkg syscall (freebsd-386-cgo), const VLNEXT ideal-int
    pkg syscall (freebsd-386-cgo), const VMIN ideal-int
    pkg syscall (freebsd-386-cgo), const VQUIT ideal-int
    pkg syscall (freebsd-386-cgo), const VREPRINT ideal-int
    pkg syscall (freebsd-386-cgo), const VSTART ideal-int
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const VKILL ideal-int
    pkg syscall (freebsd-arm64), const VLNEXT = 14
    pkg syscall (freebsd-arm64), const VLNEXT ideal-int
    pkg syscall (freebsd-arm64), const VMIN = 16
    pkg syscall (freebsd-arm64), const VMIN ideal-int
    pkg syscall (freebsd-arm64), const VQUIT = 9
    pkg syscall (freebsd-arm64), const VQUIT ideal-int
    pkg syscall (freebsd-arm64), const VREPRINT = 6
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const VKILL ideal-int
    pkg syscall (darwin-arm64), const VLNEXT = 14
    pkg syscall (darwin-arm64), const VLNEXT ideal-int
    pkg syscall (darwin-arm64), const VMIN = 16
    pkg syscall (darwin-arm64), const VMIN ideal-int
    pkg syscall (darwin-arm64), const VQUIT = 9
    pkg syscall (darwin-arm64), const VQUIT ideal-int
    pkg syscall (darwin-arm64), const VREPRINT = 6
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Max Error Count */
        public static final String LABELS_ERROR_COUNT_MAX = "{labels.errorCountMax}";
    
        /** The key of the message: Min Error Count */
        public static final String LABELS_ERROR_COUNT_MIN = "{labels.errorCountMin}";
    
        /** The key of the message: Facet */
        public static final String LABELS_FACET = "{labels.facet}";
    
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const VKILL ideal-int
    pkg syscall (netbsd-arm64-cgo), const VLNEXT = 14
    pkg syscall (netbsd-arm64-cgo), const VLNEXT ideal-int
    pkg syscall (netbsd-arm64-cgo), const VMIN = 16
    pkg syscall (netbsd-arm64-cgo), const VMIN ideal-int
    pkg syscall (netbsd-arm64-cgo), const VQUIT = 9
    pkg syscall (netbsd-arm64-cgo), const VQUIT ideal-int
    pkg syscall (netbsd-arm64-cgo), const VREPRINT = 6
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const VLNEXT = 14 #53466
    pkg syscall (freebsd-riscv64), const VLNEXT ideal-int #53466
    pkg syscall (freebsd-riscv64), const VMIN = 16 #53466
    pkg syscall (freebsd-riscv64), const VMIN ideal-int #53466
    pkg syscall (freebsd-riscv64), const VQUIT = 9 #53466
    pkg syscall (freebsd-riscv64), const VQUIT ideal-int #53466
    pkg syscall (freebsd-riscv64), const VREPRINT = 6 #53466
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (1)
  8. api/go1.txt

    pkg syscall (linux-386), const VERASE ideal-int
    pkg syscall (linux-386), const VINTR ideal-int
    pkg syscall (linux-386), const VKILL ideal-int
    pkg syscall (linux-386), const VLNEXT ideal-int
    pkg syscall (linux-386), const VMIN ideal-int
    pkg syscall (linux-386), const VQUIT ideal-int
    pkg syscall (linux-386), const VREPRINT ideal-int
    pkg syscall (linux-386), const VSTART ideal-int
    pkg syscall (linux-386), const VSTOP ideal-int
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    }
    </pre>
    
    <p>
    A function declaration may omit the body. Such a declaration provides the
    signature for a function implemented outside Go, such as an assembly routine.
    </p>
    
    <pre>
    func min(x int, y int) int {
    	if x &lt; y {
    		return x
    	}
    	return y
    }
    
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top