Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 212 for typemap (0.22 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverSmartCasted.ir.txt

              BLOCK type=kotlin.Int origin=null
                TYPE_OP type=<root>.FooImpl origin=CAST typeOperand=<root>.FooImpl
                  GET_VAR 'p0: <root>.Foo declared in <root>.CodeFragment.run' type=<root>.Foo origin=null
                CALL 'public final fun <get-n> (): kotlin.Int declared in <root>.FooImpl' type=kotlin.Int origin=GET_PROPERTY
                  $this: TYPE_OP type=<root>.FooImpl origin=IMPLICIT_CAST typeOperand=<root>.FooImpl
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Dec 12 17:31:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/cidr.go

    }
    
    // ConvertToType implements ref.Val.ConvertToType.
    func (d CIDR) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case CIDRType:
    		return d
    	case types.TypeType:
    		return CIDRType
    	case types.StringType:
    		return types.String(d.Prefix.String())
    	}
    	return types.NewErr("type conversion error from '%s' to '%s'", CIDRType, typeVal)
    }
    
    // Equal implements ref.Val.Equal.
    func (d CIDR) Equal(other ref.Val) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistry.java

        private final Map<String, VersionEntry> versions = new TreeMap<>();
        private final Map<String, LibraryEntry> libraries = new TreeMap<>();
        private final Map<String, PluginEntry> plugins = new TreeMap<>();
    
        private final boolean fullyQualifiedAliases;
    
        public VersionCatalogDependencyRegistry(boolean fullyQualifiedAliases) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. tests/test_generic_parameterless_depends.py

    from typing import TypeVar
    
    from fastapi import Depends, FastAPI
    from fastapi.testclient import TestClient
    from typing_extensions import Annotated
    
    app = FastAPI()
    
    T = TypeVar("T")
    
    Dep = Annotated[T, Depends()]
    
    
    class A:
        pass
    
    
    class B:
        pass
    
    
    @app.get("/a")
    async def a(dep: Dep[A]):
        return {"cls": dep.__class__.__name__}
    
    
    @app.get("/b")
    async def b(dep: Dep[B]):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. fastapi/concurrency.py

    from typing import AsyncGenerator, ContextManager, TypeVar
    
    import anyio
    from anyio import CapacityLimiter
    from starlette.concurrency import iterate_in_threadpool as iterate_in_threadpool  # noqa
    from starlette.concurrency import run_in_threadpool as run_in_threadpool  # noqa
    from starlette.concurrency import (  # noqa
        run_until_first_complete as run_until_first_complete,
    )
    
    _T = TypeVar("_T")
    
    
    @asynccontextmanager
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Dec 25 17:57:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/DefaultSslContextFactory.java

    import org.gradle.internal.SystemProperties;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.net.ssl.SSLContext;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    @NonNullApi
    public class DefaultSslContextFactory implements SslContextFactory {
        private static final Set<String> SSL_SYSTEM_PROPERTIES = ImmutableSet.of(
            "ssl.TrustManagerFactory.algorithm",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/CollectionCodecs.kt

     */
    val propertiesCodec: Codec<Properties> = mapCodec { Properties() }
    
    
    val treeMapCodec: Codec<TreeMap<Any?, Any?>> = codec(
        {
            write(it.comparator())
            writeMap(it)
        },
        {
            @Suppress("unchecked_cast")
            val comparator = read() as Comparator<Any?>?
            readMapInto { TreeMap(comparator) }
        }
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/VisitableURLClassLoaderSpecSerializer.java

            byte typeTag = decoder.readByte();
            String name = decoder.readString();
            List<URL> classpath = new ArrayList<>();
            int classpathSize = decoder.readInt();
            for (int i=0; i<classpathSize; i++) {
                classpath.add(new URL(decoder.readString()));
            }
    
            switch(typeTag) {
                case VISITABLE_URL_CLASSLOADER_SPEC:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationWarningsCollector.java

    import org.gradle.api.logging.Logger;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    @NotThreadSafe
    public class PublicationWarningsCollector {
    
        private final Logger logger;
        private final String unsupportedFeature;
        private final String incompatibleFeature;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/monitoring.go

    var providerLookupClusterFailures = monitoring.NewSum(
    	"provider_lookup_cluster_failures",
    	"Number of times a cluster lookup failed",
    )
    
    func IncLookupClusterFailures(provider string) {
    	providerLookupClusterFailures.With(typeTag.Value(provider)).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 904 bytes
    - Viewed (0)
Back to top