Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 517 for normalize_ (0.18 sec)

  1. src/main/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizer.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.normalizer;
    
    public class FullWidthToHalfWidthAlphabetNormalizer implements Normalizer {
        @Override
        public String normalize(final String text, final String field, final String... langs) {
            final char[] chars = new char[text.length()];
            for (int i = 0; i < chars.length; i++) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/CompileClasspathNormalizer.java

     */
    
    package org.gradle.api.tasks;
    
    /**
     * Normalizes file input that represents a Java compile classpath.
     *
     * Compared to the default behavior this normalizer keeps the order of any root files,
     * but ignores the order and timestamps of files in directories and ZIP/JAR files.
     * Compared to {@link ClasspathNormalizer} this normalizer only snapshots the ABIs of class files,
     * and ignores any non-class resource.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

                        .url(normalize(scm.getUrl()))
                        .connection(normalize(scm.getConnection()))
                        .developerConnection(normalize(scm.getDeveloperConnection()))
                        .build());
            }
    
            DistributionManagement dist = model.getDistributionManagement();
            if (dist != null) {
                Site site = dist.getSite();
                if (site != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/PlatformInOutputNormalizer.groovy

     */
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.platform.internal.DefaultBuildPlatform
    
    /**
     * This normalizer converts toolchain error message so it doesn't contain platform-specific information.
     */
    class PlatformInOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

     * limitations under the License.
     */
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    /**
     * This normalizer converts native component paths and environment
     * information to look like macOS because samples output currently shows
     * the output for macOS and is not yet capable of adapting dynamically
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/normalizer/ICUNormalizer.java

     */
    package org.codelibs.fess.suggest.normalizer;
    
    import com.ibm.icu.text.Transliterator;
    
    public class ICUNormalizer implements Normalizer {
        protected Transliterator transliterator;
    
        public ICUNormalizer(final String transliteratorId) {
            transliterator = Transliterator.getInstance(transliteratorId);
        }
    
        @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/lib/lib-grid.libsonnet

            rowPanels
          );
    
        local uncollapsed = panelUtil.resolveCollapsedFlagOnRows(panelsBeforeRowsWithX + rowPanelsWithX);
    
        local normalized = panelUtil.normalizeY(uncollapsed);
    
        std.map(function(p) p + { gridPos+: { y+: startY } }, normalized),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasher.java

    import java.io.IOException;
    import java.util.Optional;
    
    /**
     * A {@link FileSystemLocationSnapshotHasher} that normalizes line endings while hashing the file.  It detects whether a file is text or binary and only
     * normalizes line endings for text files.  If a file is detected to be binary, we fall back to the existing non-normalized hash.
     *
     * See {@link LineEndingNormalizingInputStreamHasher}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputNormalizer.groovy

     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    class ConfigurationCacheOutputNormalizer implements OutputNormalizer {
        @Override
        String normalize(String output, ExecutionMetadata executionMetadata) {
            return output.replaceAll(
                "configuration-cache/.*/configuration-cache-report",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. 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)
Back to top