Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for chrono (0.25 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/compilation_timer.h

               start_cycles;
      }
    
      int64_t ElapsedCyclesInMilliseconds() {
        std::chrono::duration<double> duration =
            tensorflow::profile_utils::CpuUtils::ConvertClockCycleToTime(
                ElapsedCycles());
    
        return std::chrono::duration_cast<std::chrono::milliseconds>(duration)
            .count();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 04:52:21 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/cc/training/queue_runner.cc

      }
      if (coord_) {
        thread_pool_->Schedule(std::bind(&QueueRunner::Stop, this, sess));
      }
      // Wait for up to 'wait_for' milliseconds.
      if (wait_for > 0) {
        if (!counter_->WaitFor(std::chrono::milliseconds(wait_for))) {
          return Status(absl::StatusCode::kDeadlineExceeded,
                        "Queues not fed before the timeout");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. releasenotes/notes/chiron.yaml

    John Howard <******@****.***> 1679494701 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 226 bytes
    - Viewed (0)
  4. misc/chrome/gophertool/background.js

    chrome.omnibox.onInputEntered.addListener(function(t) {
      var url = urlForInput(t);
      if (url) {
        chrome.tabs.query({ "active": true, "currentWindow": true }, function(tab) {
          if (!tab) return;
          chrome.tabs.update(tab.id, { "url": url, "selected": true });
        });
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 18:14:37 UTC 2019
    - 286 bytes
    - Viewed (0)
  5. docs/chroot/README.md

    Chroot allows user based namespace isolation on many standard Linux deployments.
    
    ## 1. Prerequisites
    
    - Familiarity with [chroot](http://man7.org/linux/man-pages/man2/chroot.2.html)
    - Chroot installed on your machine.
    
    ## 2. Install MinIO in Chroot
    
    ```sh
    mkdir -p /mnt/export/${USER}/bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/chroot_windows.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"github.com/pkg/errors"
    )
    
    // Chroot chroot()s to the new path.
    // NB: All file paths after this call are effectively relative to
    // `rootfs`
    func Chroot(rootfs string) error {
    	return errors.New("chroot is not implemented on Windows")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 871 bytes
    - Viewed (0)
  7. misc/chrome/gophertool/README.txt

    To install:
    
    1) chrome://extensions/
    2) click "[+] Developer Mode" in top right
    3) "Load unpacked extension..."
    4) pick $GOROOT/misc/chrome/gophertool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:27:51 UTC 2011
    - 194 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/chroot_unix.go

    import (
    	"os"
    	"path/filepath"
    	"syscall"
    
    	"github.com/pkg/errors"
    )
    
    // Chroot chroot()s to the new path.
    // NB: All file paths after this call are effectively relative to
    // `rootfs`
    func Chroot(rootfs string) error {
    	if err := syscall.Chroot(rootfs); err != nil {
    		return errors.Wrapf(err, "unable to chroot to %s", rootfs)
    	}
    	root := filepath.FromSlash("/")
    	if err := os.Chdir(root); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

                        } else if (userAgent.indexOf("Firefox") >= 0) {
                            uaType = UserAgentType.FIREFOX;
                        } else if (userAgent.indexOf("Chrome") >= 0) {
                            uaType = UserAgentType.CHROME;
                        } else if (userAgent.indexOf("Safari") >= 0) {
                            uaType = UserAgentType.SAFARI;
                        } else if (userAgent.indexOf("Opera") >= 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. dockerscripts/docker-entrypoint.sh

    	if [ -n "${MINIO_USERNAME}" ] && [ -n "${MINIO_GROUPNAME}" ]; then
    		if [ -n "${MINIO_UID}" ] && [ -n "${MINIO_GID}" ]; then
    			chroot --userspec=${MINIO_UID}:${MINIO_GID} / "$@"
    		else
    			echo "${MINIO_USERNAME}:x:1000:1000:${MINIO_USERNAME}:/:/sbin/nologin" >>/etc/passwd
    			echo "${MINIO_GROUPNAME}:x:1000" >>/etc/group
    			chroot --userspec=${MINIO_USERNAME}:${MINIO_GROUPNAME} / "$@"
    		fi
    	else
    		exec "$@"
    	fi
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 bytes
    - Viewed (0)
Back to top