Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for NORMALIZED (0.1 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            final String normalized = normalizer.normalize(badWord, "");
            settings.badword().add(normalized);
            badWords = settings.badword().get(true);
            if (apply) {
                return deleteByQuery(QueryBuilders.wildcardQuery(FieldNames.TEXT, "*" + normalized + "*"));
            }
            return new SuggestDeleteResponse(null, 0);
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                StringBuilder normalized = new StringBuilder();
                for (int i = 0; i < path.segmentCount(); i++) {
                    if (!StringUtils.isBlank(path.segment(i))) {
                        if (isAbsolute || normalized.length() > 0) {
                            normalized.append(":");
                        }
                        normalized.append(path.segment(i));
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SpringBootWebAppTestOutputNormalizer.groovy

            int buildSuccessfulLineIndex = lines.indexOf("BUILD SUCCESSFUL in 0s")
            assert buildSuccessfulLineIndex != -1
    
            List<String> normalized = lines.subList(0, buildSuccessfulLineIndex).grep { !it.isEmpty() } + "" + lines.subList(buildSuccessfulLineIndex, lines.size())
            return normalized.join("\n")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

                            maybeClosed();
                            break;
                        } else {
                            String normalized = normalizer.normalize(input);
                            if (normalized != null) {
                                dispatch.dispatch(new UserResponse(normalized));
                                break;
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            // capturing the normalized path and the snapshot of the raw contents, so we are using these to determine the identity.
            // We do this because external artifact transforms typically need to identify themselves redundantly many times during a build.
            // Once we migrate to all-scheduled transforms we should consider if we can avoid having this optimization and use only normalized inputs.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    			t.Errorf("#%d Quo: %v is not normalized", i, *q1)
    		}
    		if !isNormalized(r1) {
    			t.Errorf("#%d Rem: %v is not normalized", i, *r1)
    		}
    		if q1.Cmp(q) != 0 || r1.Cmp(r) != 0 {
    			t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q1, r1, q, r)
    		}
    
    		q2, r2 := new(Int).QuoRem(x, y, new(Int))
    		if !isNormalized(q2) {
    			t.Errorf("#%d Quo: %v is not normalized", i, *q2)
    		}
    		if !isNormalized(r2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/UrlNormalizer.java

    package org.apache.maven.api.services.model;
    
    public interface UrlNormalizer {
    
        /**
         * Normalizes the specified URL.
         *
         * @param url The URL to normalize, may be {@code null}.
         * @return The normalized URL or {@code null} if the input was {@code null}.
         */
        String normalize(String url);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelUrlNormalizer.java

     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
         */
        Model normalize(Model model, ModelBuilderRequest request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/flags.go

    	if s.SkipTProxy {
    		s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "tproxy")
    	}
    	// Allow passing a single CSV flag as well
    	normalized := make(ArrayFlags, 0)
    	for _, sk := range s.SkipWorkloadClasses {
    		normalized = append(normalized, strings.Split(sk, ",")...)
    	}
    	s.SkipWorkloadClasses = normalized
    
    	if s.Image.Hub == "" {
    		s.Image.Hub = env.HUB.ValueOrDefault("gcr.io/istio-testing")
    	}
    
    	if s.Image.Tag == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top