Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Grande (0.11 sec)

  1. src/os/user/cgo_lookup_unix.go

    // or the buffer exceeds a reasonable limit.
    func retryWithBuffer(kind bufferKind, f func([]byte) syscall.Errno) error {
    	buf := make([]byte, kind.initialSize())
    	for {
    		errno := f(buf)
    		if errno == 0 {
    			return nil
    		} else if runtime.GOOS == "aix" && errno+1 == 0 {
    			// On AIX getpwuid_r appears to return -1,
    			// not ERANGE, on buffer overflow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        registerTransform(Duplicator) {
                            from.attribute(artifactType, "yellow")
                            to.attribute(artifactType, "orange")
                            parameters {
                                suffix = "orange"
                            }
                        }
                    }
                    task resolve(type: Resolve) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    Creates a dataset with a range of values. Corresponds to python's xrange.
      }];
    
      let arguments = (ins
        Arg<TF_Int64Tensor, [{corresponds to start in python's xrange().}]>:$start,
        Arg<TF_Int64Tensor, [{corresponds to stop in python's xrange().}]>:$stop,
        Arg<TF_Int64Tensor, [{corresponds to step in python's xrange().}]>:$step,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. RELEASE.md

        *   Experimental support for lowering `list_ops.tensor_list_set_item` with
            `DynamicUpdateSlice`.
        *   Enabled a new MLIR-based dynamic range quantization backend by default
            *   The new backend is used for post-training int8 dynamic range
                quantization and post-training float16 quantization.
            *   Set `experimental_new_dynamic_range_quantizer` in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top