Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for isMatching (0.14 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

            this.maxQueueSize = maxQueueSize;
            state = State.Init;
            if (dispatch != null) {
                dispatchTo(dispatch);
            }
        }
    
        /**
         * Starts dispatching messages to the given handler. The handler does not need to be thread-safe.
         */
        public void dispatchTo(final Dispatch<? super T> dispatch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/log/slog/value_access_benchmark_test.go

    func (v *setVisitor) Bool(x bool)              { v.b = x }
    func (v *setVisitor) Duration(x time.Duration) { v.d = x }
    func (v *setVisitor) Any(x any)                { v.a = x }
    
    // When dispatching on all types, the "As" functions are slightly slower
    // than switching on the kind and then calling a function that checks
    // the kind again. See BenchmarkDispatch above.
    
    func (a Value) AsString() (string, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/compress/bzip2/bzip2_test.go

    			} else {
    				t.Errorf("test %d, unexpected success: ReadBits(%d) = nil", i, v.nbits)
    			}
    		}
    		if !v.fail && val != v.value {
    			t.Errorf("test %d, mismatching value: ReadBits(%d) = %d, want %d", i, v.nbits, val, v.value)
    		}
    	}
    }
    
    func TestMTF(t *testing.T) {
    	var vectors = []struct {
    		idx int   // Input index
    		sym uint8 // Expected output symbol
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultIncomingConnectionHandler.java

                    commandExecuter.executeCommand(daemonConnection, command, daemonContext, daemonStateControl);
                } catch (Throwable e) {
                    LOGGER.warn(String.format("Unable to execute command %s from %s. Dispatching the failure to the daemon client", command, connection), e);
                    daemonConnection.completed(new Failure(e));
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            }
    
            then: "build progress events must be forwarded to the attached listeners"
            events.assertIsABuild()
        }
    
        def "stops dispatching events to progress listeners when a listener fails and continues with build"() {
            given:
            goodCode()
    
            when: "launching a build"
            List<ProgressEvent> resultsOfFirstListener = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/eventbus/EventBus.java

       * Returns the identifier for this event bus.
       *
       * @since 19.0
       */
      public final String identifier() {
        return identifier;
      }
    
      /** Returns the default executor this event bus uses for dispatching events to subscribers. */
      final Executor executor() {
        return executor;
      }
    
      /** Handles the given exception thrown by a subscriber with the given context. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

     * to the proper binding (if one is found).
     *
     * The binding (a tagged codec) is chosen based on the availability of a [Binding.encoding] for the value being encoded.
     * This is basically implemented as a predicate dispatching on the value type, first available Binding.encoding wins
     * and its [Binding.tag] is recorded in the output stream so decoding can be implemented via a fast array lookup.
     *
     * @see Binding.tag
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/runtime/os_wasip1.go

    // However, the WASI errno type is intended to be a 16 bits integer, and in the
    // event struct the error field should be of type errno. If we used the errno
    // type for the error field it would result in a mismatching field alignment and
    // struct size because errno is declared as a 32 bits type, so we declare the
    // error field as a plain uint16.
    type event struct {
    	userdata    userdata
    	error       uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

        bind(unsupported<UnresolvedComponentResult>())
        bind(unsupported<ArtifactResult>())
    
        // Publishing types
        bind(unsupported<Publication>())
    
        // Event dispatching infrastructure types
        bind(unsupported<ListenerBroadcast<*>>())
        bind(unsupported<AbstractBroadcastDispatch<*>>())
    
        // Direct build service references
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/eventbus/EventBus.java

       * Returns the identifier for this event bus.
       *
       * @since 19.0
       */
      public final String identifier() {
        return identifier;
      }
    
      /** Returns the default executor this event bus uses for dispatching events to subscribers. */
      final Executor executor() {
        return executor;
      }
    
      /** Handles the given exception thrown by a subscriber with the given context. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
Back to top