Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 955 for GetPod (0.31 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

            if (result == null) {
                return null;
            } else {
                return targetClass.cast(result);
            }
        }
    
        /**
         * Utility method to invoke a method on an object by reflective means.
         *
         * @return the result of the method invocation as an {@link Object}
         * @see #invokeMethod(Object, String, Class) for the generic version of this method
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java

        public static ParameterizedClassDesc createParameterizedClassDesc(final Method method, final int index,
                final Map<TypeVariable<?>, Type> map) {
            assertArgumentNotNull("method", method);
            assertArgumentArrayIndex("index", index, method.getParameterTypes().length);
            assertArgumentNotNull("map", map);
    
            return createParameterizedClassDesc(method.getGenericParameterTypes()[index], map);
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    }
    
    // Checks if the given method is a histogram-based calibration method.
    inline bool IsHistogramCalibration(
        const CalibrationOptions::CalibrationMethod method) {
      return method ==
                 CalibrationOptions::CALIBRATION_METHOD_HISTOGRAM_PERCENTILE ||
             method ==
                 CalibrationOptions::CALIBRATION_METHOD_HISTOGRAM_MSE_BRUTEFORCE ||
             method == CalibrationOptions::
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * Prefer returning {@code null} instead of the {@code classfileBuffer} to continue loading the original bytecode.
         * <p>
         * Throwing the exception from this method aborts the transformation but doesn't affect class loading. The caller
         * (the agent) will catch all throwables thrown by this method and forward them to {@link #transformFailed(String, Throwable)}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue25727.go

    var s = http.Server{}
    var _ = s.doneChan                  // ERROR "s.doneChan undefined .cannot refer to unexported field or method doneChan.$|unexported field or method|s.doneChan undefined"
    var _ = s.DoneChan                  // ERROR "s.DoneChan undefined .type http.Server has no field or method DoneChan.$|undefined field or method"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Method <org.gradle.api.plugins.quality.CheckstyleExtension.getConfig()> has raw return type org.gradle.api.resources.TextResource in (CheckstyleExtension.java:0)
    Method <org.gradle.api.plugins.quality.CodeNarcExtension.getConfig()> has raw return type org.gradle.api.resources.TextResource in (CodeNarcExtension.java:0)
    Method <org.gradle.api.plugins.quality.PmdExtension.getRuleSetConfig()> has raw return type org.gradle.api.resources.TextResource in (PmdExtension.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  7. test/fixedbugs/issue28268.go

    // struct field and method names are suppressed.
    
    package p
    
    type T struct {
    	a, b, c int
    	E
    }
    
    type E struct{}
    
    func (T) b()  {} // ERROR "field and method named b|redeclares struct field name|field and method with the same name b"
    func (*T) E() {} // ERROR "field and method named E|redeclares struct field name|field and method with the same name E"
    
    func _() {
    	var x T
    	_ = x.a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 764 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

            "buildFinished"     | _
        }
    
        @UnsupportedWithConfigurationCache
        def "produces reasonable error when BuildListener.#method method fails"() {
            settingsFile << """
    def listener = new BuildAdapter() {
        @Override
        void ${method}(${params}) {
            throw new RuntimeException("broken")
        }
    }
    
    gradle.addListener(listener)
    gradle.rootProject { task a }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // we create a test suite containing a test for every AbstractFutureTest test method and we
        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

            )
        }
    
        static class AddScenarioDefinitionInterceptor implements IMethodInterceptor {
            private final Method method
            private final RunFor runFor
    
            AddScenarioDefinitionInterceptor(Method method, RunFor runFor) {
                this.method = method
                this.runFor = runFor
            }
    
            @Override
            void intercept(IMethodInvocation invocation) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top