Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for isMatching (0.13 sec)

  1. guava/src/com/google/common/reflect/Reflection.java

          } catch (ClassNotFoundException e) {
            throw new AssertionError(e);
          }
        }
      }
    
      /**
       * Returns a proxy instance that implements {@code interfaceType} by dispatching method
       * invocations to {@code handler}. The class loader of {@code interfaceType} will be used to
       * define the proxy class. To implement multiple interfaces or specify a class loader, use {@link
       * Proxy#newProxyInstance}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
         *
         * @throws DispatchException When there were any failures dispatching method calls to the target object.
         */
        @Override
        void stop() throws DispatchException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.h

    // Verifies that the given types are cast compatible. If not, emits appropriate
    // error for the given op. If mask_one_dim is set to true, then the types are
    // allowed to have one mismatching dimension. Masking one of the dimensions is
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/AntBuilderDelegate.java

            builder.invokeMethod("setParent", parent, child);
        }
    
        @Override
        protected void nodeCompleted(Object parent, Object node) {
            if (parent == null && node == null) {// happens when dispatching to taskdef via createNode()
                return;
            }
            builder.invokeMethod("nodeCompleted", parent, node);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 10 10:55:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  5. src/strconv/strconv_test.go

    	for _, v := range vectors {
    		nerr, ok := v.err.(*NumError)
    		if !ok {
    			t.Errorf("test %s, error was not a *NumError", v.want)
    			continue
    		}
    		if got := nerr.Func; got != v.want {
    			t.Errorf("mismatching Func: got %s, want %s", got, v.want)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top