Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 346 for north (0.04 sec)

  1. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
        # decided on a case-by-case basis".  This was initially decided by a
        # majority of the developers who voted in
        # https://github.com/kubernetes/kubernetes/issues/117288 and may evolve
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

      let constructor = "TFTPU::CreateTPUVariableRuntimeReformattingPass()";
      let description = [{
        A pass that takes advantage of a loop to add ops that allow the execution to
        avoid repeatedly formatting variables back and forth. The desired formatting
        is determined by TPU program compilation, so this pass does not include how
        to reformat the variables, but only inserts general TPUReshardVariablesOps in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy.go

    	// Issue 21096: tell backend applications that care about trailer support
    	// that we support trailers. (We do, but we don't go out of our way to
    	// advertise that unless the incoming client request thought it was worth
    	// mentioning.) Note that we look at req.Header, not outreq.Header, since
    	// the latter has passed through removeHopByHopHeaders.
    	if httpguts.HeaderValuesContainsToken(req.Header["Te"], "trailers") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/util.go

    		arch:  arch,
    		cconv: cconv,
    	})
    }
    
    type regSet struct {
    	lo    int
    	hi    int
    	Rconv func(int) string
    }
    
    // Few enough architectures that a linear scan is fastest.
    // Not even worth sorting.
    var regSpace []regSet
    
    /*
    	Each architecture defines a register space as a unique
    	integer range.
    	Here is the list of architectures and the base of their register spaces.
    */
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/generate.go

    		Prefix:   "p384",
    		FiatType: "[6]uint64",
    		BytesLen: 48,
    	},
    	// Note that unsaturated_solinas would be about 2x faster than
    	// word_by_word_montgomery for P-521, but this curve is used rarely enough
    	// that it's not worth carrying unsaturated_solinas support for it.
    	{
    		Element:  "P521Element",
    		Prime:    "2^521 - 1",
    		Prefix:   "p521",
    		FiatType: "[9]uint64",
    		BytesLen: 66,
    	},
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    To fix this, you must either:
    
    - fix the version reference to use one of the versions declared in the catalog
    - or declare a new version corresponding to the reference you want to use in the catalog
    
    It's worth noting that catalogs are isolated, so you cannot use a version reference from one catalog in another catalog.
    
    [[undefined_alias_reference]]
    == Undefined alias reference
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/mwbbuf.go

    func (b *wbBuf) reset() {
    	start := uintptr(unsafe.Pointer(&b.buf[0]))
    	b.next = start
    	if testSmallBuf {
    		// For testing, make the buffer smaller but more than
    		// 1 write barrier's worth, so it tests both the
    		// immediate flush and delayed flush cases.
    		b.end = uintptr(unsafe.Pointer(&b.buf[wbMaxEntriesPerCall+1]))
    	} else {
    		b.end = start + uintptr(len(b.buf))*unsafe.Sizeof(b.buf[0])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @J2ktIncompatible // no support for access-order mode in LinkedHashMap delegate
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    class CompactLinkedHashMap<K extends @Nullable Object, V extends @Nullable Object>
        extends CompactHashMap<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc_64bit.go

    }
    
    // levelLogPages is log2 the maximum number of runtime pages in the address space
    // a summary in the given level represents.
    //
    // The leaf level always represents exactly log2 of 1 chunk's worth of pages.
    var levelLogPages = [summaryLevels]uint{
    	logPallocChunkPages + 4*summaryLevelBits,
    	logPallocChunkPages + 3*summaryLevelBits,
    	logPallocChunkPages + 2*summaryLevelBits,
    	logPallocChunkPages + 1*summaryLevelBits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
        # decided on a case-by-case basis".  This was initially decided by a
        # majority of the developers who voted in
        # https://github.com/kubernetes/kubernetes/issues/117288 and may evolve
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top