Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 257 for Implicits (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            validationContext.visitPropertyProblem(problem ->
                problem.id(TextUtil.screamingSnakeToKebabCase(IMPLICIT_DEPENDENCY), "Property has implicit dependency", GradleCoreProblemGroup.validation().property()) // TODO (donat) missing test coverage
                    .contextualLabel("Gradle detected a problem with the following location: '" + consumerProducerPath + "'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiLiteralAnonymousFunctionSymbol.kt

                return if (psi.valueParameters.isNotEmpty()) {
                    psi.valueParameters.map { KaFe10PsiValueParameterSymbol(it, analysisContext) }
                } else {
                    // There might be implicit 'it'
                    descriptor?.valueParameters.orEmpty().map { KaFe10DescValueParameterSymbol(it, analysisContext) }
                }
            }
    
        override val hasStableParameterNames: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescValueParameterSymbol.kt

            get() = withValidityAssertion {
                descriptor.containingDeclaration is AnonymousFunctionDescriptor &&
                        descriptor.name == StandardNames.IMPLICIT_LAMBDA_PARAMETER_NAME &&
                        // Implicit lambda parameter doesn't have a source PSI.
                        descriptor.source.getPsi() == null &&
                        // But, that could be the case for a declaration from Library. Double-check the slice in the binding context
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/go/types/typestring.go

    				w.string("interface{comparable}")
    				break
    			}
    		}
    		if t.implicit {
    			if len(t.methods) == 0 && len(t.embeddeds) == 1 {
    				w.typ(t.embeddeds[0])
    				break
    			}
    			// Something's wrong with the implicit interface.
    			// Print it as such and continue.
    			w.string("/* implicit */ ")
    		}
    		w.string("interface{")
    		first := true
    		if w.ctxt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    //
    //	1:  x := f()		Body
    //	    x != nil
    //	    succs: 2, 3
    //	2:  T()			IfThen
    //	    succs: 4
    //	3:  F()			IfElse
    //	    succs: 4
    //	4:			IfDone
    //
    // The CFG does contain Return statements; even implicit returns are
    // materialized (at the position of the function's closing brace).
    //
    // The CFG does not record conditions associated with conditional branch
    // edges, nor the short-circuit semantics of the && and || operators,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

            if (getDistribution().isSupportsSpacesInGradleAndJavaOpts()) {
                // Mix the implicit launcher JVM args in with the requested JVM args
                super.transformInvocation(invocation);
            } else {
                // Need to move those implicit JVM args that contain a space to the Gradle command-line (if possible)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

            val signature = value.implMethodSignature
            val paramTypes: Array<Type> = getArgumentTypes(signature)
    
            // Treat all parameters equally, regardless of whether they are implicit captured parameters or the lambda signature ones.
            // If any of them is of an unsupported type, a build that runs from the serialized state won't be able to provide an instance anyway.
            paramTypes.forEach { paramType ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        public val defaultExpressionInfo: DefaultExpressionInfo?,
    
        /**
         * A list of expressions that return a value.
         *
         * Returned expressions are not necessarily [KtReturnExpression]s.
         * For instance, implicit return from a lambda can be an arbitrary expression.
         */
        public val valuedReturnExpressions: List<KtExpression>,
    
        /**
         * A common supertype of values returned in [valuedReturnExpressions].
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring.go

    				w.string("interface{comparable}")
    				break
    			}
    		}
    		if t.implicit {
    			if len(t.methods) == 0 && len(t.embeddeds) == 1 {
    				w.typ(t.embeddeds[0])
    				break
    			}
    			// Something's wrong with the implicit interface.
    			// Print it as such and continue.
    			w.string("/* implicit */ ")
    		}
    		w.string("interface{")
    		first := true
    		if w.ctxt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

            run 'show'
    
            then:
            outputContains("files: [a3.jar]")
            outputContains("variants: [{artifactType=jar, buildType=debug, extra=good, usage=api}]")
        }
    
        def "can select the implicit variant of a configuration"() {
            buildFile << """
    
    dependencies {
        compile project(':lib')
        compile project(':ui')
    }
    
    project(':lib') {
        configurations {
            legacy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top