Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 429 for replaceable (0.15 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/MetadataDocinfoProcessor.java

                    String content = attr.getValue().toString();
                    outputHtml.append(String.format("<meta name=\"%s\" content=\"%s\">\n", name, content));
                } else if (attributeKey.startsWith(META_PROPERTY)) {
                    String name = attributeKey.substring(META_PROPERTY.length()).replaceAll("_", ":");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java

                }
            }
    
            return encoding;
        }
    
        protected String extractString(final String content) {
            String input = content.replaceAll("[\\r\\n]", " ");
            if (ignoreCommentTag) {
                input = input.replaceAll("<!--[^>]+-->", "");
            } else {
                input = input.replace("<!--", "").replace("-->", "");
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

            //Then, we replace every linebreak with slash+linebreak. Slash is needed according to javadoc options file format
            write(value.replaceAll("\\\\", "\\\\\\\\")
                    //below does not help on windows environments. I was unable to get plain javadoc utility to work successfully with multiline options _in_ the options file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/mime/multipart/formdata_test.go

    package multipart
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"math"
    	"net/textproto"
    	"os"
    	"strings"
    	"testing"
    )
    
    func TestReadForm(t *testing.T) {
    	b := strings.NewReader(strings.ReplaceAll(message, "\n", "\r\n"))
    	r := NewReader(b, boundary)
    	f, err := r.ReadForm(25)
    	if err != nil {
    		t.Fatal("ReadForm:", err)
    	}
    	defer f.RemoveAll()
    	if g, e := f.Value["texta"][0], textaValue; g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

            file("src/test/swift/SomeOtherTest.swift").renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
            def linuxMain = file("src/test/swift/LinuxMain.swift")
            linuxMain.text = linuxMain.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "xcTest"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/build.gradle

                        args << "-DFRENCH"
                    }
                }
            }
            clang(Clang) {
                eachPlatform {
                    cCompiler.withArguments { args ->
                        Collections.replaceAll(args, "CUSTOM", "-DFRENCH")
                    }
                    linker.withArguments { args ->
                        args.remove "CUSTOM"
                    }
                    staticLibArchiver.withArguments { args ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            'keyWithNonStringValue' | NON_STRING_VALUE      | null             | false
        }
    
        def "replaceAll() uses equals for primitive wrappers and Strings"() {
            def map = getMapUnderTestToWrite(intValue: 100500, stringValue: "value")
            when:
            map.replaceAll { k, v ->
                switch (k) {
                    case "intValue": return Integer.valueOf((int) v)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            String rewritten = document.body().html();
            // Turn Gradle Jira issue numbers into issue links
            rewritten = rewritten.replaceAll("GRADLE-\\d+", "<a href=\"https://issues.gradle.org/browse/$0\">$0</a>");
            // Turn Gradle Github issue numbers into issue links
            rewritten = rewritten.replaceAll("(gradle/[a-zA-Z\\-_]+)#(\\d+)", "<a href=\"https://github.com/$1/issues/$2\">$0</a>");
            document.body().html(rewritten);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputNormalizer.groovy

    class ConfigurationCacheOutputNormalizer implements OutputNormalizer {
        @Override
        String normalize(String output, ExecutionMetadata executionMetadata) {
            return output.replaceAll(
                "configuration-cache/.*/configuration-cache-report",
                "configuration-cache/<hash>/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. src/cmd/go/internal/work/shell.go

    }
    
    // replacePrefix is like strings.ReplaceAll, but only replaces instances of old
    // that are preceded by ' ', '\t', or appear at the beginning of a line.
    func replacePrefix(s, old, new string) string {
    	n := strings.Count(s, old)
    	if n == 0 {
    		return s
    	}
    
    	s = strings.ReplaceAll(s, " "+old, " "+new)
    	s = strings.ReplaceAll(s, "\n"+old, "\n"+new)
    	s = strings.ReplaceAll(s, "\n\t"+old, "\n\t"+new)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top