Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for lombok (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        const Node& n,
        const absl::flat_hash_set<const Node*>& runtime_const_nodes) {
      if (n.type_string() == "GuaranteeConst") {
        // If the current node is itself a cast-to-const, no need
        // to look at the incoming edges.
        return true;
      }
    
      bool all_parents_const = true;
      bool atleast_one_non_control_edge = false;
      for (const Edge* in : n.in_edges()) {
        atleast_one_non_control_edge =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // equally performant.  Some clustering decision are likely to improve
      // performance much more than others, and we cannot order contractions on this
      // cost function, nor can we look at global information while deciding on
      // individual edges to contract.  Instead, we will make decisions on these
      // important edges then make decisions on all other edges, causing the highest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    		// actually be able to run. Disable preemption for ourselves, to make
    		// sure we finish profiling gp1 right away instead of leaving it stuck
    		// in this limbo.
    		mp := acquirem()
    		if gp1.goroutineProfiled.CompareAndSwap(goroutineProfileAbsent, goroutineProfileInProgress) {
    			doRecordGoroutineProfile(gp1, pcbuf)
    			gp1.goroutineProfiled.Store(goroutineProfileSatisfied)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. .bazelrc

    # WARNING: THESE OPTIONS WONT WORK IF YOU DO NOT HAVE PROPER AUTHENTICATION AND PERMISSIONS
    
    # Use --config=tf_public_cache to try and use the TensorFlow public build cache
    # to build TensorFlow. Look at ci/official/envs to find which types of jobs
    # push to the cache.  For macOS, use --config=tf_public_macos_cache
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    //	mcache: a per-P cache of mspans with free space.
    //	mstats: allocation statistics.
    //
    // Allocating a small object proceeds up a hierarchy of caches:
    //
    //	1. Round the size up to one of the small size classes
    //	   and look in the corresponding mspan in this P's mcache.
    //	   Scan the mspan's free bitmap to find a free slot.
    //	   If there is a free slot, allocate it.
    //	   This can all be done without acquiring a lock.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    // of the correct Kind.
    func (jm *Controller) resolveControllerRef(namespace string, controllerRef *metav1.OwnerReference) *batch.Job {
    	// We can't look up by UID, so look up by Name and then verify UID.
    	// Don't even try to look up by Name if it's the wrong Kind.
    	if controllerRef.Kind != controllerKind.Kind {
    		return nil
    	}
    	job, err := jm.jobLister.Jobs(namespace).Get(controllerRef.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    	goVersion   string            // minimum Go version found in //go:build comment
    
    	// Next token
    	pos token.Pos   // token position
    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Error recovery
    	// (used to limit the number of calls to parser.advance
    	// w/o making scanning progress - avoids potential endless
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    #
    # Note that adding the initial HNS network may cause connectivity to the GCE
    # metadata server to be lost due to a Windows bug.
    # Configure-HostNetworkingService() restores connectivity, look there for
    # details.
    #
    # Download-HelperScripts() must have been called first.
    function Add_InitialHnsNetwork {
      $INITIAL_HNS_NETWORK = 'External'
    
      # This comes from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    	// Conn provides the underlying net.Conn in the case that a client
    	// sent an initial handshake that didn't look like TLS.
    	// It is nil if there's already been a handshake or a TLS alert has
    	// been written to the connection.
    	Conn net.Conn
    }
    
    func (e RecordHeaderError) Error() string { return "tls: " + e.Msg }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    func (ps *PushContext) destinationRule(proxyNameSpace string, service *Service) []*ConsolidatedDestRule {
    	if service == nil {
    		return nil
    	}
    	// If the proxy config namespace is same as the root config namespace
    	// look for dest rules in the service's namespace first. This hack is needed
    	// because sometimes, istio-system tends to become the root config namespace.
    	// Destination rules are defined here for global purposes. We do not want these
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top