Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 787 for alias1 (0.24 sec)

  1. src/cmd/compile/internal/types2/object_test.go

    		{NewTypeName(nopos, nil, "rune", Typ[Rune]), true},                // type name refers to basic type rune which is an alias already
    		{t5, false}, // type name refers to type parameter and vice versa
    	} {
    		check(test.name, test.alias)
    	}
    }
    
    // TestEmbeddedMethod checks that an embedded method is represented by
    // the same Func Object as the original method. See also go.dev/issue/34421.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/alias.status.yaml.golden

    Lior Lieberman <******@****.***> 1707338903 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/groovy/build.gradle

     * limitations under the License.
     */
    
    // tag::use_plugin[]
    plugins {
        id 'java-library'
        id 'checkstyle'
        // Use the plugin `versions` as declared in the `libs` version catalog
        alias(libs.plugins.versions)
    }
    // end::use_plugin[]
    
    // tag::simple_dependency_use[]
    dependencies {
        implementation(libs.groovy.core)
    }
    // end::simple_dependency_use[]
    
    // tag::use_version[]
    checkstyle {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unexpected-alias-key-1.toml

    Cedric Champeau <******@****.***> 1616161838 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 19 13:50:38 UTC 2021
    - 88 bytes
    - Viewed (0)
  5. OWNERS_ALIASES

    aliases:
      # Note: sig-architecture-approvers has approval on root files (including go.mod/go.sum) until https://github.com/kubernetes/test-infra/pull/21398 is resolved.
      # People with approve rights via this alias should defer dependency update PRs to dep-approvers.
      sig-architecture-approvers:
        - dims
        - derekwaynecarr
        - johnbelamaric
      # sig-auth subproject aliases
      sig-auth-audit-approvers:
        - sttts
        - tallclair
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    			addType(obj.Type())
    			if pkg := obj.Pkg(); pkg != nil {
    				packages[pkg.Path()] = pkg
    			}
    		}
    	}
    
    	addType = func(T types.Type) {
    		switch T := T.(type) {
    		case *aliases.Alias:
    			addType(aliases.Unalias(T))
    		case *types.Basic:
    			// nop
    		case *types.Named:
    			// Remove infinite expansions of *types.Named by always looking at the origin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/go/types/typestring.go

    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    				w.string(f.name)
    				w.byte(' ')
    			}
    			w.typ(f.typ)
    			if pkgAnnotate {
    				w.string(" /* package ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // Maps each resource-type value to a set of unique IDs that it could alias.
      llvm::SmallDenseMap<Value, llvm::SmallSet<int64_t, 8>, 8>
          resource_value_to_ids_;
    
      // Maps each unique ID to a set of resource-type values that could alias to
      // it. This is inverse of `resource_value_to_ids_` map.
      llvm::SmallDenseMap<int64_t, llvm::SmallSetVector<Value, 8>, 8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. test/fixedbugs/notinheap2.go

    type embed1 struct { // implicitly notinheap
    	x nih
    }
    
    type embed2 [1]nih // implicitly notinheap
    
    type embed3 struct { // implicitly notinheap
    	x [1]nih
    }
    
    // Type aliases inherit the go:notinheap-ness of the type they alias.
    type nihAlias = nih
    
    type embedAlias1 struct { // implicitly notinheap
    	x nihAlias
    }
    type embedAlias2 [1]nihAlias // implicitly notinheap
    
    func g() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/types/testdata/examples/types.go

    // 	// the operations of the types given by its type bound,
    // 	// are also the properties of L.
    // 	x++
    // 	_ = x - x
    //
    // 	// On the other hand, if we define a local alias for T,
    // 	// that alias stands for T as expected.
    // 	type A = T
    // 	var y A
    // 	y.m()
    // 	_ = y < 0
    // }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top