Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 204 for Implicits (0.14 sec)

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

    	assert(obj != nil)
    	if m := check.Uses; m != nil {
    		m[id] = obj
    	}
    }
    
    func (check *Checker) recordImplicit(node syntax.Node, obj Object) {
    	assert(node != nil)
    	assert(obj != nil)
    	if m := check.Implicits; m != nil {
    		m[node] = obj
    	}
    }
    
    func (check *Checker) recordSelection(x *syntax.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/go/types/check.go

    	assert(obj != nil)
    	if m := check.Uses; m != nil {
    		m[id] = obj
    	}
    }
    
    func (check *Checker) recordImplicit(node ast.Node, obj Object) {
    	assert(node != nil)
    	assert(obj != nil)
    	if m := check.Implicits; m != nil {
    		m[node] = obj
    	}
    }
    
    func (check *Checker) recordSelection(x *ast.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/types, type Importer interface, Import(string) (*Package, error)
    pkg go/types, type Info struct
    pkg go/types, type Info struct, Defs map[*ast.Ident]Object
    pkg go/types, type Info struct, Implicits map[ast.Node]Object
    pkg go/types, type Info struct, InitOrder []*Initializer
    pkg go/types, type Info struct, Scopes map[ast.Node]*Scope
    pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        }
    
        assertThat(buffer.readByteString()).isEqualTo("A20743054A6F6E6573".decodeHex())
      }
    
      @Test fun `decode implicit tagged implicit prefixed type`() {
        // Type1 ::= VisibleString
        // Type2 ::= [APPLICATION 3] IMPLICIT Type1
        // Type3 ::= [2] Type2
        // Type4 ::= [APPLICATION 7] IMPLICIT Type3
        val buffer =
          Buffer()
            .write("670743054A6F6E6573".decodeHex())
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            }
        }
    
        /**
         * Returns the set of implicit selector names expected for any project for the target Gradle version.
         *
         * <p>Note that in some versions the handling of implicit selectors was broken, so this method may return a different value
         * to {@link #getImplicitTasks()}.
         */
        Set<String> getImplicitSelectors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

        }
    
        /**
         * A method that helps performance of selection by quickly checking if a
         * metadata container only contains a single, shadowed (the implicit) capability.
         *
         * @return {@code true} if the variant only contains the implicit capability
         */
        private static boolean fastContainsImplicitCapability(ImmutableSet<ImmutableCapability> capabilities) {
            if (capabilities.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * First, attribute matching is performed against the implicit variants of each consumable configuration.
         * Then, assuming attribute matching returns a single matched configuration, Gradle will then perform
         * attribute matching against each sub-variant (including the implicit) of the matched configuration.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/typecheck.go

    		for x := n.X; ; {
    			var inner ir.Node
    			implicit := false
    			switch x := x.(type) {
    			case *ir.AddrExpr:
    				inner, implicit = x.X, x.Implicit()
    			case *ir.SelectorExpr:
    				inner, implicit = x.X, x.Implicit()
    			case *ir.StarExpr:
    				inner, implicit = x.X, x.Implicit()
    			}
    			if !implicit {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                is ConeLookupTagBasedType -> lookupTag.name.asString()
    
                // NOTE: Flexible types can occur not only as implicit return types,
                // but also as implicit parameter types, for example in setters with implicit types
                is ConeFlexibleType -> {
                    // since Kotlin decompiler always "renders" flexible types as their lower bound, we can do the same here
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                        // Implicit SAM conversion
                        println(create<String>("baz") { it.toUpperCase() })
                        println(create(String::class) { it.toUpperCase() })
                        println(create(String::class, { name: String -> name.toUpperCase() }))
                        // Implicit SAM with receiver conversion
                        applyActionTo("action") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top