Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for hit (0.03 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

              "XLA.");
        }
      }
    
      for (Node* node : sorted_nodes) {
        if (*debug_options_.fuel <= 0) {
          VLOG(1)
              << "Hit fuel limit; not marking any remaining ops as clusterable.";
          break;
        }
    
        TF_ASSIGN_OR_RETURN(
            const DeviceType& device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		// bits set to 1 to indicate that it is a pointer.
    		if (i == 0 || n.Data[i-1] == '.') && compression != nil {
    			if ptr, ok := compression[string(n.Data[i:n.Length])]; ok {
    				// Hit. Emit a pointer instead of the rest of
    				// the domain.
    				return append(msg, byte(ptr>>8|0xC0), byte(ptr)), nil
    			}
    
    			// Miss. Add the suffix to the compression table if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
      # stuck, so we want to do this as rarely as possible."
      $hns_network = Get-HnsNetwork | Where-Object Name -eq $INITIAL_HNS_NETWORK
      if ($hns_network) {
        if ($REDO_STEPS) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    			}
    			return err
    		}
    		cmd.WaitDelay = testWaitDelay
    
    		base.StartSigHandlers()
    		t0 = time.Now()
    		err = cmd.Run()
    
    		if !isETXTBSY(err) {
    			// We didn't hit the race in #22315, so there is no reason to retry the
    			// command.
    			break
    		}
    	}
    
    	out := buf.Bytes()
    	a.TestOutput = &buf
    	t := fmt.Sprintf("%.3fs", time.Since(t0).Seconds())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/compress/flate/testdata/huffman-rand-max.in

    s���k�B�	��g�6d��@�ٌ�"%��-�4��%X�Hy(�hIt�#e��(����gl��Z?�|Ύ��yG�"���f���jݴ�$��.�Lb������✻����{`�]��*TH��k��^�a�s�W�;�!L��Bh�0�U��z}g���K�{�ȗ���:Ϡ�rZע|�����#؉��[��8�¡n�@�K[p��)�����'}�xiG%�
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	return (*goobj.FuncInfo)(nil).ReadFile(fi.data, fi.lengths.FileOff, uint32(k))
    }
    
    // TopFrame returns true if the function associated with this FuncInfo
    // is an entry point, meaning that unwinders should stop when they hit
    // this function.
    func (fi *FuncInfo) TopFrame() bool {
    	return (fi.FuncFlag() & abi.FuncFlagTopFrame) != 0
    }
    
    type InlTreeNode struct {
    	Parent   int32
    	File     goobj.CUFileIndex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	// lists - T's methods and V's methods - simultaneously.
    	// Since method tables are stored in a unique sorted order
    	// (alphabetical, with no duplicate method names), the scan
    	// through V's methods must hit a match for each of T's
    	// methods along the way, or else V does not implement T.
    	// This lets us run the scan in overall linear time instead of
    	// the quadratic time  a naive search would require.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top