Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for groupId (0.18 sec)

  1. pom.xml

    					<groupId>org.apache.httpcomponents</groupId>
    					<artifactId>httpclient</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.apache.httpcomponents</groupId>
    					<artifactId>httpcore</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>repository-url</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacLogonInfo.java

                    this.userSid = this.extraSids[ 0 ];
                }
                this.groupSid = new SID(domainId, groupId);
    
                // Compute Group IDs with Domain ID to get Group SIDs
                this.groupSids = new SID[groups.length];
                for ( int i = 0; i < groups.length; i++ ) {
                    this.groupSids[ i ] = new SID(domainId, groups[ i ].getId());
                }
            }
            catch ( IOException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SIDCacheImpl.java

                                List<jcifs.SID> groups = map.get(mems[ mi ]);
                                if ( groups == null ) {
                                    groups = new ArrayList<>();
                                    map.put(mems[ mi ], groups);
                                }
                                if ( !groups.contains(groupSid) )
                                    groups.add(groupSid);
                            }
                        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                    <la:errors/>
                                </div>
                                <la:form action="/admin/searchlog/">
                                    <div class="form-group row">
                                        <label for="logTypeSearch" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                key="labels.searchlog_log_type"/></label>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                            updater.write("# " + line);
                        }
                        continue;
                    }
    
                    final String input = m.group(1).trim();
                    final String output = m.group(2).trim();
    
                    if (input == null || output == null) {
                        logger.warn("Failed to parse {} to {}", line, path);
                        if (updater != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                        </c:if>
                                    </h3>
                                    <div class="card-tools">
                                        <div class="btn-group">
                                            <la:link href="/admin/crawlinginfo"
                                                     styleClass="btn btn-primary btn-xs">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                final StringBuffer buf = new StringBuffer(value.length() + 100);
                while (matcher.find()) {
                    matcher.appendReplacement(buf, Matcher.quoteReplacement(highlightTagPre + matcher.group(0) + highlightTagPost));
                }
                matcher.appendTail(buf);
                return buf.toString();
            }).orElse(value);
        }
    
        protected OptionalThing<Set<String>> getQuerySet() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent);
            while (matcher.find()) {
                final String name = matcher.group(1);
                final String pluginUrl = url + (url.endsWith("/") ? name + "/" : "/" + name + "/");
                try {
                    final String pluginMetaContent = getRepositoryContent(pluginUrl + "maven-metadata.xml");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_fr.properties

    labels.user_title_details	=	Utilisateur
    labels.role_configuration	=	Rôle
    labels.role_list_name	=	Nom
    labels.role_name	=	Nom
    labels.role_title_details	=	Rôle
    labels.group_configuration	=	Groupe
    labels.group_list_name	=	Nom
    labels.group_name	=	Nom
    labels.group_title_details	=	Groupe
    labels.related_content_configuration	=	Contenu connexe
    labels.related_content_content	=	Contenu
    labels.related_content_list_term	=	Terme
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                                logger.debug("Failed to access parent groups: {}", contentMap);
                            } else {
                                logger.warn("Failed to access parent groups: {}", contentMap);
                            }
                        }
                    } catch (final IOException e) {
                        logger.warn("Failed to access groups/roles in AzureAD.", e);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
Back to top