Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for normalizeID (0.29 sec)

  1. pkg/collateral/control.go

    	g.emit("---")
    }
    
    func (g *generator) genCommand(cmd *cobra.Command) {
    	if cmd.Hidden || cmd.Deprecated != "" {
    		return
    	}
    
    	if cmd.HasParent() {
    		g.emit("<h2 id=\"", normalizeID(cmd.CommandPath()), "\">", cmd.CommandPath(), "</h2>")
    	}
    
    	if cmd.Long != "" {
    		g.emitText(cmd.Long)
    	} else if cmd.Short != "" {
    		g.emitText(cmd.Short)
    	}
    
    	if cmd.Runnable() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            settings.badword().delete(normalizer.normalize(badWord, ""));
        }
    
        public SuggestIndexResponse addElevateWord(final ElevateWord elevateWord, final boolean apply) {
            final String normalizedWord = normalizer.normalize(elevateWord.getElevateWord(), "");
            final List<String> normalizedReadings =
                    elevateWord.getReadings().stream().map(reading -> normalizer.normalize(reading, "")).collect(Collectors.toList());
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    		}
    	}
    	return n, err
    }
    
    // quickSpan returns a boundary n such that src[0:n] == f(src[0:n]) and
    // whether any non-normalized parts were found. If atEOF is false, n will
    // not point past the last segment if this segment might be become
    // non-normalized by appending other runes.
    func (f *formInfo) quickSpan(src input, i, end int, atEOF bool) (n int, ok bool) {
    	var lastCC uint8
    	ss := streamSafe(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		}
    	}
    	return n, err
    }
    
    // quickSpan returns a boundary n such that src[0:n] == f(src[0:n]) and
    // whether any non-normalized parts were found. If atEOF is false, n will
    // not point past the last segment if this segment might be become
    // non-normalized by appending other runes.
    func (f *formInfo) quickSpan(src input, i, end int, atEOF bool) (n int, ok bool) {
    	var lastCC uint8
    	ss := streamSafe(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            }
    
            private final UrlNormalizer normalizer;
    
            UrlNormalizingPostProcessor(UrlNormalizer normalizer) {
                this.normalizer = normalizer;
            }
    
            @Override
            public Object execute(String expression, Object value) {
                if (value != null && URL_EXPRESSIONS.contains(expression)) {
                    return normalizer.normalize(value.toString());
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

     * For the resources in each classpath entry, normalization takes the relative path of the resource and possibly normalizes its contents.
     * </p>
     */
    public class ClasspathFingerprintingStrategy extends AbstractFingerprintingStrategy {
        private final NonJarFingerprintingStrategy nonZipFingerprintingStrategy;
        private final ResourceSnapshotterCacheService cacheService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.index.contents.querylog.QueryLog;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    import org.codelibs.fess.suggest.util.SuggestUtil;
    import org.opensearch.OpenSearchStatusException;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

        }
    
        public void setReadingConverter(final ReadingConverter readingConverter) {
            this.readingConverter = readingConverter;
        }
    
        public void setNormalizer(final Normalizer normalizer) {
            this.normalizer = normalizer;
        }
    
        public void setPrefixMatchWeight(final float prefixMatchWeight) {
            this.prefixMatchWeight = prefixMatchWeight;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/internal/profile/merge.go

    			// them.
    			return Merge([]*Profile{p})
    		}
    	}
    
    	return p, nil
    }
    
    // Normalize normalizes the source profile by multiplying each value in profile by the
    // ratio of the sum of the base profile's values of that sample type to the sum of the
    // source profile's value of that sample type.
    func (p *Profile) Normalize(pb *Profile) error {
    
    	if err := p.compatible(pb); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    This is where <<incremental_build.adoc#sec:configure_input_normalization,input normalization>> comes into play.
    Input normalization is used by Gradle to determine if two task inputs are _essentially_ the same.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top