Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 184 for replaceable (0.17 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            def actualContents = TextUtil.normaliseLineSeparators(verificationFile.text)
            // remove namespace declaration for readability of tests
            actualContents = actualContents.replaceAll("<verification-metadata .+>", "<verification-metadata>")
            assert actualContents == expected
        }
    
        void assertDryRunXmlContents(String expected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/html/template/js.go

    		// turning into
    		//     x//* error marshaling y:
    		//          second line of error message */null
    		errStr := err.Error()
    		errStr = strings.ReplaceAll(errStr, "*/", "* /")
    		errStr = strings.ReplaceAll(errStr, "</script", `\x3C/script`)
    		errStr = strings.ReplaceAll(errStr, "<!--", `\x3C!--`)
    		return fmt.Sprintf(" /* %s */null ", errStr)
    	}
    
    	// TODO: maybe post-process output to prevent it from containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    // "center" character (\n) with a left-justified character.
    // See https://graphviz.org/docs/attr-types/escString/ for more info.
    func escapeForDot(str string) string {
    	return strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(str, `\`, `\\`), `"`, `\"`), "\n", `\l`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                final String path = uri.getPath();
                if (path == null) {
                    parent = "/";
                    name = null;
                } else {
                    final String[] values = path.replaceAll("/+", "/").replaceFirst("/$", "").split("/");
                    if (values.length == 1) {
                        parent = "/";
                        name = null;
                    } else if (values.length == 2) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

                sourceToCompile.include(sourcePath);
            }
            for (String staleClass : staleClasses) {
                filesToDelete.include(staleClass.replaceAll("\\.", "/").concat(".class"));
                filesToDelete.include(staleClass.replaceAll("[.$]", "_").concat(".h"));
            }
        }
    
        private static void addClassesToProcess(JavaCompileSpec spec, RecompilationSpec recompilationSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                println "    contextualLabel == '${problem.contextualLabel.replaceAll("'", "\\\\'")}'"
            }
            if (problem.details != null) {
                println "    details == '${problem.details.replaceAll("'", "\\\\'")}'"
            }
            if (problem.solutions.size() == 1) {
                println "    solutions == [ '${problem.solutions[0].replaceAll("'", "\\\\'")}' ]"
            } else if (problem.solutions.size() > 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            } else {
                typeName = type.getTypeName();
            }
    
            return PACKAGE_AND_PARENT
                    .matcher(ARRAY_SIGNATURE.matcher(typeName).replaceAll("$1[]"))
                    .replaceAll("");
        }
    
        public static @Nullable Object getOuterClassInstance(Object innerClassInstance) {
            if (innerClassInstance == null) {
                return null;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. internal/s3select/sql/parser.go

    func (ls *LiteralString) Capture(values []string) error {
    	// Remove enclosing single quote
    	n := len(values[0])
    	r := values[0][1 : n-1]
    	// Translate doubled quotes
    	*ls = LiteralString(strings.ReplaceAll(r, "''", "'"))
    	return nil
    }
    
    // LiteralList is a type for parsed SQL lists literals
    type LiteralList []string
    
    // Capture interface used by participle
    func (ls *LiteralList) Capture(values []string) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            execute('showTransformedFiles')
    
            then:
            assertTransformExecuted()
    
            when:
            cleanWorkspace()
            file('inputs/baz.txt').text = file('inputs/baz.txt').text.replaceAll('\\n', '\r\n')
            execute('showTransformedFiles')
    
            then:
            assertTransformExecuted()
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, extensive cross-project access")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                final boolean apply) {
            final String[] readings;
            if (StringUtil.isBlank(reading)) {
                readings = word.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP);
            } else {
                readings = reading.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP);
            }
    
            final List<String> labelList = new ArrayList<>();
            if (tags != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top