Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Underscores (0.04 sec)

  1. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

      static class EmptyTest {}
    
      static class EmptyTests {}
    
      static class EmptyTestSuite {}
    
      static class Foo {}
    
      @SuppressWarnings("IdentifierName") // We're testing that we ignore classes with underscores.
      static class Foo_Bar {}
    
      public static class PublicFoo {}
    
      static class FooTest {
        @SuppressWarnings("unused") // accessed reflectively
        public void testPublic() {}
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 02:48:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        public Integer crudMode;
    
        /**
         * The name of the label type.
         */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * The value of the label type (alphanumeric and underscore only).
         */
        @Required
        @Size(max = 100)
        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        /**
         * The paths to include for this label type.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top