Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for tuve (0.03 sec)

  1. doc/go_spec.html

    	// type of i is int
    	// type of s is string
    	// s == a[i]
    	g(i, s)
    }
    
    var key string
    var val interface{}  // element type of m is assignable to val
    m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6}
    for key, val = range m {
    	h(key, val)
    }
    // key == last map key encountered in iteration
    // val == map[key]
    
    var ch chan Work = producer()
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
  2. RELEASE.md

        *   Add `tf.contrib.data.prefetch_to_device`, which enables prefetching
            dataset elements to GPU memory.
        *   Add `tf.contrib.data.AUTOTUNE`, which allows the tf.data runtime to
            automatically tune the prefetch buffer sizes based on your system and
            environment.
        *   Add `tf.contrib.data.make_csv_dataset` for building datasets of CSV
            files.
    *   Eager Execution:
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top