Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for east (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        both the outermost element type of tensors as well as the nested component
        type (e.g., for tensor lists).
    
        During shape refinement this pass may insert additional cast operations as
        well as fold some constant shape computations to enable more exact shape
        inference. Therefore it does do some mutation of the graph. Constant folding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            TF_ASSIGN_OR_RETURN(
                auto etype, ConvertToMlirTensorType(shape_proto, dtype, &builder));
            return mlir::UnrankedTensorType::get(mlir::TF::ResourceType::get(
                {mlir::cast<TensorType>(etype)}, builder.getContext()));
          } else {
            return mlir::UnrankedTensorType::get(
                mlir::TF::ResourceType::get(builder.getContext()));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/reflect/value.go

    				// that at least it is a valid pointer (not just an integer stored in
    				// a pointer slot). So let's check, to make sure that it isn't a pointer
    				// that the runtime will crash on if it sees it during GC or write barriers.
    				// Since it is a not-in-heap pointer, all pointers to the heap are
    				// forbidden! That makes the test pretty easy.
    				// See issue 48399.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
            .addHeader("Expires: " + formatDate(1, TimeUnit.HOURS))
            .body("ABC")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-5, TimeUnit.MINUTES))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

      final Weigher<K, V> weigher;
    
      /** How long after the last access to an entry the map will retain that entry. */
      final long expireAfterAccessNanos;
    
      /** How long after the last write to an entry the map will retain that entry. */
      final long expireAfterWriteNanos;
    
      /** How long after the last write an entry becomes a candidate for refresh. */
      final long refreshNanos;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      echo "/core.%e.%p.%t" > /proc/sys/kernel/core_pattern
    }
    
    # secure_random generates a secure random string of bytes. This function accepts
    # a number of secure bytes desired and returns a base64 encoded string with at
    # least the requested entropy. Rather than directly reading from /dev/urandom,
    # we use uuidgen which calls getrandom(2). getrandom(2) verifies that the
    # entropy pool has been initialized sufficiently for the desired operation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	serviceLister serviceLister
    	// serviceHasSynced indicates whether services have been sync'd at least once.
    	// Check this before trusting a response from the lister.
    	serviceHasSynced cache.InformerSynced
    	// nodeLister knows how to list nodes
    	nodeLister corelisters.NodeLister
    	// nodeHasSynced indicates whether nodes have been sync'd at least once.
    	// Check this before trusting a response from the node lister.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.a['b'] == 1":   "no matching overload for '_[_]'", // only allowed on maps, not objects
    				"has(self.a1.d2.e2)": "no such key: d2",                 // has only checks last element in path, when d2 is absent in value, this is an error
    			},
    		},
    		{name: "map access",
    			obj: map[string]interface{}{
    				"val": map[string]interface{}{
    					"b": 1,
    					"d": 2,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        %cst = "tf.Const"() {value = dense<512> : tensor<i32>} : () -> tensor<i32>
        %2:4 = "tf_device.launch"() ({
          %4 = "tf.Cast"(%arg0) {Truncate = false} : (tensor<512xi64>) -> tensor<512xi32>
          %5 = "tf.TPUCopyWithDynamicShape"(%4,  %cst) {operandSegmentSizes = array<i32: 1, 1>} : (tensor<512xi32>, tensor<i32>) -> tensor<512xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // An example function is similar to a test function but, instead of using
    // *testing.T to report success or failure, prints output to os.Stdout.
    // If the last comment in the function starts with "Output:" then the output
    // is compared exactly against the comment (see examples below). If the last
    // comment begins with "Unordered output:" then the output is compared to the
    // comment, however the order of the lines is ignored. An example with no such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top