Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 489 for _attributes (0.65 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    final SearchResult searchResult = results.next();
                    final Attribute attribute = searchResult.getAttributes().get("sAMAccountName");
                    if (logger.isDebugEnabled()) {
                        logger.debug("sAMAccountName: {}", attribute);
                    }
                    if (attribute != null && attribute.get() instanceof String sAMAccountName) {
                        return OptionalEntity.of(sAMAccountName);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

            form.confirmPassword = null;
        }
    
        /**
         * Validates LDAP user attribute types using the configured LDAP manager.
         *
         * @param attributes the map of attributes to validate
         * @param throwError callback to report any validation errors
         */
        public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) {
            ComponentUtil.getLdapManager()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponseTest.java

            }
    
            @Test
            @DisplayName("Should set and get basic info attributes")
            void testBasicInfoAttributes() {
                Trans2QueryPathInformationResponse.SmbQueryFileBasicInfo basicInfo = response.new SmbQueryFileBasicInfo();
    
                basicInfo.attributes = 0x20; // Archive attribute
                basicInfo.createTime = 1000000L;
                basicInfo.lastWriteTime = 2000000L;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            PrunedTag tag = new PrunedTag("a");
            tag.setAttr("target", "_blank");
    
            // Node with matching attribute
            MockNode nodeWithAttr = new MockNode("a");
            nodeWithAttr.addAttribute("target", "_blank");
            assertTrue(tag.matches(nodeWithAttr));
    
            // Node with different attribute value
            MockNode nodeWithDifferentAttr = new MockNode("a");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    }
                }
            }
            return null;
        }
    
        /**
         * Gets an attribute value as an integer.
         *
         * @param attributes the named node map of attributes
         * @param name the attribute name
         * @return the attribute value as Integer, null if not found or not parseable
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                final Map<String, Object> attributes = new HashMap<>();
                attributes.put("accesstoken", tr.getAccessToken());
                attributes.put("refreshtoken", tr.getRefreshToken() == null ? "null" : tr.getRefreshToken());
                attributes.put("tokentype", tr.getTokenType());
                attributes.put("expire", tr.getExpiresInSeconds());
                attributes.put("jwtheader", jwtHeader);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/SmbConstantsTest.java

                    assertEquals(0, attributes[i] & attributes[j], "Attributes should not overlap in bit patterns");
                }
            }
        }
    
        @Test
        @DisplayName("Should have resource types with power-of-2 values")
        void testResourceTypeBitPatterns() {
            // Resource types should be powers of 2 for bit flag usage
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/PrunedTag.java

         */
        public void setCss(final String css) {
            this.css = css;
        }
    
        /**
         * Sets a custom attribute name-value pair that this pruned tag should match.
         *
         * @param name the attribute name to match
         * @param value the attribute value to match
         */
        public void setAttr(final String name, final String value) {
            attrName = name;
            attrValue = value;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/MediaType.java

      /**
       * Replaces all parameters with the given attribute with parameters using the given
       * values. If there are no values, any existing parameters with the given attribute are removed.
       *
       * @throws IllegalArgumentException if either {@code attribute} or {@code values} is invalid
       * @since 24.0
       */
      public MediaType withParameters(String attribute, Iterable<String> values) {
        checkNotNull(attribute);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

                }, this::asListHtml);
            }
        }
    
        /**
         * Validates group attributes using LDAP manager.
         *
         * @param attributes the attributes to validate
         * @param throwError the error handler
         */
        public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) {
            ComponentUtil.getLdapManager()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top