Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 128 for Otilde (0.34 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/tools/internal/typeparams/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 !types.Identical(ux, uy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue51376.go

            var m1 M1
            f(m1)
            g /* ERROR "M1 does not satisfy map[K]V" */ (m1) // M1 has tilde
    
            var m2 M2
            f(m2)
            g(m2) // M1 does not have tilde
    
            var m3 Map
            f(m3)
            g /* ERROR "Map does not satisfy map[string]int" */ (m3) // M in g does not have tilde
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 654 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/token/token.go

    	INTERFACE
    	MAP
    	PACKAGE
    	RANGE
    	RETURN
    
    	SELECT
    	STRUCT
    	SWITCH
    	TYPE
    	VAR
    	keyword_end
    
    	additional_beg
    	// additional tokens, handled in an ad-hoc manner
    	TILDE
    	additional_end
    )
    
    var tokens = [...]string{
    	ILLEGAL: "ILLEGAL",
    
    	EOF:     "EOF",
    	COMMENT: "COMMENT",
    
    	IDENT:  "IDENT",
    	INT:    "INT",
    	FLOAT:  "FLOAT",
    	IMAG:   "IMAG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

            }
            """
            includedBuilds << buildD
            def buildE = multiProjectBuild("buildE", ['buildE-api', 'buildE-impl'])
            buildE.buildFile << """
            subprojects {
                apply plugin: "java-library"
            }
            project(":buildE-impl") {
                dependencies {
                    api(project(":buildE-api"))
                    implementation("org.test:buildD-api:1.0")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top