Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 354 for Dispatch (0.33 sec)

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

            .singleOrNull()
    }
    
    /**
     * Implicit dispatch receiver is present when an extension function declared in object
     * is imported somewhere else and used without directly referencing the object instance
     * itself:
     *
     * ```kt
     * import Foo.bar
     *
     * object Foo { fun String.bar() {} }
     *
     * fun usage() {
     *   "hello".bar() // this call has implicit 'Foo' dispatch receiver
     * }
     * ```
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/StreamingAwareBuildControllerAdapter.java

            super(buildController, adapter, modelMapping, gradleVersion, rootDir);
            this.relay = (InternalStreamedValueRelay) buildController;
        }
    
        @Override
        public <T> void send(T value) {
            relay.dispatch(value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodMixIn.java

    /**
     * A decorated domain object type may optionally implement this interface to dynamically expose methods in addition to those declared statically on the type.
     *
     * Note that when a type implements this interface, dynamic Groovy dispatch will not be used to discover opaque methods. That is, methods such as methodMissing() will be ignored.
     */
    public interface MethodMixIn {
        MethodAccess getAdditionalMethods();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/QueueDispatcher.kt

    package okhttp3.mockwebserver
    
    import mockwebserver3.QueueDispatcher
    
    class QueueDispatcher : Dispatcher() {
      internal val delegate = QueueDispatcher()
    
      @Throws(InterruptedException::class)
      override fun dispatch(request: RecordedRequest): MockResponse {
        throw UnsupportedOperationException("unexpected call")
      }
    
      override fun peek(): MockResponse {
        throw UnsupportedOperationException("unexpected call")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Oct 18 12:55:43 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/lastafluteMap.dfprop

        # package for your domain name, e.g. com.example
        ; domainPackage = org.codelibs.fess
    
        # keywords for environment properties, same as directory name
        ; environmentList = list:{}
    
        # environment dispatch by lasta.env of system property?
        ; isUseLastaEnv = false
    
        # settings for web applications
        ; appMap = map:{
            ; fess = map:{
                ; path = ..
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/TestConnection.groovy

        private final BlockingQueue<InterHubMessage> outgoing = new LinkedBlockingQueue<>()
        private final BlockingQueue<InterHubMessage> outgoingBuffered = new LinkedBlockingQueue<>()
    
        @Override
        void dispatch(InterHubMessage message) {
            outgoingBuffered.put(message)
        }
    
        @Override
        void flush() {
            outgoingBuffered.drainTo(outgoing)
        }
    
        @Override
        InterHubMessage receive() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	admission.Attributes
    	resource schema.GroupVersionResource
    }
    
    func (a *attrWithResourceOverride) GetResource() schema.GroupVersionResource { return a.resource }
    
    // Dispatch is called by the downstream Validate or Admit methods.
    func (a *Webhook) Dispatch(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) error {
    	if rules.IsExemptAdmissionConfigurationResource(attr) {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DispatchingFailureIntegrationSpec.groovy

            file("settings.gradle") << "// empty"
            def projectdir = file("project dir").createDir()
    
            //requesting x failing builds creates enough stress to expose issues with unsynchronized dispatch
            50.times {
                executer.usingProjectDirectory(projectdir)
                        .withTasks("tasks")
                        .runWithFailure()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerNotificationException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.event;
    
    import org.gradle.internal.dispatch.MethodInvocation;
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. mockwebserver/README.md

    Dispatcher (`import okhttp3.mockwebserver.Dispatcher`) to handle requests using another policy. One natural policy is to
    dispatch on the request path.
    You can, for example, filter the request instead of using `server.enqueue()`.
    
    ```java
    final Dispatcher dispatcher = new Dispatcher() {
    
        @Override
        public MockResponse dispatch (RecordedRequest request) throws InterruptedException {
    
            switch (request.getPath()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top