Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 136 for leastOf (0.2 sec)

  1. src/runtime/malloc.go

    //
    //	3. If the mcentral's mspan list is empty, obtain a run
    //	   of pages from the mheap to use for the mspan.
    //
    //	4. If the mheap is empty or has no page runs large enough,
    //	   allocate a new group of pages (at least 1MB) from the
    //	   operating system. Allocating a large run of pages
    //	   amortizes the cost of talking to the operating system.
    //
    // Sweeping an mspan and freeing objects on it proceeds up a similar
    // hierarchy:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        }
    
        auto quantized_ops =
            quantized_func->getAttrOfType<ArrayAttr>(kQuantizedOpsAttribute)
                .getValue();
        if (quantized_ops.empty()) {
          quantized_func->emitError() << "At least one op is expected in the "
                                      << kQuantizedOpsAttribute << " attribute.";
          return failure();
        }
    
        // Use the first op as the representative name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    
    // -----
    
    
    // Test cluster with bad `num_replicas` attribute.
    func.func @bad_num_replicas() {
      // expected-error@+1 {{requires 'num_replicas' int attribute to be at least 1}}
      %0 = "tf.opA"() {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "name", is_stateless = true} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            get() {
                if (this !is FirNamedReference) return null
    
                // In most cases, we can get the callee name from the callee's candidate symbols. However, there is at least one case where we
                // cannot do so:
                // ```
                // fun x(c: Char) {}
                // fun call(x: kotlin.Int) {
                //   operator fun Int.invoke(a: Int) {}
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         */
        private val KtUserType.qualifiedTypesWithSelf: Sequence<KtUserType>
            get() {
                require(qualifier != null) {
                    "Type element should have at least one qualifier, instead it was $text"
                }
    
                return generateSequence(this) { it.qualifier }.takeWhile { it.qualifier != null }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

            fi
            echo "clusterDomain: \"${DNS_DOMAIN}\""
          else
            # To start a private DNS server set ENABLE_CLUSTER_DNS and
            # DNS_SERVER_IP/DOMAIN. This will at least provide a working
            # DNS server for real world hostnames.
            echo "clusterDNS: [ \"8.8.8.8\" ]"
          fi
    
          # eviction
          if [[ -n ${EVICTION_HARD} ]]; then
            echo "evictionHard:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Status AddEdgesToOutputGraph(
          const absl::flat_hash_map<const Node*, Node*>& node_images,
          Graph* graph_out);
    
      // Makes a copy of graph containing only nodes that are ancestors of at least
      // one node in send_from_host_nodes and store it in pruned_graph. On exit
      // nodes_images contains a mapping from nodes in graph to nodes in
      // pruned_graph. All functions in the copied graph are inlined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	}
    
    	if mediumDead/60/60 < 1 || mediumDead/60/60 >= 24 {
    		t.Errorf("mediumDead should be between one hour and one day")
    	}
    
    	if longDead/60/60/24 < 10 {
    		t.Errorf("longDead should be at least ten days")
    	}
    
    	testCases := map[string]struct {
    		// cj spec
    		concurrencyPolicy batchv1.ConcurrencyPolicy
    		suspend           bool
    		schedule          string
    		timeZone          *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    		// Hcn *can* fail the query to grab the version of hcn itself (which this call will do internally before parsing
    		// to see if dual stack is supported), but the only time this can happen, at least that can be discerned, is if the host
    		// is pre-1803 and hcn didn't exist. hcsshim should truthfully return a known error if this happened that we can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top