Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for Attributes (0.23 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

            /**
             * Sets the attributes of the XML node.
             * <p>
             * The provided map will be copied to ensure immutability.
             *
             * @param attributes the map of attribute names to values
             * @return this builder instance
             */
            public Builder attributes(Map<String, String> attributes) {
                this.attributes = attributes;
                return this;
            }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                                    key="labels.user_homePhone"/></label>
                                            <div class="col-sm-9">
                                                <la:errors property="attributes.homePhone"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

                this.attributes = attributes;
                this.creationTime = creationTime;
                this.lastAccessTime = lastAccessTime;
            }
    
            /**
             * Check if this file info matches the given attributes
             *
             * @param otherSize size to compare
             * @param otherLastModified last modified time to compare
             * @param otherAttributes attributes to compare
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

                                                <td>${f:h(attributes.title)}<la:hidden property="attributes.title"/></td>
                                            </tr>
                                            <tr>
                                                <th><la:message key="labels.user_pager"/></th>
                                                <td>${f:h(attributes.pager)}<la:hidden property="attributes.pager"/></td>
                                            </tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 17.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/PacLogonInfo.java

                    for (int i = 0; i < groupCount; i++) {
                        pacStream.align(4);
                        final SID id = pacStream.readId();
                        final int attributes = pacStream.readInt();
                        groups[i] = new PacGroup(id, attributes);
                    }
                }
    
                // Server related strings
                this.serverName = serverNameString.check(pacStream.readString());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  10. 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)
Back to top