Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,693 for Invoke (0.35 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

                }
                JavaMethod.of(backedObject, Void.class, "processArgs", String[].class).invoke(backedObject, new Object[]{argArray});
                JavaMethod.of(backedObject, Void.class, "process").invoke(backedObject);
                return JavaMethod.of(backedObject, Integer.class, "getNumErrors").invoke(backedObject);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. 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)
  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-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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/ITaskFactory.java

    public interface ITaskFactory {
        ITaskFactory createChild(ProjectInternal project, InstantiationScheme instantiationScheme);
    
        /**
         * @param constructorArgs null == do not invoke constructor, empty == invoke constructor with no args, non-empty = invoke constructor with args
         */
        <S extends Task> S create(TaskIdentity<S> taskIdentity, @Nullable Object[] constructorArgs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 06:37:12 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top