Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 220 for replacements (0.09 seconds)

  1. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_edit.jsp

                                        <label for="replacement" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.replacement"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="replacement"/>
                                            <la:text styleId="replacement" property="replacement"
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/PathMapping.java

            if (matcher.find()) {
                if (pathMapperFunc == null) {
                    final String replacement = StringUtil.isNotBlank(getReplacement()) ? getReplacement() : StringUtil.EMPTY;
                    pathMapperFunc = pathMappingHelper.createPathMatcher(matcher, replacement);
                }
                try {
                    return pathMapperFunc.apply(input, matcher);
                } catch (final Exception e) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java

        public void updateScope(Artifact artifact, String scope) {}
    
        @Override
        public void manageArtifact(Artifact artifact, Artifact replacement) {}
    
        @Override
        public void selectVersionFromRange(Artifact artifact) {}
    
        @Override
        public void restrictRange(Artifact artifact, Artifact replacement, VersionRange newRange) {}
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsPathMapping.java

            this.regex = value;
        }
    
        public String getReplacement() {
            checkSpecifiedProperty("replacement");
            return convertEmptyToNull(replacement);
        }
    
        public void setReplacement(String value) {
            registerModifiedProperty("replacement");
            this.replacement = value;
        }
    
        public Integer getSortOrder() {
            checkSpecifiedProperty("sortOrder");
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

        private void fireEvent(int event, List<ResolutionListener> listeners, ResolutionNode node, Artifact replacement) {
            fireEvent(event, listeners, node, replacement, null);
        }
    
        private void fireEvent(
                int event,
                List<ResolutionListener> listeners,
                ResolutionNode node,
                Artifact replacement,
                VersionRange newRange) {
            for (ResolutionListener listener : listeners) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                if (matchUserAgent(pathMapping)) {
                    String replacement = pathMapping.getReplacement();
                    if (replacement == null) {
                        replacement = StringUtil.EMPTY;
                    }
                    result = result.replaceAll("(\"[^\"]*)" + pathMapping.getRegex() + "([^\"]*\")", "$1" + replacement + "$2");
                }
            }
            return result;
        }
    
        /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        void omitForNearer(Artifact omitted, Artifact kept);
    
        void updateScope(Artifact artifact, String scope);
    
        @Deprecated
        void manageArtifact(Artifact artifact, Artifact replacement);
    
        // TODO Remove ResolutionListenerDM interface
    
        void omitForCycle(Artifact artifact);
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:36 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap.jsp

                                            <label for="replacement" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.replacement"/></label>
                                            <div class="col-sm-10">
                                                <la:text styleId="replacement" property="replacement"
                                                         styleClass="form-control"/>
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/escape/CharEscaper.java

        for (; index < slen; index++) {
    
          // Get a replacement for the current character.
          char[] r = escape(s.charAt(index));
    
          // If no replacement is needed, just continue.
          if (r == null) {
            continue;
          }
    
          int rlen = r.length;
          int charsSkipped = index - lastEscape;
    
          // This is the size needed to add the replacement, not the full size
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 15:45:16 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    - The in-tree azure and gcp auth plugins have been deprecated.  The https://github.com/Azure/kubelogin and gcloud commands serve as out-of-tree replacements via the kubectl/client-go credential plugin mechanism. ([#102181](https://github.com/kubernetes/kubernetes/pull/102181), [@enj](https://github.com/enj)) [SIG API Machinery and Auth]
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Click Count (0)
Back to Top