Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,263 for Is (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

                when (origin) {
                    is ObjectOrigin.ReceiverOrigin -> replaceInReceiver(origin)
                    is ObjectOrigin.FunctionOrigin -> replaceInFunction(origin)
    
                    is ObjectOrigin.CustomConfigureAccessor -> origin.copy(receiver = replace(origin.receiver))
                    is ObjectOrigin.FromLocalValue -> origin.copy(assigned = replace(origin.assigned))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	/* exprs > chan */
    
    	// InvalidReceive occurs when there is a channel receive from a value that
    	// is either not a channel, or is a send-only channel.
    	//
    	// Example:
    	//  func f() {
    	//  	var x = 1
    	//  	<-x
    	//  }
    	InvalidReceive
    
    	// InvalidSend occurs when there is a channel send to a value that is not a
    	// channel, or is a receive-only channel.
    	//
    	// Example:
    	//  func f() {
    	//  	var x = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/resolution/DefaultDocumentResolutionContainer.kt

                ErrorReason.UnusedConfigureLambda,
                is ErrorReason.UnresolvedFunctionCallArguments,
                is ErrorReason.UnresolvedFunctionCallReceiver,
                is ErrorReason.UnresolvedFunctionCallSignature,
                is ErrorReason.DuplicateLocalValue,
                is ErrorReason.ValReassignment,
                is ErrorReason.AmbiguousFunctions,
                is ErrorReason.AmbiguousImport,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

                            else -> error("unexpected origin type")
                        }
                    }
                    is FunctionSemantics.Builder -> error("can't appear here")
                }
            }
    
            is ObjectOrigin.PropertyReference,
            is ObjectOrigin.FromLocalValue -> error("value origin needed")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

    - Method methodMissing(java.lang.String, java.lang.Object) is not a valid rule method: A method that is not annotated as a rule must be private
    - Method propertyMissing(java.lang.String) is not a valid rule method: A method that is not annotated as a rule must be private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

                }
            }
            is FirExpression -> fir.resolvedType.asKtType()
            is FirNamedReference -> fir.getCorrespondingTypeIfPossible()?.asKtType()
            is FirStatement -> with(analysisSession) { builtinTypes.unit }
            is FirTypeRef, is FirImport, is FirPackageDirective, is FirLabel, is FirTypeParameterRef -> null
    
            // `listOf<_>(1)` where `expression` is `_`
            is FirPlaceholderProjection -> null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    	// Otherwise SizesFor("gc", "amd64") is used instead.
    	Sizes Sizes
    
    	// If DisableUnusedImportCheck is set, packages are not checked
    	// for unused imports.
    	DisableUnusedImportCheck bool
    
    	// If a non-empty ErrorURL format string is provided, it is used
    	// to format an error URL link that is appended to the first line
    	// of an error message. ErrorURL must be a format string containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

                    }
                    appendIndented(")")
                }
    
                is Literal.BooleanLiteral -> {
                    append("BooleanLiteral [${source()}] (${current.value})")
                }
    
                is Literal.IntLiteral -> {
                    append("IntLiteral [${source()}] (${current.value})")
                }
    
                is Literal.LongLiteral -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Optional.java

       *     null}
       */
      public abstract T or(Supplier<? extends T> supplier);
    
      /**
       * Returns the contained instance if it is present; {@code null} otherwise. If the instance is
       * known to be present, use {@link #get()} instead.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is equivalent to Java 8's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

                        return getExpectedType(parentExpression)
                    }
                }
                is KtFunctionLiteral -> {
                    return getExpectedType(ktExpression.parent)
                }
            }
    
            when (parentExpression) {
                is KtCallableDeclaration -> {
                    if (expression is KtBlockExpression) {
                        return null
                    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top