Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,689 for wbMove (0.2 sec)

  1. .github/bot_config.yml

       | 1.13.1 - 2.0  | 10.0  |
       
       | 1.5.0 - 1.12.0 | 9.0 |
       
         * If you have above configuration and using _**Windows**_ platform -
           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the %PATH% environment variable.
           * Refer [windows setup guide](https://www.tensorflow.org/install/gpu#windows_setup).
         * If you have above configuration and using _**Ubuntu/Linux**_ platform -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/openapi-webhooks.md

    !!! info
        Webhooks are available in OpenAPI 3.1.0 and above, supported by FastAPI `0.99.0` and above.
    
    ## An app with webhooks
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/testdata/BUILD

            "//tensorflow/python/ops:variables",
            "//tensorflow/python/ops:while_loop",
            "//tensorflow/python/saved_model",
            "@absl_py//absl:app",
        ],
    )
    
    # Files generated by the binary above.
    filegroup(
        name = "saved_models",
        srcs = glob([
            "SimpleWhileLoop/**",
            "UninitializedVariable/**",
        ]),
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    		}
    
    		// ujn ≤ vn1, or else q̂ would be more than one digit.
    		// For ujn == vn1, we set q̂ to the max digit M above.
    		// Otherwise, we compute the 2-by-1 guess.
    		if ujn != vn1 {
    			var rhat Word
    			qhat, rhat = divWW(ujn, u[j+n-1], vn1, rec)
    
    			// Refine q̂ to a 3-by-2 guess. See “Refining Guesses” above.
    			vn2 := v[n-2]
    			x1, x2 := mulWW(qhat, vn2)
    			ujn2 := u[j+n-2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfMessageEvents" "Istio supported tracers"
    }}
    {{- range $dep, $replace := $deps }}
    {{- /* Complex logic to turn the string above into a null-safe traversal like ((.Values.global).certificates */}}
    {{- $res := tpl (print "{{" (repeat (split "." $dep | len) "(")  ".Values." (replace "." ")." $dep) ")}}") $}}
    {{- if not (eq $res "")}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/dist/vfp_arm.s

    	WORD $0xeeb00b40	// vmov.f64 d0, d0
    	RET
    
    // try to run VFPv3-only "vmov.f64 d0, #112" instruction
    TEXT ·useVFPv3(SB),NOSPLIT,$0
    	WORD $0xeeb70b00	// vmov.f64 d0, #112
    	RET
    
    // try to run ARMv6K (or above) "ldrexd" instruction
    TEXT ·useARMv6K(SB),NOSPLIT,$32
    	MOVW R13, R2
    	BIC  $15, R13
    	WORD $0xe1bd0f9f	// ldrexd r0, r1, [sp]
    	WORD $0xf57ff01f	// clrex
    	MOVW R2, R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 651 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/lif/lif.go

    //go:build solaris
    
    // Package lif provides basic functions for the manipulation of
    // logical network interfaces and interface addresses on Solaris.
    //
    // The package supports Solaris 11 or above.
    package lif
    
    import (
    	"syscall"
    )
    
    type endpoint struct {
    	af int
    	s  uintptr
    }
    
    func (ep *endpoint) close() error {
    	return syscall.Close(int(ep.s))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 950 bytes
    - Viewed (0)
  8. docs/distributed/SIZING.md

    This will allow normal write operations to take place on systems that exceed the write tolerance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/api/service/warnings.go

    		return []string{fmt.Sprintf("%s: IP address was accepted, but will be invalid in a future Kubernetes release: %v", fieldPath, err)}
    	}
    	// A Recommendation for IPv6 Address Text Representation
    	//
    	// "All of the above examples represent the same IPv6 address.  This
    	// flexibility has caused many problems for operators, systems
    	// engineers, and customers.
    	// ..."
    	// https://datatracker.ietf.org/doc/rfc5952/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

          bool is_cpu_read;
          if (failed(IsCpuRead(func, read, is_cpu_read))) return failure();
          if (is_cpu_read) reads.push_back(read);
        }
      }
      return success();
    }
    
    // Move reads above the `replicate`. Skip reads that come after a write to the
    // same resource.
    void MoveReads(ReplicateOp replicate,
                   llvm::SmallVector<ReadVariableOp, 4>& reads) {
      for (ReadVariableOp read : reads) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top