Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 147 for typeA (0.22 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeParameterType.kt

    import org.jetbrains.kotlin.analysis.api.types.KaTypeNullability
    import org.jetbrains.kotlin.analysis.api.types.KaTypeParameterType
    import org.jetbrains.kotlin.analysis.api.types.KaUsualClassType
    import org.jetbrains.kotlin.analysis.low.level.api.fir.util.errorWithFirSpecificEntries
    import org.jetbrains.kotlin.fir.types.ConeTypeParameterType
    import org.jetbrains.kotlin.fir.types.renderForDebugging
    import org.jetbrains.kotlin.name.Name
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/conversions.go

    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    	if V, ok := V.(*Pointer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. cmd/main.go

    			if sort.SearchStrings(closestCommands, value) < len(closestCommands) {
    				continue
    			}
    			// 2 is arbitrary and represents the max
    			// allowed number of typed errors
    			if words.DamerauLevenshteinDistance(command, value) < 2 {
    				closestCommands = append(closestCommands, value)
    			}
    		}
    
    		return closestCommands
    	}
    
    	// Register all commands.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSignatureSubstitutor.kt

         *
         * @see KaSubstitutor.substitute
         */
        public fun <S : KaVariableLikeSymbol> S.substitute(substitutor: KaSubstitutor): KaVariableLikeSignature<S> =
            withValidityAssertion { analysisSession.signatureSubstitutor.substitute(this, substitutor) }
    
        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationRendererProvider.kt

    import org.jetbrains.kotlin.analysis.api.renderer.types.KaTypeRenderer
    import org.jetbrains.kotlin.analysis.api.renderer.types.impl.KaTypeRendererForSource
    import org.jetbrains.kotlin.analysis.api.symbols.KaDeclarationSymbol
    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.types.Variance
    
    public abstract class KaSymbolDeclarationRendererProvider : KaSessionComponent() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirType.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.types
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.types.KaTypeNullability
    import org.jetbrains.kotlin.fir.types.ConeKotlinType
    import org.jetbrains.kotlin.fir.types.ConeNullability
    
    internal interface KaFirType : KaLifetimeOwner {
        val coneType: ConeKotlinType
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_util.h

    #include <memory>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/numeric/bits.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/status_macros.h"
    #include "xla/statusor.h"
    #include "tensorflow/core/framework/types.h"
    
    namespace tensorflow {
    namespace jit {
    class DeviceInfoCache;
    class DeviceSet;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/zz_generated.prerelease-lifecycle.go

    func (in *Ingress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorFactory.kt

    import org.jetbrains.kotlin.analysis.api.fir.symbols.KaFirTypeParameterSymbol
    import org.jetbrains.kotlin.analysis.api.fir.types.KaFirGenericSubstitutor
    import org.jetbrains.kotlin.analysis.api.fir.types.KaFirMapBackedSubstitutor
    import org.jetbrains.kotlin.analysis.api.fir.types.KaFirType
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutorByMap
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/impl/KtTypeRendererForSource.kt

    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaRendererTypeApproximator
    import org.jetbrains.kotlin.analysis.api.renderer.types.KaExpandedTypeRenderingMode
    import org.jetbrains.kotlin.analysis.api.renderer.types.KaTypeRenderer
    import org.jetbrains.kotlin.analysis.api.renderer.types.renderers.*
    
    public object KaTypeRendererForSource {
        public val WITH_QUALIFIED_NAMES: KaTypeRenderer = KaTypeRenderer {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top