Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for privateMethod (0.08 seconds)

  1. guava-tests/test/com/google/common/reflect/InvokableTest.java

            .addEqualityGroup(A.method("privateMethod"), A.method("privateMethod"))
            .addEqualityGroup(A.method("publicFinalMethod"))
            .addEqualityGroup(Prepender.constructor(), Prepender.constructor())
            .addEqualityGroup(Prepender.constructor(String.class, int.class))
            .addEqualityGroup(Prepender.method("privateMethod"), Prepender.method("privateMethod"))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 31.1K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRuleTest.groovy

        MethodsRemovedInInternalSuperClassRule rule
    
        static class OldSuperInternal {
            void publicMethod() {}
    
            private void privateMethod() {}
    
            OldSuperInternal returnTypeOverridenMethod() { return null }
        }
    
        static class OldBase extends OldSuperInternal {
            void anotherPublicMethod() {}
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            assertEquals("ROLE_USER", roles[2]);
        }
    
        // Test annotation on private method
        static class PrivateMethodClass {
            @Secured({ "PRIVATE_ROLE" })
            private void privateMethod() {
            }
    
            @Secured({ "PROTECTED_ROLE" })
            protected void protectedMethod() {
            }
    
            @Secured({ "PACKAGE_ROLE" })
            void packageMethod() {
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  4. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        private void privateMethod() {}
    
        void packagePrivateMethod() {}
    
        @Keep
        protected void protectedMethod() {}
    
        @Keep
        public void publicMethod() {}
      }
    
      public void testVisibility_public() throws Exception {
        assertFalse(
            Visibility.PUBLIC.isVisible(VisibilityMethods.class.getDeclaredMethod("privateMethod")));
        assertFalse(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 47.9K bytes
    - Click Count (0)
Back to Top