Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 180 for NORMALIZED (0.2 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. src/path/filepath/symlink_windows.go

    // The given path should be 'Clean'-ed in advance.
    func baseIsDotDot(path string) bool {
    	i := strings.LastIndexByte(path, Separator)
    	return path[i+1:] == ".."
    }
    
    // toNorm returns the normalized path that is guaranteed to be unique.
    // It should accept the following formats:
    //   - UNC paths                              (e.g \\server\share\foo\bar)
    //   - absolute paths                         (e.g C:\foo\bar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

            then:
            1 * itemComparator.hasSamePath(1, 1) >> true
            1 * itemComparator.hasSameContent(1, 1) >> true
            0 * _
        }
    
        def "detects normalized path modified"() {
            when:
            detector.visitChangesSince([one: 1], [one: -1], "test", visitor)
            then:
            1 * itemComparator.hasSamePath(1, -1) >> false
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/crypto/elliptic/nistec.go

    	if err != nil {
    		panic("crypto/elliptic: nistec rejected normalized scalar")
    	}
    	return curve.pointToAffine(p)
    }
    
    func (curve *nistCurve[Point]) ScalarBaseMult(scalar []byte) (*big.Int, *big.Int) {
    	scalar = curve.normalizeScalar(scalar)
    	p, err := curve.newPoint().ScalarBaseMult(scalar)
    	if err != nil {
    		panic("crypto/elliptic: nistec rejected normalized scalar")
    	}
    	return curve.pointToAffine(p)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:34 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top