Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,545 for Invoke (0.1 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule.txt

        inner (anonymous) class MainKt$ArticleScreenContent$1
        static method <clinit>(): void
        method <init>(): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): void
    }
    
    final class MainKt$ArticleScreenContent$2 {
        // source: 'main.kt'
        enclosing method MainKt.ArticleScreenContent(Ljava/lang/String;Lkotlin/jvm/functions/Function0;)V
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

                new StackTraceElement('java.lang.reflect.Method', 'invoke', 'Method.java', 498),
                new StackTraceElement('some.Class', 'withoutSource', null, -1),
                new StackTraceElement('some.Class', 'withNativeMethod', null, -2),
                new StackTraceElement('java.lang.reflect.Method', 'invoke', 'Method.java', 498),
                new StackTraceElement('java.lang.reflect.Method', 'invoke', 'Method.java', 498),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule2.txt

        inner (anonymous) class MainKt$ArticleScreenContent$1
        static method <clinit>(): void
        method <init>(): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): void
    }
    
    final class MainKt$ArticleScreenContent$2 {
        // source: 'main.kt'
        enclosing method MainKt.ArticleScreenContent(Ljava/lang/String;Lkotlin/jvm/functions/Function0;)V
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ArtifactHandlerScope.kt

         * @see [ArtifactHandler.add]
         */
        operator fun Configuration.invoke(artifactNotation: Any, configureAction: ConfigurablePublishArtifact.() -> Unit): PublishArtifact =
            add(name, artifactNotation, configureAction)
    
    
        /**
         * Configures the artifacts.
         */
        inline operator fun invoke(configuration: ArtifactHandlerScope.() -> Unit) =
            run(configuration)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istioctl/istioctl.go

    	WaitForConfig(defaultNamespace string, configs string) error
    
    	// Invoke invokes an istioctl command and returns the output and exception.
    	// stdout and stderr will be returned as different strings
    	Invoke(args []string) (string, string, error)
    
    	// InvokeOrFail calls Invoke and fails tests if it returns en err
    	InvokeOrFail(t test.Failer, args []string) (string, string)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 14 22:20:09 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istioctl/kube.go

    		// set it to low timeout to reduce impact
    		if out, stderr, err := c.Invoke([]string{"x", "wait", "-v", "--timeout=5s", cfg.GroupVersionKind.Kind, cfg.Name + "." + ns}); err != nil {
    			return fmt.Errorf("wait: %v\nout: %v\nerr: %v", err, out, stderr)
    		}
    	}
    	return nil
    }
    
    // Invoke implements Instance
    func (c *kubeComponent) Invoke(args []string) (string, string, error) {
    	cmdArgs := append([]string{
    		"--kubeconfig",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                this.invokers = invokers.toArray(new MethodInvoker[0]);
            }
    
            @Override
            public void invoke(MethodInvocation method) throws Throwable {
                for (int i = 0; !method.found() && i < invokers.length; i++) {
                    MethodInvoker invoker = invokers[i];
                    invoker.invoke(method);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/RetainStacktraceForInheritedTestMethodsTest.groovy

            //         at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            //         at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
            //         at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            //         at java.base/java.lang.reflect.Method.invoke(Method.java:566)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/containers-string-invoke/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    tasks.register("myCheck")
    
    // tag::string-invoke[]
    tasks {
        "test"(Test::class) {
            testLogging.showStackTraces = true
        }
        "check" {
            dependsOn(named("myCheck"))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/callableReferenceLHS.kt

    fun test() {
        val f = String::length
        val s = "hello"
        val g = <expr>s</expr>::length
        f() + g() + String::length.invoke(s) + s::length.invoke()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 158 bytes
    - Viewed (0)
Back to top