Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,693 for Invoke (0.11 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         * fun test() {
         *   val action = foo()
         *   action("") // this call
         * }
         * ```
         *
         * Unfortunately, [symbol] for the `action("")` call will be pointing to the `Function1<P1, R>.invoke(p1: P1): R`, because we
         * intentionally unwrap use-site substitution overrides. Because of this, `symbol.name` will yield `"p1"`, and not `"bar"`.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingConcurrentMap.java

     * {@code default} methods were introduced</a>. For newer methods, like {@code forEach}, it inherits
     * their default implementations. When those implementations invoke methods, they invoke methods on
     * the {@code ForwardingConcurrentMap}.
     *
     * @author Charles Fry
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/customName.kt

    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    // CODE_FRAGMENT_CLASS_NAME: MyCodeFragment
    // CODE_FRAGMENT_METHOD_NAME: invoke
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 300 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/MixInClosurePropertiesAsMethodsDynamicObjectTest.groovy

            when:
            obj.invokeMethod("m", [new Date()] as Object[])
    
            then:
            MissingMethodException e = thrown()
            e.method == "m"
        }
    
        def "can invoke custom closure implementation"() {
            def cl = new Closure(this, this) {
                @Override
                Object call(Object... args) {
                    return "result"
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

            public String toString() {
              throw new AssertionFailedError();
            }
          };
    
      private static class Message {
        boolean invoked;
    
        @Override
        public String toString() {
          assertFalse(invoked);
          invoked = true;
          return "A message";
        }
      }
    
      private static final String FORMAT = "I ate %s pies.";
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

    import org.objectweb.asm.Type;
    import org.objectweb.asm.commons.CodeSizeEvaluator;
    
    import javax.annotation.Nullable;
    import java.lang.invoke.CallSite;
    import java.lang.invoke.LambdaMetafactory;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.lang.invoke.SerializedLambda;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. src/text/template/multi_test.go

    	{"text", "some text", "some text", nil, true},
    	{"invoke x", `{{template "x" .SI}}`, "TEXT", tVal, true},
    	{"invoke x no args", `{{template "x"}}`, "TEXT", tVal, true},
    	{"invoke dot int", `{{template "dot" .I}}`, "17", tVal, true},
    	{"invoke dot []int", `{{template "dot" .SI}}`, "[3 4 5]", tVal, true},
    	{"invoke dotV", `{{template "dotV" .U}}`, "v", tVal, true},
    	{"invoke nested int", `{{template "nested" .I}}`, "17", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        java.lang.Exception: ouch
            at org.ClassName1.methodName1(FileName1.java:11)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.ClassName2.methodName2(FileName2.java:22)
            at ClassName.testName(MyTest.java:22)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.ClassName3.methodName3(FileName3.java:33)
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

      "ModuleOp"> {
      let summary = "generate a temporary file and invoke InitTextFileToImportPass";
      let constructor = "::mlir::tf_test::CreateInitTextFileToImportTestPass()";
    }
    
    def InitTextFileToImportSavedModelTestPass : Pass<"tf-init-text-file-to-import-saved-model-test",
      "ModuleOp"> {
      let summary = "mimick a saved model and invoke InitTextFileToImportPass";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
        assertEquals(1, prepender.times);
      }
    
      public void testConstructor_returning() throws Exception {
        Invokable<?, Prepender> delegate =
            Prepender.constructor(String.class, int.class).returning(Prepender.class);
        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.8K bytes
    - Viewed (0)
Back to top