Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,138 for sameId (0.12 sec)

  1. src/go/types/unify.go

    		// Two channel types unify if their value types unify
    		// and if they have the same direction.
    		// The channel direction is ignored for inexact unification.
    		if y, ok := y.(*Chan); ok {
    			return (mode&exact == 0 || x.dir == y.dir) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Named:
    		// Two named types unify if their type names originate in the same type declaration.
    		// If they are instantiated, their type argument lists must unify.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    		// Two channel types unify if their value types unify
    		// and if they have the same direction.
    		// The channel direction is ignored for inexact unification.
    		if y, ok := y.(*Chan); ok {
    			return (mode&exact == 0 || x.dir == y.dir) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Named:
    		// Two named types unify if their type names originate in the same type declaration.
    		// If they are instantiated, their type argument lists must unify.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    //
    // GLOSSARY: Here are a few terms used in this file to describe Named types:
    //  - We say that a Named type is "instantiated" if it has been constructed by
    //    instantiating a generic named type with type arguments.
    //  - We say that a Named type is "declared" if it corresponds to a type
    //    declaration in the source. Instantiated named types correspond to a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/go/types/named.go

    //
    // GLOSSARY: Here are a few terms used in this file to describe Named types:
    //  - We say that a Named type is "instantiated" if it has been constructed by
    //    instantiating a generic named type with type arguments.
    //  - We say that a Named type is "declared" if it corresponds to a type
    //    declaration in the source. Instantiated named types correspond to a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/scala/force/groovy/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    trait Named {
      def names: List[String]
    
      def importedList: GrowthList
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/scala/scala3/kotlin/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    /**
     * Defines the traits of one who is named.
     */
    trait Named:
      def names: List[String]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 204 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/scala/quickstart/groovy/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    /**
     * Defines the traits of one who is named.
     */
    trait Named {
      def names: List[String]
    
      def importedList: GrowthList
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 207 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/scala/quickstart/kotlin/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    /**
     * Defines the traits of one who is named.
     */
    trait Named {
      def names: List[String]
    
      def importedList: GrowthList
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 207 bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Named.java

        // satisfy the Named interface. This seems to be a bug in the Groovy compiler - LD.
    
        /**
         * An implementation of the namer interface for objects implementing the named interface.
         */
        class Namer implements org.gradle.api.Namer<Named> {
    
            public static final org.gradle.api.Namer<Named> INSTANCE = new Namer();
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/scala/mixedJavaAndScala/groovy/src/main/java/org/gradle/sample/Named.java

    package org.gradle.sample;
    
    public interface Named {
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 77 bytes
    - Viewed (0)
Back to top