Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Machines (0.16 sec)

  1. src/cmd/dist/test.go

    	// so we really only need to run this check once anywhere to get adequate coverage.
    	// To help developers avoid trybot-only failures, we try to run on typical developer machines
    	// which is darwin,linux,windows/amd64 and darwin/arm64.
    	//
    	// The same logic applies to the release notes that correspond to each api/next file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    //
    // On entry, u.frame contains:
    //   - fn is the running function.
    //   - pc is the PC in the running function.
    //   - sp is the stack pointer at that program counter.
    //   - For the innermost frame on LR machines, lr is the program counter that called fn.
    //
    // On return, u.frame contains:
    //   - fp is the stack pointer of the caller.
    //   - lr is the program counter that called fn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    	// The initial timeout is empirically usually long enough on a decently fast
    	// machine, but if we undershoot we'll retry with exponentially longer
    	// timeouts until the test either passes or times out completely.
    	// This keeps the test reasonably fast in the typical case but allows it to
    	// also eventually succeed on arbitrarily slow machines.
    	timeout := 10 * time.Millisecond
    	nextNonce := 0
    	for ; ; timeout *= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	}
    
    	// Ensure that the stores above that initialize x to
    	// type-safe memory and set the heap bits occur before
    	// the caller can make x observable to the garbage
    	// collector. Otherwise, on weakly ordered machines,
    	// the garbage collector could follow a pointer to x,
    	// but see uninitialized memory or stale heap bits.
    	publicationBarrier()
    	// As x and the heap bits are initialized, update
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    // made reachable, readers will ignore bits being modified by this
    // function. This does mean this function cannot transiently modify
    // shared memory that belongs to neighboring objects. Also, on weakly-ordered
    // machines, callers must execute a store/store (publication) barrier
    // between calling this function and making the object reachable.
    func heapSetType(x, dataSize uintptr, typ *_type, header **_type, span *mspan) (scanSize uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    		samples += count
    		fmt.Fprintf(&buf, "\n")
    	})
    	t.Logf("total %d CPU profile samples collected:\n%s", samples, buf.String())
    
    	if samples < 10 && runtime.GOOS == "windows" {
    		// On some windows machines we end up with
    		// not enough samples due to coarse timer
    		// resolution. Let it go.
    		t.Log("too few samples on Windows (golang.org/issue/10842)")
    		return p, false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. .bazelrc

    build:rbe_cross_compile_base --remote_instance_name=projects/tensorflow-testing/instances/default_instance
    
    # XLA depends on some local Python headers that are configured as Genrule. They
    # are present on the local host machine but not on the remote execution machine,
    # leading to build failures. To resolve the issue, the following line is added
    # to make sure all Genrule targets are excuted locally.
    build:rbe_cross_compile_base_xla --config=rbe_cross_compile_base
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # Description:
    # TensorFlow is a computational framework, primarily for use in machine
    # learning applications.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@bazel_skylib//rules:common_settings.bzl", "bool_flag", "bool_setting")
    load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
    load(
        "//tensorflow:tensorflow.bzl",
        "VERSION",
        "VERSION_MAJOR",
        "check_deps",
        "if_google",
        "if_oss",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Sets the environment variable $Key to $Value at the Machine scope (will
    # be present in the environment for all new shells after a reboot).
    function Set_MachineEnvironmentVar {
      param (
        [parameter(Mandatory=$true)] [string]$Key,
        [parameter(Mandatory=$true)] [AllowEmptyString()] [string]$Value
      )
      [Environment]::SetEnvironmentVariable($Key, $Value, "Machine")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. configure.py

    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
          answer = raw_input(question)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
Back to top