Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for methodName2 (0.16 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultJvmTestOperationDescriptor.java

        private final String className;
        private final String methodName;
    
        public DefaultJvmTestOperationDescriptor(
            InternalJvmTestDescriptor internalJvmTestDescriptor,
            OperationDescriptor parent,
            JvmTestKind jvmTestKind,
            String suiteName,
            String className,
            String methodName
        ) {
            super(internalJvmTestDescriptor, parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceFileElement.java

        protected XCTestCaseElement passingTestCase(String methodName) {
            return testCase(methodName, "XCTAssert(true)", false);
        }
    
        protected XCTestCaseElement failingTestCase(String methodName) {
            return testCase(methodName, "XCTAssert(false)", true);
        }
    
        protected XCTestCaseElement testCase(String methodName, String assertion) {
            return testCase(methodName, assertion, false);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeRequestExtra.java

            DeprecationSpec deprecationSpec,
            BinaryCompatibility binaryCompatibility
        ) {
            this.propertyName = propertyName;
            this.methodName = methodName;
            this.methodDescriptor = methodDescriptor;
            this.propertyType = propertyType;
            this.isFluentSetter = isFluentSetter;
            this.implementationClassName = implementationClassName;
            this.interceptedPropertyName = interceptedPropertyName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:31:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

          args: Array<Any>?,
        ): Any? {
          val callArgs = args ?: arrayOf<Any?>()
          val methodName = method.name
          val returnType = method.returnType
          if (methodName == "supports" && Boolean::class.javaPrimitiveType == returnType) {
            return true // ALPN is supported.
          } else if (methodName == "unsupported" && Void.TYPE == returnType) {
            this.unsupported = true // Peer doesn't support ALPN.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/BeanDesc.java

         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
         * @param paramTypes
         *            メソッドの引数型の並び
         * @return 引数の型に応じた{@link MethodDesc}
         */
        MethodDesc getMethodDescNoException(String methodName, Class<?>... paramTypes);
    
        /**
         * 引数に適合する{@link MethodDesc}を返します。
         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapterTest.groovy

        def 'can recognize JUnit4 description #description'() {
            expect:
            JUnitTestEventAdapter.methodName(description) == methodName
            JUnitTestEventAdapter.className(description) == className
    
            where:
            description                 | className                   | methodName
            'ok(org.gradle.Test)'       | 'org.gradle.Test'           | 'ok'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestDescriptor.java

            this.testKind = testKind;
            this.suiteName = suiteName;
            this.className = className;
            this.methodName = methodName;
            this.parentId = parentId;
            this.taskPath = taskPath;
        }
    
        @Override
        public OperationIdentifier getId() {
            return id;
        }
    
        @Override
        public String getName() {
            return operationName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. cluster/gce/windows/testonly/user-profile.psm1

        }
        catch
        {
            Write-Error $_.Exception.Message;
            break;
        }
        $methodName = 'UserEnvCP'
        $script:nativeMethods = @();
     
        if (-not ([System.Management.Automation.PSTypeName]$MethodName).Type)
        {
            Register-NativeMethod "userenv.dll" "int CreateProfile([MarshalAs(UnmanagedType.LPWStr)] string pszUserSid,`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/AbstractOptionIntegrationSpec.groovy

            String methodName = propertyType.substring(0, 1).toLowerCase() + propertyType.substring(1)
    
            """
                public class SampleTask extends DefaultTask {
                    @Internal
                    @Option(option = "myProp", description = "Configures command line option 'myProp'.")
                    final $propertyType<$optionType> myProp = project.objects.$methodName($optionType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 09:40:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

            return new DefaultTestDescriptor(id, className(description), methodName(description));
        }
    
        private static TestDescriptorInternal nullSafeDescriptor(Object id, Description description) {
            String methodName = methodName(description);
            if (methodName != null) {
                return new DefaultTestDescriptor(id, className(description), methodName);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top