Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 240 for splay_ (0.15 sec)

  1. internal/store/store.go

    						return
    					}
    				}
    			}
    
    			select {
    			case <-retryTicker.C:
    			case <-doneCh:
    				return
    			}
    		}
    	}()
    
    	return keyCh
    }
    
    // sendItems - Reads items from the store and re-plays.
    func sendItems(target Target, keyCh <-chan Key, doneCh <-chan struct{}, logger logger) {
    	retryTicker := time.NewTicker(retryInterval)
    	defer retryTicker.Stop()
    
    	send := func(key Key) bool {
    		for {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

    #undef CONVERT_FLAT
    }
    
    // Returns the number of elements present in this TensorProto, or -1 if that
    // could not be determined. This might be less than the shape of the proto might
    // indicate, if we're storing a splat tensor.
    int NumberOfMaterializedElements(const TensorProto& tensor) {
      if (!tensor.tensor_content().empty()) return -1;
        // We don't know which element type this protocol buffer is storing, and the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/Uninterruptibles.java

          throws ExecutionException {
        try {
          return future.get();
        } catch (InterruptedException e) {
          // Should never be thrown in GWT but play it safe
          throw new IllegalStateException(e);
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 08 20:30:27 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/cc/training/coordinator.h

    /// Without a coordinator, QueueRunners have to be joined in a specific order;
    /// otherwise the QueueRunner::Join() could sometimes hang. The
    /// Coordinator::RequestStop() plays the key role which notifies all running
    /// threads under a coordinator to stop. This function could be called by any
    /// thread or any client.
    /// Usage, in the client:
    ///   Coordinator coord;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. docs/bucket/versioning/README.md

      public static void main(String[] args)
          throws IOException, NoSuchAlgorithmException, InvalidKeyException {
        try {
          /* play.min.io for test and development. */
          MinioClient minioClient =
              MinioClient.builder()
                  .endpoint("https://play.min.io")
                  .credentials("Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG")
                  .build();
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/issue43658.golden

    -- Profile_simple.Play --
    package main
    
    import (
    	"fmt"
    	"log"
    	"sort"
    
    	"golang.org/x/exp/rand"
    
    	"gonum.org/v1/gonum/graph/community"
    	"gonum.org/v1/gonum/graph/internal/ordered"
    	"gonum.org/v1/gonum/graph/simple"
    )
    
    func main() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. src/go/doc/example_test.go

    				}
    				ex := examples[name]
    				if ex == nil {
    					t.Fatalf("no example named %q", name)
    				}
    
    				var got string
    				switch kind {
    				case "Play":
    					got = strings.TrimSpace(formatFile(t, fset, ex.Play))
    
    				case "Output":
    					got = strings.TrimSpace(ex.Output)
    				default:
    					t.Fatalf("bad section kind %q", kind)
    				}
    
    				if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. test-site/conf/application.conf

    # ~~~~~
    # You can also configure logback (http://logback.qos.ch/),
    # by providing an application-logger.xml file in the conf directory.
    
    # Root logger:
    logger.root=ERROR
    
    # Logger used by the framework:
    logger.play=INFO
    
    # Logger provided to your application:
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 2K bytes
    - Viewed (0)
  9. src/runtime/runtime_mmap_test.go

    func TestPhysPageSize(t *testing.T) {
    	// Mmap fails if the address is not page aligned, so we can
    	// use this to test if the page size is the true page size.
    	ps := runtime.GetPhysPageSize()
    
    	// Get a region of memory to play with. This should be page-aligned.
    	b, err := runtime.Mmap(nil, 2*ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE, -1, 0)
    	if err != 0 {
    		t.Fatalf("Mmap: %v", err)
    	}
    
    	if runtime.GOOS == "aix" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. README.md

    If your company wants to help shape the evolution of
    technologies that are container-packaged, dynamically scheduled,
    and microservices-oriented, consider joining the CNCF.
    For details about who's involved and how Kubernetes plays a role,
    read the CNCF [announcement].
    
    ----
    
    ## To start using K8s
    
    See our documentation on [kubernetes.io].
    
    Take a free course on [Scalable Microservices with Kubernetes].
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top