Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 278 for replaceable (0.13 sec)

  1. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/NativeComponentReportOutputFormatter.groovy

                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).dylib$') { it[1] + OperatingSystem.current().getSharedLibraryName(it[2]) }
                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).a$') { it[1] + OperatingSystem.current().getStaticLibraryName(it[2]) }
                .replaceAll('(?m)(build/exe/.+/)(\\w+)$') { it[1] + OperatingSystem.current().getExecutableName(it[2]) }
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 25 01:52:21 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/testFixtures/groovy/org/gradle/plugin/devel/tasks/TaskValidationReportFixture.groovy

                .join(PROBLEM_SEPARATOR)
                .replaceAll("\n+", "\n")
            def reportText =
                ValidationProblemSerialization.parseMessageList(reportFile.text)
                    .collect { it.definition.severity.toString() + ": " + TypeValidationProblemRenderer.renderMinimalInformationAbout(it) }
                    .sort()
                    .join(PROBLEM_SEPARATOR)
                    .replaceAll("\r\n", "\n")
                    .replaceAll("\n+", "\n")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

         * @return path File path
         */
        protected String getFilePath(final String url) {
            return url.replaceAll("/+", "/").replace("./", "").replace("../", "").replaceAll("/$", "/index.html").replaceAll("\\?", questionStr)
                    .replaceAll(":", colonStr).replaceAll(";", semicolonStr).replaceAll("&", ampersandStr);
        }
    
        /**
         * Returns data as a file path of String.
         *
         */
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/config/schema/codegen/collections.go

    	PackageName string
    	ImportName  string
    }
    
    func toImport(p string) string {
    	return strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(p, "/", ""), ".", ""), "-", "")
    }
    
    func toIstioAwareImport(p string) string {
    	imp := strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(p, "/", ""), ".", ""), "-", "")
    	if strings.Contains(p, "istio.io") {
    		return "api" + imp
    	}
    	return imp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/TextUtil.java

         */
        public static String escapeString(Object obj) {
            return obj.toString().replaceAll("\\\\", "\\\\\\\\");
        }
    
        public static String normaliseFileSeparators(String path) {
            return path.replaceAll(Pattern.quote(File.separator), "/");
        }
    
        /**
         * Converts all line separators in the specified string to a single new line character.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/os/path_windows_test.go

    		{`\\?\C:\long/foo.txt`, `\\?\C:\long/foo.txt`},
    	} {
    		in := strings.ReplaceAll(test.in, "long", veryLong)
    		in = strings.ToLower(in)
    		in = strings.ReplaceAll(in, "c:", drive)
    
    		want := strings.ReplaceAll(test.want, "long", veryLong)
    		want = strings.ToLower(want)
    		want = strings.ReplaceAll(want, "c:", drive)
    		want = strings.ReplaceAll(want, "cwd", cwd)
    
    		got := os.AddExtendedPrefix(in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementReplacingVisitorSupport.java

        stat.setTryStatement(replace(stat.getTryStatement()));
        replaceAll(stat.getCatchStatements());
        stat.setFinallyStatement(replace(stat.getFinallyStatement()));
      }
    
      @SuppressWarnings("unchecked")
      @Override
      public void visitSwitch(SwitchStatement stat) {
        stat.getExpression().visit(this);
        replaceAll(stat.getCaseStatements());
        stat.setDefaultStatement(replace(stat.getDefaultStatement()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

            assertEquals(result, geoInfo.toQueryBuilder().toString().replaceAll("[ \n]", ""));
        }
    
        public void test_34_150_10_x() {
            MockletHttpServletRequest request = getMockRequest();
            request.setParameter("geo.location.x.point", "34,150");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

            logDeprecation();
            return replaceAll("\r\n|\r|\n", string, bySeparator);
        }
    
        private static String replaceAll(String regex, CharSequence inString, String byString) {
            return replaceAll(Pattern.compile(regex), inString, byString);
        }
    
        private static String replaceAll(Pattern pattern, CharSequence inString, String byString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. logger/sql.go

    			case reflect.String:
    				vars[idx] = escaper + strings.ReplaceAll(fmt.Sprintf("%v", v), escaper, escaper+escaper) + escaper
    			default:
    				if v != nil && reflectValue.IsValid() && ((reflectValue.Kind() == reflect.Ptr && !reflectValue.IsNil()) || reflectValue.Kind() != reflect.Ptr) {
    					vars[idx] = escaper + strings.ReplaceAll(fmt.Sprintf("%v", v), escaper, escaper+escaper) + escaper
    				} else {
    					vars[idx] = nullStr
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top