Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for fieldName (0.04 sec)

  1. src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java

        /**
         * The name of the field.
         */
        private final String fieldName;
    
        /**
         * Creates a {@link FieldNotStaticRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param fieldName
         *            Field name
         */
        public FieldNotStaticRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0099", asArray(targetClass.getName(), fieldName));
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java

            super("ECL0070", asArray(targetClass.getName(), fieldName), cause);
            this.targetClass = targetClass;
            this.fieldName = fieldName;
        }
    
        /**
         * Returns the target class.
         *
         * @return Target class
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/ServerResponseValidator.java

                log.warn("{} exceeds maximum length: {} > {}", fieldName, str.length(), maxLength);
                throw new SmbException(fieldName + " exceeds maximum length: " + str.length());
            }
    
            // Check for null bytes
            if (str.indexOf('\0') != -1) {
                failedValidations.incrementAndGet();
                log.warn("{} contains null bytes", fieldName);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java

    public class StandardSystemPropertyTest extends TestCase {
    
      public void testGetKeyMatchesString() {
        for (StandardSystemProperty property : StandardSystemProperty.values()) {
          String fieldName = property.name();
          String expected = Ascii.toLowerCase(fieldName).replaceAll("_", ".");
          assertEquals(expected, property.key());
        }
      }
    
      public void testGetValue() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java

        // Helper methods
    
        private Object getFieldValue(Object obj, String fieldName) {
            try {
                Field field = getField(obj.getClass(), fieldName);
                field.setAccessible(true);
                return field.get(obj);
            } catch (Exception e) {
                throw new RuntimeException("Failed to get field value: " + fieldName, e);
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "http://www.qwerty.jp";
            sitePath = "www.qwerty.jp";
            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "://www.qwerty.jp";
            sitePath = "www.qwerty.jp";
            docMap.put(fieldName, urlLink);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            }
            elementsAll.put(fieldName, newArray);
            elementsText.put(fieldName, newArray);
        }
    
        protected void addFileParameter(final DiskFileItem item) {
            final String fieldName = item.getFieldName();
            final MultipartFormFile formFile = newActionMultipartFormFile(item);
            elementsAll.put(fieldName, formFile);
            elementsFile.put(fieldName, formFile);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

         *
         * @param fieldName the name of the field to get configuration for
         * @return an OptionalThing containing the Config if the field exists and has a non-blank value,
         *         otherwise an empty OptionalThing
         */
        public OptionalThing<Config> getConfig(final String fieldName) {
            final String value = params.get(fieldName);
            if (StringUtil.isNotBlank(value)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

        /** The {@link BeanDesc} of the class that owns this field */
        protected final BeanDesc beanDesc;
    
        /** The field */
        protected final Field field;
    
        /** The field name */
        protected final String fieldName;
    
        /** The type of the field */
        protected final Class<?> fieldType;
    
        /** Information about the parameterized type */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                    if (field.getType().equals(HtmlNext.class)) {
                        String fieldName = field.getName();
                        assertTrue("Field name should start with 'path_': " + fieldName, fieldName.startsWith("path_"));
    
                        HtmlNext htmlNext = (HtmlNext) field.get(null);
                        String path = htmlNext.getRoutingPath();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top