Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 611 for Invoke (0.43 sec)

  1. guava/src/com/google/common/base/Throwables.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // java.lang.reflect
      private static Object invokeAccessibleNonThrowingMethod(
          Method method, Object receiver, Object... params) {
        try {
          return method.invoke(receiver, params);
        } catch (IllegalAccessException e) {
          throw new RuntimeException(e);
        } catch (InvocationTargetException e) {
          throw propagate(e.getCause());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics.cc

    // Counter that tracks number of calls for each SavedModel write API. Summing
    // across "api_label" is not expected to equal the ".../write/count" cell value
    // because programs can invoke more than one API to save a single SM and
    // because the API may error out before successfully writing a SM.
    auto* saved_model_write_api = monitoring::Counter<1>::New(
        "/tensorflow/core/saved_model/write/api",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            e.message == "Cannot set readonly property: readOnly for class: ${SomeTypeWithReadOnly.name}"
        }
    
        def "reports contract type rather than implementation class when attempting to invoke unknown method"() {
            given:
            def impl = newNodeBackedInstance(SomeType)
    
            when:
            impl.unknown('12')
    
            then:
            MissingMethodException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/intervals.go

    // backwards pass over each BB looking for uses and kills. The
    // expected use case is:
    //
    //   - invoke MakeIntervalsBuilder to create a new object "b"
    //   - series of calls to b.Live/b.Kill based on a backwards reverse layout
    //     order scan over instructions
    //   - invoke b.Finish() to produce final set
    //
    // See the Live method comment for an IR example.
    type IntervalsBuilder struct {
    	s Intervals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

    import org.objectweb.asm.Handle;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Type;
    import org.objectweb.asm.tree.MethodNode;
    
    import java.io.File;
    import java.lang.invoke.CallSite;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.Properties;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            }
    
            @Override
            public Object invoke(Object object, Object[] arguments) {
                return invokeWithInterceptor(callsTracker, callInterceptor, name, INVOKE_METHOD, object, arguments, consumerClass, () -> {
                    if (original != null) {
                        return original.invoke(object, arguments);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          arguments[arguments.length - 1] = TimeUnit.MILLISECONDS;
        }
        try {
          Object result;
          doingCallLatch.countDown();
          try {
            result = method.invoke(monitor, arguments);
          } finally {
            callCompletedLatch.countDown();
          }
          if (result == null) {
            return Outcome.SUCCESS;
          } else if ((Boolean) result) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        }
        if (isDurationBased(method)) {
          arguments.add(Duration.ofMillis(timeout.millis));
        }
        try {
          Object result;
          doingCallLatch.countDown();
          try {
            result = method.invoke(monitor, arguments.toArray());
          } finally {
            callCompletedLatch.countDown();
          }
          if (result == null) {
            return Outcome.SUCCESS;
          } else if ((Boolean) result) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

                protected void execute(ModelRuleInvoker<?> invoker, ComponentSpecFactory registry, List<ModelView<?>> inputs) {
                    try {
                        ModelSchema<? extends ComponentSpec> schema = schemaStore.getSchema(modelType);
                        TypeBuilderInternal<? extends ComponentSpec> builder = new DefaultTypeBuilder<ComponentSpec>(getAnnotationType(), schema);
                        invoker.invoke(builder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingNavigableMap}.
     *
     * <p>Each of the {@code standard} methods uses the map's comparator (or the natural ordering of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top