Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for isMatching (0.16 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

                    dispatchLock.unlock();
                }
            } catch (MessageIOException e) {
                if (suspect) {
                    LOG.debug("Problem dispatching message to the daemon.", e);
                } else {
                    LOG.debug("Problem dispatching message to the daemon. Performing 'on failure' operation...");
                    if (!hasReceived && staleAddressDetector.maybeStaleAddress(e)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// Complete returns a QueueSet configured by the given
    	// dispatching configuration.
    	Complete(DispatchingConfig) QueueSet
    }
    
    // QueueSet is the abstraction for the queuing and dispatching
    // functionality of one non-exempt priority level.  It covers the
    // functionality described in the "Assignment to a Queue", "Queuing",
    // and "Dispatching" sections of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/DispatchFailureHandler.java

     */
    package org.gradle.internal.dispatch;
    
    public interface DispatchFailureHandler<T> {
        /**
         * Called when a message could not be dispatched. This method can throw an exception to abort further dispatching.
         */
        void dispatchFailed(T message, Throwable failure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 892 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/eventbus/Subscriber.java

    import java.lang.reflect.Method;
    import java.util.concurrent.Executor;
    import javax.annotation.CheckForNull;
    
    /**
     * A subscriber method on a specific object, plus the executor that should be used for dispatching
     * events to it.
     *
     * <p>Two subscribers are equivalent when they refer to the same method on the same object (not
     * class). This property is used to ensure that no subscriber method is registered more than once.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/Subscriber.java

    import java.lang.reflect.Method;
    import java.util.concurrent.Executor;
    import javax.annotation.CheckForNull;
    
    /**
     * A subscriber method on a specific object, plus the executor that should be used for dispatching
     * events to it.
     *
     * <p>Two subscribers are equivalent when they refer to the same method on the same object (not
     * class). This property is used to ensure that no subscriber method is registered more than once.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	dispatching bool
    	// watchersBuffer is a list of watchers potentially interested in currently
    	// dispatched event.
    	watchersBuffer []*cacheWatcher
    	// blockedWatchers is a list of watchers whose buffer is currently full.
    	blockedWatchers []*cacheWatcher
    	// watchersToStop is a list of watchers that were supposed to be stopped
    	// during current dispatching, but stopping was deferred to the end of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ReturnResult.java

        @Override
        public void execute(DaemonCommandExecution execution) {
            execution.proceed();
    
            Result result = new Success(execution.getResult());
    
            LOGGER.debug("Daemon is dispatching the build result: {}", result);
            execution.getConnection().completed(result);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/dsl/DependencyResultSpecTest.groovy

            where:
            notation << ['org', 'org.foo', 'foo-core', '1.0', 'org.foo:foo-core', 'org.foo:foo-core:1.0']
        }
    
        def "knows mismatching dependencies"() {
            expect:
            !new DependencyResultSpec(notation).isSatisfiedBy(newDependency("org.foo", "foo-core", "1.0"))
    
            where:
            notation << ['org1', '2.0', 'core-foo']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 04:36:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    					scheme.Name(),
    					schema.GroupVersionKind{Group: "", Version: "v9", Kind: "Carp"},
    					nil,
    				))
    			},
    		},
    		{
    			name: "convert valid versioned unstructured to object w/ a mismatching kind should fail",
    			unstructuredToConvert: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"apiVersion": "v1",
    					"kind":       "Carp",
    					"metadata": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/dependencies/internal/StrictDependencyResultSpecTest.groovy

            new StrictDependencyResultSpec(moduleIdentifier).isSatisfiedBy(newDependency("org.foo", "foo-core", "1.0"))
    
            where:
            moduleIdentifier << [id('org.foo', 'foo-core')]
        }
    
        def "knows mismatching dependencies"() {
            expect:
            !new StrictDependencyResultSpec(moduleIdentifier).isSatisfiedBy(newDependency("org.foo", "foo-core", "1.0"))
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 19 10:00:00 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top