Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for Ntilde (0.27 sec)

  1. src/mdo/reader-stax.vm

            entities.put("Iuml", "\u00cf");
            entities.put("ETH", "\u00d0");
            entities.put("Ntilde", "\u00d1");
            entities.put("Ograve", "\u00d2");
            entities.put("Oacute", "\u00d3");
            entities.put("Ocirc", "\u00d4");
            entities.put("Otilde", "\u00d5");
            entities.put("Ouml", "\u00d6");
            entities.put("times", "\u00d7");
            entities.put("Oslash", "\u00d8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⁡":                   "\u2061",
    	"Å":                           "\u00c5",
    	"𝒜":                            "\U0001d49c",
    	"≔":                          "\u2254",
    	"Ã":                          "\u00c3",
    	"Ä":                            "\u00c4",
    	"∖":                       "\u2216",
    	"⫧":                            "\u2ae7",
    	"⌆":                          "\u2306",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. src/encoding/xml/xml.go

    	"Igrave":   "\u00CC",
    	"Iacute":   "\u00CD",
    	"Icirc":    "\u00CE",
    	"Iuml":     "\u00CF",
    	"ETH":      "\u00D0",
    	"Ntilde":   "\u00D1",
    	"Ograve":   "\u00D2",
    	"Oacute":   "\u00D3",
    	"Ocirc":    "\u00D4",
    	"Otilde":   "\u00D5",
    	"Ouml":     "\u00D6",
    	"times":    "\u00D7",
    	"Oslash":   "\u00D8",
    	"Ugrave":   "\u00D9",
    	"Uacute":   "\u00DA",
    	"Ucirc":    "\u00DB",
    	"Uuml":     "\u00DC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    package tlog
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // A Tile is a description of a transparency log tile.
    // A tile of height H at level L offset N lists W consecutive hashes
    // at level H*L of the tree starting at offset N*(2**H).
    // A complete tile lists 2**H hashes; a partial tile lists fewer.
    // Note that a tile represents the entire subtree of height H
    // with those hashes as the leaves. The levels above H*L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/go/types/typeterm.go

    	//  T ⊆ ~t == true
    	//  T ⊆  T == true
    	return !x.tilde || y.tilde
    }
    
    // disjoint reports whether x ∩ y == ∅.
    // x.typ and y.typ must not be nil.
    func (x *term) disjoint(y *term) bool {
    	if debug && (x.typ == nil || y.typ == nil) {
    		panic("invalid argument(s)")
    	}
    	ux := x.typ
    	if y.tilde {
    		ux = under(ux)
    	}
    	uy := y.typ
    	if x.tilde {
    		uy = under(uy)
    	}
    	return !Identical(ux, uy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

        const tpu::TPUCompileMetadataProto& metadata);
    
    // Gets the proper tensor dimension from XLA OpSharding.
    // "replicate_on_last_tile_dim" and "last_tile_dims" should be deducted from the
    // real Tensor dimensions when tiled.
    // For example:
    // f32[8,512](sharding={devices=[1,1,2]0,1 last_tile_dims={REPLICATED})
    // also means a replicated tensor over all devices.
    //
    // See xla_data.proto for detailed explanations on the fields.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/go/types/infer.go

    // term has a tilde. In all other cases coreTerm returns (nil, false).
    func coreTerm(tpar *TypeParam) (*term, bool) {
    	n := 0
    	var single *term // valid if n == 1
    	var tilde bool
    	tpar.is(func(t *term) bool {
    		if t == nil {
    			assert(n == 0)
    			return false // no terms
    		}
    		n++
    		single = t
    		if t.tilde {
    			tilde = true
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	return "/" + tile.Path()
    }
    
    // readTile reads a single tile, either from the on-disk cache or the server.
    func (c *Client) readTile(tile tlog.Tile) ([]byte, error) {
    	type cached struct {
    		data []byte
    		err  error
    	}
    
    	result := c.tileCache.Do(tile, func() interface{} {
    		// Try the requested tile in on-disk cache.
    		data, err := c.ops.ReadCache(c.tileCacheKey(tile))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    // term has a tilde. In all other cases coreTerm returns (nil, false).
    func coreTerm(tpar *TypeParam) (*term, bool) {
    	n := 0
    	var single *term // valid if n == 1
    	var tilde bool
    	tpar.is(func(t *term) bool {
    		if t == nil {
    			assert(n == 0)
    			return false // no terms
    		}
    		n++
    		single = t
    		if t.tilde {
    			tilde = true
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      }
    
      return builder->create<mlir::TF::ConcatOp>(
          location, output_type, concat_dimension_op.getOutput(), inputs);
    }
    
    // For tile sharded inputs to TPU computation, inject split op between the
    // input values and TPU computation so that tiled input values are passed in
    // as inputs to TPU computations. If more than one dimension is sharded, then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top