Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for dispatchTo (0.23 sec)

  1. pom.xml

                <id>ensure-no-sonatype-cipher-and-sec-dispatcher</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <phase>validate</phase>
                <configuration>
                  <rules>
                    <bannedDependencies>
                      <excludes>
                        <exclude>org.sonatype.plexus:plexus-sec-dispatcher</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

            event.setTrace(trace);
            event.setArtifact(artifact);
            event.setException(exception);
    
            repositoryEventDispatcher.dispatch(event.build());
        }
    
        private void invalidDescriptor(
                RepositorySystemSession session, RequestTrace trace, Artifact artifact, Exception exception) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                    this.delegate = delegate;
                }
    
                @Override
                public void dispatch(Object message) {
                    synchronized (this) {
                        delegate.dispatch(message);
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

    import org.jetbrains.kotlin.analysis.project.structure.ProjectStructureProvider
    
    /**
     * [KaSession] is the entry point to all frontend-related work. It has the following contracts:
     *
     * - It should not be accessed from the event dispatch thread or outside a read action.
     * - It should not be leaked outside the read action it was created in. To ensure that an analysis session isn't leaked, there are
     *   additional conventions, explained further below.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

    import org.gradle.internal.concurrent.DefaultExecutorFactory;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.dispatch.ContextClassLoaderProxy;
    import org.gradle.internal.id.CompositeIdGenerator;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.id.LongIdGenerator;
    import org.gradle.internal.remote.ObjectConnection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            private final def lock = new Object()
            private final def endInput = new Received("end")
            private final def receiveQueue = new LinkedList<Message>()
    
            @Override
            void dispatch(Message message) throws MessageIOException {
                throw new UnsupportedOperationException()
            }
    
            @Override
            void flush() throws MessageIOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                }
                if (Objects.equal(e.getMessage(), "Connection reset")) {
                    return true;
                }
            }
            return false;
        }
    
        @Override
        public void dispatch(T message) throws MessageIOException {
            try {
                objectWriter.write(message);
            } catch (ObjectStreamException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

         *
         * The function is instantly deprecated, so it's not shown in the completion.
         *
         * @receiver A target callable symbol.
         * @return A dispatch receiver type for this symbol if it has any.
         */
        @Suppress("DeprecatedCallableAddReplaceWith")
        @Deprecated("Avoid using this function")
        public fun KaCallableSymbol.getDispatchReceiverType(): KaType? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                }
    
                @Suppress("DEPRECATION")
                (this@with as? KaCallableSymbol)?.getDispatchReceiverType()?.let { dispatchReceiverType ->
                    append("<dispatch receiver>: ${dispatchReceiverType.render()}")
                    if (valueParameters.isNotEmpty()) append(", ")
                }
                valueParameters.joinTo(this) { stringRepresentation(it) }
                append(")")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. docs/en/data/external_links.yml

    https://davidefiocco.github.io/streamlit-fastapi-ml-serving/ title: Machine learning model serving in Python using FastAPI and streamlit - author: Netflix author_link: https://netflixtechblog.com/ link: https://netflixtechblog.com/introducing-dispatch-da4b8a2a8072 title: Introducing Dispatch - author: Stavros Korokithakis author_link: https://twitter.com/Stavros link: https://www.stavros.io/posts/fastapi-with-django/ title: Using FastAPI with Django - author: Twilio author_link: https://www.twilio.com link: https...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top