Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for fieldName (0.06 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

            }
          }
    
          for (index in 0 until networkHeaders.size) {
            val fieldName = networkHeaders.name(index)
            if (!isContentSpecificHeader(fieldName) && isEndToEnd(fieldName)) {
              result.addLenient(fieldName, networkHeaders.value(index))
            }
          }
    
          return result.build()
        }
    
        /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java

        /**
         * The name of the field.
         */
        private final String fieldName;
    
        /**
         * Creates a {@link FieldNotFoundRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param fieldName
         *            Field name
         */
        public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0070", 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)
  3. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

            // Test various complex field names
            String[] fieldNames = { "simple_field", "field-with-dashes", "field.with.dots", "field_with_underscores", "fieldWithCamelCase",
                    "field with spaces", "field@with#special!chars", "フィールド名", "字段名称", "필드명" };
    
            for (String fieldName : fieldNames) {
                String encoded = BaseEncoding.base64().encode(fieldName.getBytes(StandardCharsets.UTF_8));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        public boolean hasFieldDesc(final String fieldName) {
            assertArgumentNotEmpty("fieldName", fieldName);
    
            return fieldDescCache.containsKey(fieldName);
        }
    
        @Override
        public FieldDesc getFieldDesc(final String fieldName) {
            assertArgumentNotEmpty("fieldName", fieldName);
    
            final FieldDesc fieldDesc = fieldDescCache.get(fieldName);
            if (fieldDesc == null) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  8. 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)
  9. 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)
  10. 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)
Back to top