Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 499 for normalizeID (0.17 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/normalizer/Normalizer.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.normalizer;
    
    public interface Normalizer {
        String normalize(String text, String field, String... langs);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 766 bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

    > Task :app:build
    
    BUILD SUCCESSFUL in 0s
    7 actionable tasks: 7 executed
    """.trim()
    
            when:
            String normalized = outputNormalizer.normalize(input, executionMetadata)
    
            then:
            normalized == expected
        }
    
        def "successfully normalizes Scala compiler warning"() {
            given:
            String input = """
    > Task :app:compileJava NO-SOURCE
    > Task :app:compileScala
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/main/main
    """
    
            when:
            String normalized = outputNormalizer.normalize(input, executionMetadata)
    
            then:
            normalized == expected
        }
    
        def "successfully normalizes windows output"() {
            given:
            String input = """
    > Task :components
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputReceiver.java

         */
        void readAndForwardText(Normalizer normalizer);
    
        /**
         * Requests that bytes should be read from this process' stdin and forwarded to the daemon.
         * Does not block waiting for the input.
         */
        void readAndForwardStdin();
    
        interface Normalizer {
            /**
             * Validates and normalizes the given text received from the user.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:03:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/normalizer/NormalizerChain.java

     */
    package org.codelibs.fess.suggest.normalizer;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class NormalizerChain implements Normalizer {
        List<Normalizer> normalizers = new ArrayList<>();
    
        @Override
        public String normalize(final String text, final String field, final String... langs) {
            String tmp = text;
            for (final Normalizer normalizer : normalizers) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    // sense that removing any term changes the set of types satisfying the
    // constraint. It is left as a proof for the reader that, modulo sorting, there
    // is exactly one such normalized form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. 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)
  9. maven-model-builder/src/main/java/org/apache/maven/model/path/UrlNormalizer.java

     */
    package org.apache.maven.model.path;
    
    /**
     * Normalizes a URL to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    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}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top