Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for methodName2 (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCacheRule.groovy

            }
            def enabledBottomSpec = isEnabledBottomSpec(annotation.bottomSpecs(), { description.className.endsWith(".$it") })
            def enabledIteration = iterationMatches(annotation.iterationMatchers(), description.methodName)
            if (enabledBottomSpec && enabledIteration) {
                ToBeFixedForConfigurationCache.Skip skip = annotation.skip()
                if (skip == ToBeFixedForConfigurationCache.Skip.DO_NOT_SKIP) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCacheRule.groovy

            }
            def enabledBottomSpec = isEnabledBottomSpec(annotation.bottomSpecs(), { description.className.endsWith(".$it") })
            def enabledIteration = iterationMatches(annotation.iterationMatchers(), description.methodName)
            if (enabledBottomSpec && enabledIteration) {
                return new SkippingRuleStatement(annotation.because())
            }
            return base
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            then:
            ServiceLookupException e = thrown()
            e.message == "Cannot use decorator method ${decoratorProvider.class.simpleName}.${methodName}Long() when no parent registry is provided."
    
            where:
            decoratorProvider                        | methodName
            new TestDecoratingProviderWithCreate()   | 'create'
            new TestDecoratingProviderWithDecorate() | 'decorate'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

            when:
            runTestAndCollectProgressEvents()
    
            TestFinishEvent testEvent = testEvents.find { TestFinishEvent e -> e.descriptor instanceof JvmTestOperationDescriptor && e.descriptor.methodName == 'works'}
            TestOutputEvent outputEvent = outputEvents.find { TestOutputEvent event -> event.descriptor.message == "out1" && event.descriptor.destination == Destination.StdOut }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }});
            }
    
            private void addSetter(String methodName, String methodDescriptor, BytecodeFragment body) {
                addSetter(methodName, methodDescriptor, null, body);
            }
    
            private void addSetter(String methodName, String methodDescriptor, @Nullable String signature, BytecodeFragment body) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

    
    internal
    fun Iterable<Method>.serializationMethodHierarchy(methodName: String, parameterType: Class<*>): List<Method> =
        filter { method ->
            method.run {
                isPrivate(modifiers)
                    && parameterCount == 1
                    && returnType == Void.TYPE
                    && name == methodName
                    && parameterTypes[0].isAssignableFrom(parameterType)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private void warnOnInvalidInternalAPIUsage(String methodName, ProperMethodUsage... properUsages) {
            warnOnDeprecatedUsage(methodName, true, properUsages);
        }
    
        private void warnOnDeprecatedUsage(String methodName, ProperMethodUsage... properUsages) {
            warnOnDeprecatedUsage(methodName, false, properUsages);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

            protected <T> T invoke(ClassLoader classLoader, String methodName, MethodType methodType, Object... arguments) {
                try {
                    MethodHandles.Lookup lookup = getLookupForClassLoader(classLoader);
                    MethodHandle methodHandle = lookup.findVirtual(ClassLoader.class, methodName, methodType);
                    return (T) methodHandle.bindTo(classLoader).invokeWithArguments(arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	expectedError := fmt.Sprintf("invalid key: %q", invalidKey)
    
    	expectInvalidKey := func(methodName string, err error) {
    		if err == nil {
    			t.Errorf("[%s] expected invalid key error; got nil", methodName)
    		} else if err.Error() != expectedError {
    			t.Errorf("[%s] expected invalid key error; got %v", methodName, err)
    		}
    	}
    
    	ctx, store, _ := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                }
    
                FileCollection myFc = project.files(prod.map { it.outputClasses })
    
                tasks.register("myTask", MyTask.class) {
                    classes.from(
                        files(${methodName}(myFc, project.layout.buildDirectory.get()))
                    )
                }
            """
    
            when:
            run "myTask"
    
            then:
            outputContains("CONSUMING build/producerOutput")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top